Skip to content

Commit

Permalink
Enable madv_normal for level0 .kv (#11265)
Browse files Browse the repository at this point in the history
  • Loading branch information
AskAlexSharov committed Jul 22, 2024
1 parent e6bedcc commit 0390616
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions erigon-lib/common/dbg/experiments.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ var (
BuildSnapshotAllowance = EnvInt("SNAPSHOT_BUILD_SEMA_SIZE", 2) // allows 2 kind of snapshots to be built simultaneously (e.g Caplin+Domains)

SnapshotMadvRnd = EnvBool("SNAPSHOT_MADV_RND", true)
KvMadvNormalNoLastLvl = EnvString("KV_MADV_NORMAL_NO_LAST_LVL", "accounts,storage,code,commitment") //TODO: move this logic - from hacks to app-level
KvMadvNormal = EnvString("KV_MADV_NORMAL", "")
KvMadvNormalNoLastLvl = EnvString("KV_MADV_NORMAL_NO_LAST_LVL", "") //TODO: move this logic - from hacks to app-level
KvMadvNormal = EnvString("KV_MADV_NORMAL", "accounts,storage,code,commitment")
OnlyCreateDB = EnvBool("ONLY_CREATE_DB", false)

CommitEachStage = EnvBool("COMMIT_EACH_STAGE", false)
Expand Down

0 comments on commit 0390616

Please sign in to comment.