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

core/state/pruner: move the compaction out of the pruning procedure #22579

Merged
merged 1 commit into from
Mar 29, 2021

Commits on Mar 26, 2021

  1. core/state/pruner: move the compaction out of the pruning procedure

    The main idea behind it is: the range compaction is very expensive
    which can take a few hours to finish. During this long procedure,
    a lot of exceptions can occur, e.g.
    - Geth is killed manually
    - Geth is killed because of machine crash
    - etc
    
    In order to minimize the effect of the exceptions, the compaction
    is moved out of the pruning. So that even the compaction is not
    finished, the pruning is regarded as done.
    rjl493456442 committed Mar 26, 2021
    Configuration menu
    Copy the full SHA
    3866d28 View commit details
    Browse the repository at this point in the history