-
Notifications
You must be signed in to change notification settings - Fork 80
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
feat(handler): add multi-part gzip handler. #689
Conversation
75fb5a9
to
23d172f
Compare
a29cedd
to
59e1c99
Compare
59e1c99
to
5ece896
Compare
5ece896
to
9725c7c
Compare
Copying the exchange I had with @e3krisztian outside Github:
|
9725c7c
to
a9e7598
Compare
It's possible to create multi-part gzip with 'split', which will create multiple gzip compressed files with a 'aa', 'ab', 'ac', .. suffix. We match on '.gz.aa' in a directory, get all the files with same name but different suffix, order them and feed them to 7z. This is very close to what we were already doing with multi-part 7zip archives. Co-authored-by: Krisztián Fekete <[email protected]>
a9e7598
to
47b2fac
Compare
It's possible to create multi-part gzip with
split
, which will create multiple gzip compressed files with a 'aa', 'ab', 'ac', .. suffix.We match on
.gz.aa
in a directory, get all the files with same name but different suffix, order them and feed them to 7z.This is very close to what we were already doing with multi-part 7zip archives.