Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Parallel fetch for chain sync #3887

Merged
merged 11 commits into from
Sep 23, 2020
Prev Previous commit
Next Next commit
increase sync request batch size to 8
  • Loading branch information
vyzo committed Sep 17, 2020
commit 8a4b629f407a9b0ff1e39e9eeb5ba7d541c4adfc
2 changes: 1 addition & 1 deletion chain/sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ var (
log = logging.Logger("chain")

concurrentSyncRequests = 16
syncRequestBatchSize = 4
syncRequestBatchSize = 8
syncRequestRetries = 5
)

Expand Down