-
Notifications
You must be signed in to change notification settings - Fork 601
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
Create db-dump.zip
file too
#8748
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #8748 +/- ##
==========================================
+ Coverage 88.64% 88.66% +0.02%
==========================================
Files 276 276
Lines 27557 27643 +86
==========================================
+ Hits 24427 24511 +84
- Misses 3130 3132 +2 ☔ View full report in Codecov by Sentry. |
Actually, I think this could be achieved using e.g. |
@eth3lbert yeah, that invocation might work, but the whole file still has to be decompressed by gzip before you can access the individual files inside the tarball. with a zip file you don't have to decompress the whole archive if you want to access just one file. |
This comment was marked as spam.
This comment was marked as spam.
Zip files use compression per file, which allows users to only extract the data that they need, instead of needlessly extracting the full tarball to read the small table that they are interested in.
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.
🤐
Zip files use compression per file, which allows users to only extract the data that they need, instead of needlessly extracting the full tarball to read the small table that they are interested in.
Resolves #2078