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.
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
debuginfo: Improve debuginfo quality checking using metadata #1157
debuginfo: Improve debuginfo quality checking using metadata #1157
Changes from 14 commits
c2623ab
af3f6fd
c804815
1c9c909
574145d
258564d
9ff1f1f
1a3ce84
6683f96
ef3e1c2
fd27a47
c6d2384
69448eb
8f5c156
86a1d3a
a76da42
6bd20cb
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
Won't this override the other metadata, such as the
upload_started_at
timestamp, as we call it aftermetadataManager.uploading
?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.
Yes. When we have the corrupted state, we don't care about any of the metadata or the debug file itself. We just get rid of it very next time we had the chance.
Which type of data do you think would be useful in this state?
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.
That's fair, it's definitely not a big deal. I was thinking of being able to inspect the files for patterns and correlations, such as trying to see if more corrupted files happen after a certain time (imagine, a new release, or if the server is overloaded, etc).
But I guess that as you said, the window for inspecting such files is small as they'll most likely be overwritten later on.
We can always use some Prometheus counters to understand the failures and find correlations!