From a0f1696f36f4a5d9fa4af44c6e07eb30dd544509 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Kripalani?= Date: Fri, 6 Aug 2021 12:24:13 +0100 Subject: [PATCH] remove MaxConcurrentReadyFetches=2 default value. This was there to deal with migration IO workload. This is no longer a problem with the new migration logic. The initialize-all operation/command deals with concurrency. For ongoing operation, miners can set the value they wish, but we do not make a decision for them by default, because each deployment can handle different IO loads. --- node/config/def.go | 1 - 1 file changed, 1 deletion(-) diff --git a/node/config/def.go b/node/config/def.go index b236e19f0..8b7d44999 100644 --- a/node/config/def.go +++ b/node/config/def.go @@ -191,7 +191,6 @@ func DefaultStorageMiner() *StorageMiner { DAGStore: DAGStoreConfig{ MaxConcurrentIndex: 5, - MaxConcurrentReadyFetches: 2, MaxConcurrencyStorageCalls: 100, GCInterval: Duration(1 * time.Minute), },