Closed octomike closed 1 year ago
Patch coverage: 100.00
% and no project coverage change.
Comparison is base (
502bf49
) 81.48% compared to head (67d4703
) 81.48%.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Do you have feedback about the report comment? Let us know in this issue.
:rocket: PR was released in v0.13.0
:rocket:
Python's tarfile is using a compression level of 9 by default (back to and including python 3.5): https://docs.python.org/3/library/tarfile.html#tarfile.open
We see cases where this leads to a large waste of cpu cycles with minimal gain as opposed to compress level 5 or even 1.
Setting a global
compresslevel
variable makes it easy to override from our heuristics, keeping the default with minimal code impact.