Phillippko commented on code in PR #3933:
URL: https://github.com/apache/ignite-3/pull/3933#discussion_r1642751217
##########
modules/storage-page-memory/src/main/java/org/apache/ignite/internal/storage/pagememory/PersistentPageMemoryTableStorage.java:
##########
@@ -164,7 +164,7 @@ private FreeListImpl createFreeList(
boolean initNew = false;
if (meta.freeListRootPageId() == 0) {
- long rootPageId = pageMemory.allocatePage(getTableId(),
partId, FLAG_AUX);
+ long rootPageId = pageMemory.allocatePageNoReuse(getTableId(),
partId, FLAG_AUX);
Review Comment:
So starting persistent partiton without previous meta we actually don't
reuse any pages. Free list is just created, it is empty and we have to allocate
new pages for all structures. Don't know what to do with that
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]