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

fix(store): improve pruning to avoid skipped heights #1058

Merged
merged 16 commits into from
Sep 19, 2024

Conversation

srene
Copy link
Contributor

@srene srene commented Aug 30, 2024

PR Standards

Opening a pull request should be able to meet the following requirements

In case there is some height with a key missing in the store, or in case pruning fails at a specific height for some reason, the pruning returns error.
In this PR this logic is changed and the pruning continues for other heights.

PR naming convention: https://hackmd.io/@nZpxHZ0CT7O5ngTp0TP9mg/HJP_jrm7A


Close #1039

<-- Briefly describe the content of this pull request -->

For Author:

  • Targeted PR against correct branch
  • included the correct type prefix in the PR title
  • Linked to Github issue with discussion and accepted design
  • Targets only one github issue
  • Wrote unit and integration tests
  • All CI checks have passed
  • Added relevant godoc comments

For Reviewer:

  • confirmed the correct type prefix in the PR title
  • Reviewers assigned
  • confirmed all author checklist items have been addressed

After reviewer approval:

  • In case targets main branch, PR should be squashed and merged.
  • In case PR targets a release branch, PR should be rebased.

@srene srene requested a review from a team as a code owner August 30, 2024 15:03
@srene srene self-assigned this Aug 30, 2024
@srene srene marked this pull request as draft August 30, 2024 15:04
@srene srene marked this pull request as ready for review September 2, 2024 09:17
Copy link
Contributor

This pull request has been automatically marked as stale because it has not had any recent activity. It will be closed if no further activity occurs. Thank you!

block/pruning.go Outdated
Comment on lines 12 to 14
if retainHeight <= m.State.BaseHeight {
return 0, nil
}
Copy link
Contributor

Choose a reason for hiding this comment

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

Why is this if necessary?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

removed

block/pruning.go Outdated
Comment on lines 9 to 11
if m.IsProposer() && m.NextHeightToSubmit() < retainHeight { // do not delete anything that we might submit in future
return fmt.Errorf("cannot prune blocks before they have been submitted: retain height %d: next height to submit: %d: %w",
retainHeight,
m.NextHeightToSubmit(),
gerrc.ErrInvalidArgument)
m.logger.Debug("cannot prune blocks before they have been submitted. using height last submitted height for pruning", "retain_height", retainHeight, "height_to_submit", m.NextHeightToSubmit())
retainHeight = m.NextHeightToSubmit() - 1
Copy link
Contributor

Choose a reason for hiding this comment

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

I think there is a race here because you read m.NextHeightToSubmit() twice it can change in between

Copy link
Contributor

Choose a reason for hiding this comment

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

also isnt this off by one? why isn't retain height just m.NextHeightToSubmit(?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

fixed

)

func (m *Manager) PruneBlocks(retainHeight uint64) error {
func (m *Manager) PruneBlocks(retainHeight uint64) (uint64, error) {
Copy link
Contributor

Choose a reason for hiding this comment

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

can you document return value

Copy link
Contributor Author

Choose a reason for hiding this comment

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

done

Comment on lines 66 to 69
expectedPruned := uint64(0)
if lastSubmitted >= manager.State.BaseHeight {
expectedPruned = lastSubmitted - manager.State.BaseHeight
}
Copy link
Contributor

Choose a reason for hiding this comment

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

can be 1 liner with math.max

Copy link
Contributor Author

Choose a reason for hiding this comment

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

fixed

Comment on lines 234 to +240
if err != nil {
return fmt.Errorf("load block id from store %d: %w", h, err)
c.logger.Error("load blocksync block id from store", "height", h, "error", err)
continue
Copy link
Contributor

Choose a reason for hiding this comment

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

there is no cid stored for a specific height, which may happen

why may it happen?

Copy link
Contributor

Choose a reason for hiding this comment

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

I guess it can happen a lot right, since blocks maybe came from another source 👍

Copy link
Contributor

Choose a reason for hiding this comment

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

do you even need to log error then? probably want to differentiate not found vs parse error

Copy link
Contributor Author

Choose a reason for hiding this comment

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

done

store/pruning.go Outdated
Comment on lines 10 to 11
// PruneBlocks removes block up to (but not including) a height. It returns number of blocks pruned.
func (s *DefaultStore) PruneBlocks(from, to uint64) (uint64, error) {
func (s *DefaultStore) PruneStore(from, to uint64, logger types.Logger) (uint64, error) {
Copy link
Contributor

Choose a reason for hiding this comment

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

wrong docstring

store/pruning.go Outdated
Comment on lines 94 to 97
if err := batch.Delete(getCidKey(height)); err != nil {
return err
}
return nil
Copy link
Contributor

Choose a reason for hiding this comment

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

can be 1 linea

Copy link
Contributor Author

Choose a reason for hiding this comment

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

done

store/pruning.go Outdated
Comment on lines 82 to 85
if err := batch.Delete(getSequencersKey(height)); err != nil {
return err
}
return nil
Copy link
Contributor

Choose a reason for hiding this comment

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

can be 1 line

Copy link
Contributor Author

Choose a reason for hiding this comment

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

done

store/pruning.go Outdated
Comment on lines 69 to 72
if err := batch.Delete(getResponsesKey(height)); err != nil {
return err
}
return nil
Copy link
Contributor

Choose a reason for hiding this comment

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

can be 1 line

Copy link
Contributor Author

Choose a reason for hiding this comment

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

done

store/pruning.go Outdated
Comment on lines 120 to 114
if err != nil {
continue
}
Copy link
Contributor

Choose a reason for hiding this comment

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

dont you want to log these?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

log added

@srene srene requested a review from danwt September 16, 2024 15:25
@srene srene force-pushed the srene/1039-pruning-issues-fix branch from eed5605 to c51bce1 Compare September 16, 2024 16:22
danwt
danwt previously approved these changes Sep 17, 2024
mtsitrin
mtsitrin previously approved these changes Sep 19, 2024
@mtsitrin mtsitrin merged commit 5972ffe into main Sep 19, 2024
6 checks passed
@mtsitrin mtsitrin deleted the srene/1039-pruning-issues-fix branch September 19, 2024 10:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Possible incosistencies when pruning
3 participants