pageserver: investigate whether it's a good idea to replace BlockBuf::blocks
with one big buffer.
#10092
Labels
c/storage/pageserver
Component: storage: pageserver
m/good_first_issue
Moment: when doing your first Neon contributions
BlockBuf::blocks
currently holds a list buffers. In the write path, we are writing them one block at a time. Since these blocks resides next to each other on disk, we could do a big disk write instead.neon/pageserver/src/tenant/block_io.rs
Lines 254 to 259 in 0066f23
DoD
Investigate whether it is a good idea to
BlockBuf::blocks
with one big buffer, ORBlockBuf::blocks
to the same buffer and do one big disk write.Then implement if possible.
The text was updated successfully, but these errors were encountered: