-
Notifications
You must be signed in to change notification settings - Fork 11
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 metrics for intermediate Report size #829
Conversation
Emits metrics for uncompressed and `zstd` compressed intermediate Reports. Saving these to GCS is slow and might also be expensive. Saving them to a more transient storage such as redis should be a lot faster and potentially cheaper as well. However, such intermediate storage might be a lot more size constraint, so we want to figure out what we are dealing with. In addition, this also cleans up a bunch of leftover code after fully rolling out parallel processing.
Codecov ReportAll modified and coverable lines are covered by tests ✅
✅ All tests successful. No failed tests found. Additional details and impacted files@@ Coverage Diff @@
## main #829 +/- ##
=======================================
Coverage 98.03% 98.03%
=======================================
Files 442 441 -1
Lines 36112 36112
=======================================
Hits 35401 35401
Misses 711 711
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 #829 +/- ##
=======================================
Coverage 98.03% 98.03%
=======================================
Files 442 441 -1
Lines 36112 36112
=======================================
Hits 35401 35401
Misses 711 711
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 #829 +/- ##
=======================================
Coverage 98.03% 98.03%
=======================================
Files 442 441 -1
Lines 36112 36112
=======================================
Hits 35401 35401
Misses 711 711
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 #829 +/- ##
=======================================
Coverage 98.03% 98.03%
=======================================
Files 442 441 -1
Lines 36112 36112
=======================================
Hits 35401 35401
Misses 711 711
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Emits metrics for uncompressed and
zstd
compressed intermediate Reports.Saving these to GCS is slow and might also be expensive. Saving them to a more transient storage such as redis should be a lot faster and potentially cheaper as well. However, such intermediate storage might be a lot more size constraint, so we want to figure out what we are dealing with.
In addition, this also cleans up a bunch of leftover code after fully rolling out parallel processing.