-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
Node Sync Throughput #1089
Comments
related #1133 |
|
bvrooman
pushed a commit
that referenced
this issue
Oct 2, 2023
Related issues: - Closes #1315 - Closes #1089 This PR introduces a structure for holding data collections called `Batch`. A Batch encapsulates a collection of homogeneous data returned by a P2P request, retaining only successfully received items. A Batch may contain fewer items than originally requested, in which case an error has occurred. For transactions, we now use batches to request and return transaction data from peers. This means a reduced number of database trips and more succinct (less chatty) p2p communication. --------- Co-authored-by: xgreenx <[email protected]>
crypto523
pushed a commit
to crypto523/fuel-core
that referenced
this issue
Oct 7, 2024
Related issues: - Closes FuelLabs/fuel-core#1315 - Closes FuelLabs/fuel-core#1089 This PR introduces a structure for holding data collections called `Batch`. A Batch encapsulates a collection of homogeneous data returned by a P2P request, retaining only successfully received items. A Batch may contain fewer items than originally requested, in which case an error has occurred. For transactions, we now use batches to request and return transaction data from peers. This means a reduced number of database trips and more succinct (less chatty) p2p communication. --------- Co-authored-by: xgreenx <[email protected]>
sui319
added a commit
to sui319/fuel-core
that referenced
this issue
Feb 17, 2025
Related issues: - Closes FuelLabs/fuel-core#1315 - Closes FuelLabs/fuel-core#1089 This PR introduces a structure for holding data collections called `Batch`. A Batch encapsulates a collection of homogeneous data returned by a P2P request, retaining only successfully received items. A Batch may contain fewer items than originally requested, in which case an error has occurred. For transactions, we now use batches to request and return transaction data from peers. This means a reduced number of database trips and more succinct (less chatty) p2p communication. --------- Co-authored-by: xgreenx <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@xgreenx noticed that it can take up to several hours to sync ~50k blocks. We need to investigate whether requests are sufficiently batched for downloading blocks and if the importer is being fully utilized at maximal capacity. If the importer is actually being kept busy during sync and it's just taking a long time, then we need to investigate further into gas metering discrepancies and if the min block time is too low.
We should aim to have a benchmark / loadtest to measure syncing time between nodes.
The text was updated successfully, but these errors were encountered: