Skip to content

Commit 9c2dc55

Browse files
Merge pull request #6149 from nimrod-becker/backport_to_5_%
Backport to 5.5
2 parents 325c9fc + b66a12f commit 9c2dc55

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ config.CLOUD_MAX_ALLOWED_IO_TEST_ERRORS = 3;
137137
// AGENT BLOCKS VERIFIER //
138138
///////////////////////////
139139

140-
config.AGENT_BLOCKS_VERIFIER_ENABLED = true;
140+
config.AGENT_BLOCKS_VERIFIER_ENABLED = false;
141141
// TODO: Should check what is the optiomal amount of batch
142142
config.AGENT_BLOCKS_VERIFIER_BATCH_SIZE = 1000;
143143
config.AGENT_BLOCKS_VERIFIER_BATCH_DELAY = 50;

src/agent/block_store_services/block_store_base.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class BlockStoreBase {
4646
this.block_modify_lock = new KeysLock();
4747
this.block_cache = new LRUCache({
4848
name: 'BlockStoreCache',
49-
max_usage: 200 * 1024 * 1024, // 200 MB
49+
max_usage: 100 * 1024 * 1024, // 100 MB
5050
item_usage: block => block.data.length,
5151
make_key: block_md => block_md.id,
5252
load: async block_md => this._read_block_and_verify(block_md),

0 commit comments

Comments
 (0)