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

Lower memory consumption while rebuilding chain #322

Merged
merged 2 commits into from
Apr 29, 2019
Merged

Conversation

leventeliu
Copy link
Contributor

In the former implementation, the chain reads every block from the storage to rebuild branches. This will cost higher and higher memory consumption with the increase of chain height.
Note that it uses the persistent immutable state, which is the state snapshot of the last irreversible block, as a base, and replays any successive block to rebuild the branch state. So actually only the blocks after the last irreversible block, aka the reversible blocks, are needed here. Hence here comes this fix.

@codecov
Copy link

codecov bot commented Apr 29, 2019

Codecov Report

Merging #322 into develop will decrease coverage by 0.23%.
The diff coverage is 66.66%.

@@             Coverage Diff             @@
##           develop     #322      +/-   ##
===========================================
- Coverage    81.07%   80.84%   -0.24%     
===========================================
  Files          174      174              
  Lines        12119    12143      +24     
===========================================
- Hits          9826     9817       -9     
- Misses        1571     1594      +23     
- Partials       722      732      +10

@codecov
Copy link

codecov bot commented Apr 29, 2019

Codecov Report

Merging #322 into develop will decrease coverage by 0.21%.
The diff coverage is 67.74%.

@@             Coverage Diff             @@
##           develop     #322      +/-   ##
===========================================
- Coverage    81.07%   80.86%   -0.22%     
===========================================
  Files          174      174              
  Lines        12119    12132      +13     
===========================================
- Hits          9826     9810      -16     
- Misses        1571     1592      +21     
- Partials       722      730       +8

Copy link
Contributor

@auxten auxten left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@xq262144 xq262144 merged commit 1adaa97 into develop Apr 29, 2019
@leventeliu leventeliu deleted the bugfix/startup branch May 15, 2019 03:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants