-
Notifications
You must be signed in to change notification settings - Fork 10
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
Avoid copying raw upload for parallel verification #704
Conversation
Instead of creating a copy of a raw upload for consumption in the parallel verification task, this will only schedule parallel verification in case the uploads are not being deleted after processing. That way, the uploads are guaranteed to still be there for verification, so no copy is needed.
Codecov ReportAll modified and coverable lines are covered by tests ✅ ✅ All tests successful. No failed tests found. @@ Coverage Diff @@
## main #704 +/- ##
==========================================
- Coverage 98.09% 98.09% -0.01%
==========================================
Files 434 434
Lines 36618 36613 -5
==========================================
- Hits 35922 35917 -5
Misses 696 696
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
✅ All tests successful. No failed tests found. @@ Coverage Diff @@
## main #704 +/- ##
==========================================
- Coverage 98.09% 98.09% -0.01%
==========================================
Files 434 434
Lines 36618 36613 -5
==========================================
- Hits 35922 35917 -5
Misses 696 696
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
✅ All tests successful. No failed tests found. @@ Coverage Diff @@
## main #704 +/- ##
==========================================
- Coverage 98.09% 98.09% -0.01%
==========================================
Files 434 434
Lines 36618 36613 -5
==========================================
- Hits 35922 35917 -5
Misses 696 696
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Changes have been made to critical files, which contain lines commonly executed in production. Learn more ✅ All tests successful. No failed tests found. Additional details and impacted files@@ Coverage Diff @@
## main #704 +/- ##
==========================================
- Coverage 98.14% 98.14% -0.01%
==========================================
Files 475 475
Lines 37973 37968 -5
==========================================
- Hits 37268 37263 -5
Misses 705 705
Flags with carried forward coverage won't be shown. Click here to find out more.
|
a9a3470
to
e94e4d0
Compare
e94e4d0
to
1d25d4e
Compare
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.
LGTM.
Just pointing out that processing might change the format of the raw report to a "readable format" (legacy) if it was uploaded as v1 format. I don't think this matters much, but it might affect performance metrics if we are collecting those.
Indeed. We might end up seeing some more Sentry logs about wrong report format, though I changed those to be compatible with both formats anyway. |
Instead of creating a copy of a raw upload for consumption in the parallel verification task, this will only schedule parallel verification in case the uploads are not being deleted after processing.
That way, the uploads are guaranteed to still be there for verification, so no copy is needed.