tkalkirill commented on code in PR #5328: URL: https://github.com/apache/ignite-3/pull/5328#discussion_r1977017556
########## 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: Why is the default value so high, please write a comment about it. -- 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