Use header size constant for faster start-ups#233
Merged
fassadlr merged 2 commits intostratisproject:masterfrom Nov 30, 2020
Merged
Use header size constant for faster start-ups#233fassadlr merged 2 commits intostratisproject:masterfrom
fassadlr merged 2 commits intostratisproject:masterfrom
Conversation
Contributor
|
@quantumagi I noticed that the As we working with |
Contributor
Author
It's a Notice that there is a separate member variable for proven headers. |
Contributor
|
Remove the logging etc as well :) |
fassadlr
approved these changes
Nov 30, 2020
fassadlr
pushed a commit
that referenced
this pull request
Nov 30, 2020
* Use header size constant * Remove ChainedBlocksDataBytes entirely
sondreb
added a commit
to block-core/blockcore
that referenced
this pull request
May 18, 2021
- "ChainedBlocksDataBytes" was not really used, but required loading of all headers on startup. Removed to improve performance from 52 seconds to 42 seconds. - This was discovered independent of stratisproject/StratisFullNode#233, but linking to that issue to help Stratis and Blockcore-based blockchains to take the improvement. - #337
sondreb
added a commit
to block-core/blockcore
that referenced
this pull request
May 26, 2021
- "ChainedBlocksDataBytes" was not really used, but required loading of all headers on startup. Removed to improve performance from 52 seconds to 42 seconds. - This was discovered independent of stratisproject/StratisFullNode#233, but linking to that issue to help Stratis and Blockcore-based blockchains to take the improvement. - #337
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


The code below will at times take extremely long to run:
This is due to
this.ChainedBlocksDataBytes += current.Header.HeaderSize;This line of code actually reads the header from the chain store database just to access the underlying constant
BlockHeader.Size: