Tune down ParallelCheckLimit

Tune down ParallelCheckLimit config default
This commit is contained in:
Phi 2023-02-28 11:46:11 +01:00
parent dd0c4a0a34
commit 4c7d9ad30e
2 changed files with 2 additions and 2 deletions

View File

@ -352,7 +352,7 @@
#
# type: int
# env var: LOTUS_PROVING_PARALLELCHECKLIMIT
#ParallelCheckLimit = 128
#ParallelCheckLimit = 32
# Maximum amount of time a proving pre-check can take for a sector. If the check times out the sector will be skipped
#

View File

@ -154,7 +154,7 @@ func DefaultStorageMiner() *StorageMiner {
},
Proving: ProvingConfig{
ParallelCheckLimit: 128,
ParallelCheckLimit: 32,
PartitionCheckTimeout: Duration(20 * time.Minute),
SingleCheckTimeout: Duration(10 * time.Minute),
},