From 14c02bcef89624788c5d0eea460c752b0186276a Mon Sep 17 00:00:00 2001 From: Victor Shyba Date: Sat, 24 May 2025 02:14:28 -0300 Subject: [PATCH] mdbx: fix settings --- node/store/mdbx.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node/store/mdbx.go b/node/store/mdbx.go index ab63ff2..721c1aa 100644 --- a/node/store/mdbx.go +++ b/node/store/mdbx.go @@ -96,8 +96,8 @@ const MB = 1 << 20 // erigon defaults, should be tuned to quil const READERS_LIMIT = 32_000 const RP_AUGMENT_LIMIT = 1_000_000 -const MAP_SIZE = 16 * GB -const GROWTH_STEP = 2 * MB +const MAP_SIZE = 2000 * GB +const GROWTH_STEP = 2 * GB const PAGE_SIZE = 4096 const DEFAULT_TABLE = "default" // we use only one for now