Skip to content
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

avoid spike in temp files during installation #49

Open
sbailey opened this issue Mar 7, 2022 · 2 comments
Open

avoid spike in temp files during installation #49

sbailey opened this issue Mar 7, 2022 · 2 comments

Comments

@sbailey
Copy link
Contributor

sbailey commented Mar 7, 2022

Our current desiconda installations have a ~200k spike in temporary files during an installation, which can cause inode quota problems even if the final installation would fit. Some tips from NERSC to try to avoid this:

CONDA_PKGS_DIRS=$(mktemp -d) conda install ...

They also recommend running this at the end:

conda clean --yes --all

In conf/conda-pkgs.sh we currently run rm -rf $CONDADIR/pkgs/* which is similar but not identical and would need to be updated for these.

I have not actually tested these.

@weaverba137
Copy link
Member

@sbailey, I think this is now done as of #68.

@sbailey
Copy link
Contributor Author

sbailey commented May 1, 2024

we probably should have done it as part of #68, but that doesn't include either "CONDA_PKGS_DIRS=$(mktemp -d) conda install ..." nor "conda clean --yes --all".

Next time...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants