-
Notifications
You must be signed in to change notification settings - Fork 1
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
Size limitations #113
Comments
See #70. The compression format itself can't support compressed files whose compressed size is larger than 4 gig, (it stores offsets into the compressed file as 32 bit unsigned integers), but much worse, macos will kernel panic reading compressed files whose uncompressed size is a little over 4 gig. So it is not safe to remove this limitation. |
Thanks for fast reply. |
MacOS will automatically de-compress any modified files. After modifications, the files will no longer be compressed. There's no risk of panics, but compressing files which are modified is usually not what you want, as they'll only be compressed until they are next modified. |
Hello,
I'm facing
Is there any particular reason for size limit ?
I badly need to compress big files, including 1.5TB single file
I can of course patch sources, but want to be sure it's safe from APFS perspective.
The text was updated successfully, but these errors were encountered: