-
Notifications
You must be signed in to change notification settings - Fork 35
eventstore: improve GC robustness and observability #3950
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
base: master
Are you sure you want to change the base?
Conversation
Summary of ChangesHello @lidezhu, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request addresses a potential 'stuck problem' within the event store's garbage collection mechanism by improving concurrency and data durability. It refactors the GC manager to allow deletion and compaction tasks to run independently, preventing mutual blocking. Additionally, it enables Write-Ahead Logging for the underlying Pebble databases, enhancing data consistency and recovery capabilities. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This pull request addresses a potential "stuck" issue within the eventstore's garbage collection manager by separating the deletion and compaction processes into distinct goroutines. This change prevents a slow operation in one task from impeding the other. The pull request also enhances system durability by enabling the Write-Ahead Log (WAL) for the underlying Pebble data stores. Additionally, it introduces more comprehensive logging for both deletion and compaction tasks, which will improve system observability. The proposed changes are sound and contribute to a more robust and transparent system. I have one suggestion to refactor the new logging logic to enhance its readability and maintainability.
|
/gemini summary |
Summary of ChangesThis pull request aims to resolve a potential 'stuck problem' within the event store's garbage collection mechanism by significantly enhancing its robustness and efficiency. It achieves this by introducing concurrent execution for deletion and compaction tasks, optimizing delete operations through intelligent range coalescing, and bolstering data durability by enabling Write-Ahead Logging for the underlying Pebble databases. These changes collectively improve the stability and performance of the event store's garbage collection. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Activity
|
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: flowbehappy The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
[LGTM Timeline notifier]Timeline:
|
What problem does this PR solve?
Issue Number: close #3951
What is changed and how it works?
gcManager.runfunction has been significantly refactored to execute delete and compaction tasks in separate goroutines. This change allows these operations to run concurrently, preventing one from blocking the other and addressing a potential 'stuck problem' in the garbage collection process.mergeDeleteRanges, has been introduced to coalesce contiguous or overlapping delete ranges before processing. This optimization reduces the number of individual delete operations, improving efficiency, especially when the delete goroutine might be blocked for extended periods.EventStoreDeleteRangeFetchedCount, has been introduced to track the number of delete range items fetched before coalescing, offering a clearer view of GC activity.Check List
Tests
Questions
Will it cause performance regression or break compatibility?
Do you need to update user documentation, design documentation or monitoring documentation?
Release note