-
Notifications
You must be signed in to change notification settings - Fork 36
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
InvalidArchiveError raised for valid tarballs #71
Comments
Interesting, it looks like downgrading to v1.6.0 works as well. So some change was introduced starting in 1.6.1 that broke something. |
Bump. Any updates on this? |
@desilinguist Could you attach a zip of gug-data-1.0-0.tar.bz2 to this issue? |
Hi @nehaljwani, that file is about 3G in size. Do you really want me to attach it here? |
If you could provide any tarball to reproduce the issue, it would help! |
Hi @nehaljwani, I uploaded the tarball to my Google Drive. Here's the link. Please let me know once you have downloaded it so I can remove it from my drive. Thanks! |
Hi @nehaljwani, please confirm that you are able to access the file so I can remove it. |
Any progress on this issue? @nehaljwani |
We're also currently experiencing this with nightlies from You can access them for testing with:
|
There was a bug that was introduced in conda-package-handling >= 1.6.1 that makes archives above a certain size fail out when attempting to extract see: conda/conda-package-handling#71 Signed-off-by: Eli Uriegas <[email protected]> [ghstack-poisoned]
Summary: Pull Request resolved: #49434 There was a bug that was introduced in conda-package-handling >= 1.6.1 that makes archives above a certain size fail out when attempting to extract see: conda/conda-package-handling#71 coincides with pytorch/builder#611 Signed-off-by: Eli Uriegas <[email protected]> Test Plan: Imported from OSS Reviewed By: xuzhao9, janeyx99, samestep Differential Revision: D25573390 Pulled By: seemethere fbshipit-source-id: 82173804f1b30da6e4b401c4949e2ee52065e149
There's an issue with the CUDA 11.0 package for conda with conda-package-handling that relates to conda/conda-package-handling#71 Signed-off-by: Eli Uriegas <[email protected]>
Package installation for pytorch binaries was failing out due to conda/conda-package-handling#71 Default to cpuonly since that won't fail out. Signed-off-by: Eli Uriegas <[email protected]>
Package installation for pytorch binaries was failing out due to conda/conda-package-handling#71 Default to cpuonly since that won't fail out. Signed-off-by: Eli Uriegas <[email protected]>
There's an issue with the CUDA 11.0 package for conda with conda-package-handling that relates to conda/conda-package-handling#71 This should fix issues with the conda smoke testing we encountered previously. Signed-off-by: Eli Uriegas <[email protected]>
Summary: Pull Request resolved: pytorch#49434 There was a bug that was introduced in conda-package-handling >= 1.6.1 that makes archives above a certain size fail out when attempting to extract see: conda/conda-package-handling#71 coincides with pytorch/builder#611 Signed-off-by: Eli Uriegas <[email protected]> Test Plan: Imported from OSS Reviewed By: xuzhao9, janeyx99, samestep Differential Revision: D25573390 Pulled By: seemethere fbshipit-source-id: 82173804f1b30da6e4b401c4949e2ee52065e149
The stacktrace seems to point to something in the c-extension module for archive handling. Digging around a bit, I see that the 1.7.0 tag mentions "Updating libarchive-static to 3.4.2", but I could not find mention of this in the changelog, which seems to skip 1.7.0 entirely. Maybe that was a typo, since the conda recipe seems to link to libarchive-static 3.3.0. Another change to the archive handling in the past 12 months was the fix to #61, which added checks to |
When you downgrade conda-package-handling to 1.6.0, does it also downgrade any other packages? |
@mattip I don’t think so but I use the |
Is this issue being investigated at all? |
@desilinguist yes, see the PR from @leej3 linked right above this issue. |
Oh, that's great! Sorry I totally missed that. Looking forward to the new release with the fixes. I am glad that the tarball I provided seems to have been useful in fixing the issue. |
* Parallelize nvcc for windows conda 11.3 * This also unpins conda-package-handling, as the 1.6 version was no longer compatible with python 3.9, and the updated versions resolve previous issues we had with 1.6.1. (see conda/conda-package-handling#71 for more context).
Hi there, thank you for your contribution! This issue has been automatically locked because it has not had recent activity after being closed. Please open a new issue if needed. Thanks! |
For some reason, some of my large conda packages are no longer installed properly and fail with
InvalidArchiveError
. I have narrowed down the problem toconda-package-handling
. Here's what I see:This happens on a RHEL 7.9 machine with conda-package-handling v1.6.1. However, I am also able to reproduce the same issue on my MacBook Pro (macOS 10.14.6) with conda-package-handling v1.7.0. If I manually delete
site-packages/conda_package_handling/archive_utils.py
andsite-packages/conda_package_handling/archive_utils.XXX.so
from my conda environment to make it backoff totarfile
, the above snippet works fine without any errors.Here are the contents of
gug-data-1.0-0.tar.bz2
:Any ideas what could be happening? The same conda package was being installed just fine a few days ago.
The text was updated successfully, but these errors were encountered: