-
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
Add metric for uploads per scheduled tasks #718
Conversation
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 #718 +/- ##
==========================================
+ Coverage 98.12% 98.14% +0.01%
==========================================
Files 475 475
Lines 38089 38091 +2
==========================================
+ Hits 37374 37383 +9
+ Misses 715 708 -7
Flags with carried forward coverage won't be shown. Click here to find out more.
This change has been scanned for critical changes. Learn more |
Codecov ReportAll modified and coverable lines are covered by tests ✅ ✅ All tests successful. No failed tests found. @@ Coverage Diff @@
## main #718 +/- ##
==========================================
+ Coverage 98.07% 98.09% +0.01%
==========================================
Files 434 434
Lines 36734 36736 +2
==========================================
+ Hits 36027 36036 +9
+ Misses 707 700 -7
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 #718 +/- ##
==========================================
+ Coverage 98.07% 98.09% +0.01%
==========================================
Files 434 434
Lines 36734 36736 +2
==========================================
+ Hits 36027 36036 +9
+ Misses 707 700 -7
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 #718 +/- ##
==========================================
+ Coverage 98.07% 98.09% +0.01%
==========================================
Files 434 434
Lines 36734 36736 +2
==========================================
+ Hits 36027 36036 +9
+ Misses 707 700 -7
Flags with carried forward coverage won't be shown. Click here to find out more.
|
fd7b256
to
a740c40
Compare
The `Upload` task schedules multiple `UploadProcessor` tasks and another `UploadFinisher`. This batching is rather accidental because of locking rather than intentional. It might be good to know how uploads are being grouped into a single processor/finisher chain.
a740c40
to
d5ee646
Compare
Suspect IssuesThis pull request was deployed and Sentry observed the following issues:
Did you find this useful? React with a 👍 or 👎 |
The
Upload
task schedules multipleUploadProcessor
tasks and anotherUploadFinisher
.This batching is rather accidental because of locking rather than intentional. It might be good to know how uploads are being grouped into a single processor/finisher chain.
Also includes a bunch of cleanups and driveby typing fixes.