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

Problem: memiavl background snapshot rewriting panic when shutdown #1292

Merged
merged 5 commits into from
Jan 22, 2024

Conversation

yihuang
Copy link
Collaborator

@yihuang yihuang commented Jan 12, 2024

Solution:

  • gracefully cancel the task when shutdown

👮🏻👮🏻👮🏻 !!!! REFERENCE THE PROBLEM YOUR ARE SOLVING IN THE PR TITLE AND DESCRIBE YOUR SOLUTION HERE !!!! DO NOT FORGET !!!! 👮🏻👮🏻👮🏻

PR Checklist:

  • Have you read the CONTRIBUTING.md?
  • Does your PR follow the C4 patch requirements?
  • Have you rebased your work on top of the latest master?
  • Have you checked your code compiles? (make)
  • Have you included tests for any non-trivial functionality?
  • Have you checked your code passes the unit tests? (make test)
  • Have you checked your code formatting is correct? (go fmt)
  • Have you checked your basic code style is fine? (golangci-lint run)
  • If you added any dependencies, have you checked they do not contain any known vulnerabilities? (go list -json -m all | nancy sleuth)
  • If your changes affect the client infrastructure, have you run the integration test?
  • If your changes affect public APIs, does your PR follow the C4 evolution of public contracts?
  • If your code changes public APIs, have you incremented the crate version numbers and documented your changes in the CHANGELOG.md?
  • If you are contributing for the first time, please read the agreement in CONTRIBUTING.md now and add a comment to this pull request stating that your PR is in accordance with the Developer's Certificate of Origin.

Thank you for your code, it's appreciated! :)

Summary by CodeRabbit

  • New Features
    • Snapshot rewriting can now be gracefully canceled during shutdown.
  • Improvements
    • Import operations now support cancellation via context.
  • Documentation
    • Updated CHANGELOG to reflect new cancellation feature for snapshot rewriting.

Solution:
- gracefully cancel the task when shutdown
@yihuang yihuang requested a review from a team as a code owner January 12, 2024 06:18
@yihuang yihuang requested review from mmsqe and devashishdxt and removed request for a team January 12, 2024 06:18
Copy link
Contributor

coderabbitai bot commented Jan 12, 2024

Warning

Rate Limit Exceeded

@yihuang has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 5 minutes and 36 seconds before requesting another review.

How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.
Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.
Please see our FAQ for further information.

Commits Files that changed from the base of the PR and between f6ec99e and fe2dadf.

Walkthrough

The codebase has been updated to integrate context-based cancellation into various operations, primarily focusing on snapshot rewriting and import processes. The context.Context parameter allows for better control of goroutines, enabling graceful shutdowns and more responsive cancellation of long-running tasks. This change streamlines the code for cooperative cancellation, which is particularly useful in database operations that may need to be interrupted.

Changes

Files Summary of Changes
memiavl/db.go, memiavl/import.go, memiavl/snapshot.go Introduced context.Context to various methods for cancellation support and added a snapshotRewriteCancel field in the DB struct.
memiavl/multitree.go Modified WriteSnapshot method to accept a context.Context parameter for cancellation support.
CHANGELOG.md Documented the addition of context-based cancellation for background snapshot rewriting.

Poem

In the meadow of code where the data trees grow,
A rabbit hopped in, with a context in tow.
"Cancel your tasks, without any fuss,"
It whispered to leaves, then vanished in code-rush. 🐇💨

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share

Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit-tests for this file.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit tests for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository from git and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit tests.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger a review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • The JSON schema for the configuration file is available here.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/coderabbit-overrides.v2.json

CodeRabbit Discord Community

Join our Discord Community to get help, request features, and share feedback.

CHANGELOG.md Outdated Show resolved Hide resolved
Signed-off-by: yihuang <[email protected]>
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Review Status

Actionable comments generated: 3

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between ea65bfa and d4a8c9a.
Files selected for processing (5)
  • CHANGELOG.md (1 hunks)
  • memiavl/db.go (8 hunks)
  • memiavl/import.go (2 hunks)
  • memiavl/multitree.go (2 hunks)
  • memiavl/snapshot.go (8 hunks)
Additional comments: 10
memiavl/multitree.go (1)
  • 360-360: The WriteSnapshot method now correctly takes a context.Context parameter, which is used to control the flow of the snapshot writing process. This is a good practice for managing long-running operations and allows for cancellation and timeout control.
memiavl/snapshot.go (4)
  • 355-356: The WriteSnapshot function has been correctly updated to accept a context.Context parameter, which is used to manage the cancellation and timeouts of the snapshot writing process.

  • 369-369: The writeSnapshot function has been updated to take a context.Context parameter, which is a good practice for managing cancellation and timeouts during the snapshot writing process.

  • 468-470: The snapshotWriter struct has been correctly augmented with a ctx field to store the context object, which is used for cancellation checks in the writeLeaf method.

  • 514-520: The writeLeaf method includes a cancellation check based on the context every CancelCheckInterval leaves written, which is a good practice for long-running operations to respond to cancellation requests.

memiavl/db.go (5)
  • 54-56: The addition of the snapshotRewriteCancel field to the DB struct is a good implementation for handling graceful shutdowns. This field will be used to cancel the snapshot rewrite operation when the database is closed.

  • 421-421: The snapshotRewriteCancel is set to nil after the snapshot rewrite goroutine completes. This is a good practice as it helps avoid potential memory leaks by allowing the garbage collector to reclaim the context resources.

  • 633-639: > Note: This review was outside the patches, so it was mapped to the patch with the greatest overlap. Original lines [636-647]

The RewriteSnapshot method now accepts a context.Context parameter, which is used to support cancellation of the snapshot rewrite operation. This change is crucial for the feature implemented in this PR and aligns with the objective of preventing panics during shutdown.

  • 715-719: The creation of a new context with a cancellation function in the rewriteSnapshotBackground method is a key part of the solution to the panic issue. This context is used to control the lifecycle of the snapshot rewrite goroutine.

  • 765-777: > Note: This review was outside the patches, so it was mapped to the patch with the greatest overlap. Original lines [757-773]

The Close method has been updated to cancel the snapshot rewrite goroutine if it's running. This is done by calling the snapshotRewriteCancel function and waiting for the goroutine to finish. This change is essential for ensuring a graceful shutdown and preventing the panic issue that this PR aims to solve.

CHANGELOG.md Outdated Show resolved Hide resolved
memiavl/import.go Show resolved Hide resolved
memiavl/multitree.go Outdated Show resolved Hide resolved
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Review Status

Actionable comments generated: 0

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between d4a8c9a and f6ec99e.
Files selected for processing (1)
  • CHANGELOG.md (1 hunks)
Files skipped from review as they are similar to previous changes (1)
  • CHANGELOG.md

@@ -133,7 +134,7 @@
return errors.New("version overflows uint32")
}

return writeSnapshot(dir, uint32(version), func(w *snapshotWriter) (uint32, error) {
return writeSnapshot(context.Background(), dir, uint32(version), func(w *snapshotWriter) (uint32, error) {

Check failure

Code scanning / gosec

Potential integer overflow by integer type conversion Error

Potential integer overflow by integer type conversion
memiavl/db.go Outdated Show resolved Hide resolved
Signed-off-by: yihuang <[email protected]>
Copy link
Collaborator

@mmsqe mmsqe left a comment

Choose a reason for hiding this comment

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

LGTM, is it the fix for #1180 before?

@yihuang
Copy link
Collaborator Author

yihuang commented Jan 12, 2024

LGTM, is it the fix for #1180 before?

maybe

Copy link

codecov bot commented Jan 12, 2024

Codecov Report

Attention: 7 lines in your changes are missing coverage. Please review.

Comparison is base (ea65bfa) 15.98% compared to head (fe2dadf) 35.88%.

Additional details and impacted files

Impacted file tree graph

@@             Coverage Diff             @@
##             main    #1292       +/-   ##
===========================================
+ Coverage   15.98%   35.88%   +19.90%     
===========================================
  Files          80      116       +36     
  Lines        6201    10698     +4497     
===========================================
+ Hits          991     3839     +2848     
- Misses       5130     6482     +1352     
- Partials       80      377      +297     
Files Coverage Δ
memiavl/import.go 70.55% <100.00%> (ø)
memiavl/multitree.go 71.61% <100.00%> (ø)
memiavl/snapshot.go 56.25% <81.81%> (ø)
memiavl/db.go 60.70% <78.26%> (ø)

... and 50 files with indirect coverage changes

@yzang2019
Copy link

Thanks for fixing this!

@mmsqe
Copy link
Collaborator

mmsqe commented Jan 15, 2024

LGTM, is it the fix for #1180 before?

maybe

Yes, can't reproduce with smaller IdleTimeout now

@yihuang yihuang added this pull request to the merge queue Jan 15, 2024
@github-merge-queue github-merge-queue bot removed this pull request from the merge queue due to failed status checks Jan 15, 2024
@mmsqe mmsqe added this pull request to the merge queue Jan 15, 2024
@github-merge-queue github-merge-queue bot removed this pull request from the merge queue due to failed status checks Jan 15, 2024
@yzang2019
Copy link

Confirmed this fixed the panic during shutdown

@yihuang yihuang added this pull request to the merge queue Jan 22, 2024
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.

3 participants