File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/agent/block_store_services Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff 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
142142config . AGENT_BLOCKS_VERIFIER_BATCH_SIZE = 1000 ;
143143config . AGENT_BLOCKS_VERIFIER_BATCH_DELAY = 50 ;
Original file line number Diff line number Diff 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 ) ,
You can’t perform that action at this time.
0 commit comments