ibessonov commented on code in PR #5328: URL: https://github.com/apache/ignite-3/pull/5328#discussion_r1977037046
########## modules/storage-page-memory/src/main/java/org/apache/ignite/internal/storage/pagememory/VolatilePageMemoryDataRegion.java: ########## @@ -72,7 +76,12 @@ public class VolatilePageMemoryDataRegion implements DataRegion<VolatilePageMemo * Starts the in-memory data region. */ public void start() { - VolatilePageMemory pageMemory = new VolatilePageMemory(cfg, ioRegistry, pageSize); + int lockConcLvl = IgniteSystemProperties.getInteger( + IGNITE_OFFHEAP_LOCK_CONCURRENCY_LEVEL, + Integer.highestOneBit(Runtime.getRuntime().availableProcessors() * 4) Review Comment: I just moved the code from a different place. I don't know why it's so high, and I don't think that explaining it here would be appropriate -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org