ref(reprocessing): optionally write unprocessed payload to nodestore instead of redis - #125400
Draft
matt-codecov wants to merge 1 commit into
Draft
matt-codecov wants to merge 1 commit into
matt-codecov wants to merge 1 commit into
Conversation
Contributor
Author
|
@sentry review |
|
|
||
| event_processing_store.store(dict(data), unprocessed=True) | ||
| if in_random_rollout("store.reprocessing-nodestore-backup.rollout"): | ||
| nodestore.backend.set(unprocessed_node_id(data["project"], data["event_id"]), dict(data)) |
Contributor
There was a problem hiding this comment.
Bug: Unprocessed event payloads backed up to nodestore with a :u suffix are not cleaned up by the retention process, leading to a storage leak.
Severity: MEDIUM
Suggested Fix
Modify the event deletion process to also remove the associated :u node from nodestore. This can be done by updating delete_events_from_nodestore to explicitly delete the Event.generate_node_id(project_id, event_id) + ":u" key. Alternatively, a TTL could be set on the :u node upon its creation to ensure it expires automatically.
Prompt for AI Agent
Review the code at the location below. A potential bug has been identified by an AI
agent. Verify if this is a real issue. If it is, propose a fix; if not, explain why it's
not valid.
Location: src/sentry/reprocessing2.py#L182
Potential issue: When an unprocessed event payload is backed up to nodestore, it is
stored under a new key with a `:u` suffix. This new node is created without a TTL and is
not cleaned up by the regular event retention mechanism. The retention task,
`delete_events_from_nodestore`, only deletes the main event node, not the separate `:u`
variant. This causes the `:u` node to be orphaned and accumulate indefinitely, leading
to a storage leak. The `delete_unprocessed_event` function does not address this, as it
is only called for discarded events, not for successfully saved events that are later
deleted by retention.
Did we get this right? 👍 / 👎 to inform future reviews.
This branch has not been deployed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Ref FS-533
Legal Boilerplate
Look, I get it. The entity doing business as "Sentry" was incorporated in the State of Delaware in 2015 as Functional Software, Inc. and is gonna need some rights from me in order to utilize my contributions in this here PR. So here's the deal: I retain all rights, title and interest in and to my contributions, and by keeping this boilerplate intact I confirm that Sentry can use, modify, copy, and redistribute my contributions, under Sentry's choice of terms.