oceanbase/miniob

Use 'bitmap node' to support more pages

Open

#341 opened on Feb 13, 2024

View on GitHub
 (1 comment) (0 reactions) (0 assignees)C++ (1,622 forks)auto 404
enhancementhelp wanted

Repository metrics

Stars
 (4,387 stars)
PR merge metrics
 (PR metrics pending)

Description

Enhancement Currently, the max page cnt of a file is about 65,000. It is limited by ths size of BPFileHeader::bitmap. Shall we use the bitmap node:

struct BitmapNode { PageNum prev; PageNum next; char bitmap[0]; }

to support Infinite number of pages ?

Contributor guide