This repository has been archived by the owner on Oct 2, 2024. It is now read-only.
Replies: 1 comment 2 replies
-
Hello, Looking through this, my first suspicion is that the filesystem where the image is residing (perhaps /tmp?) is being filled up by the application you are running. If this is the case I would recommend doing a couple runs until you get the same error and then see where the growth is. If the extra space is being consumed by information you want to keep you should mount a directory to that path so that it is retained across runs. If possible, I would recommend working on getting to the point where you do not need the Let me know if you have questions. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I've been submitting some jobs on the MPI clusters with ch-run environment. Sometimes the job output will raise and error like the below, after several jobs are done without error (the image folder size will grow):
I tried to bind the path to an arbitrary directory inside the image (e.g., /mnt/0) with write permission, it still raises the error. I'm sure that the directory I mount has more space than required (~100TB), so this error shouldn't happen.
My current solution is to remove the whole image and use ch-tar2dir to extract a new image again, then submit the jobs as usual, after some trials delete the image and extract it again. Is there a way to not limit the image folder size, so that it can grow as it is, and I don't need to remove and extract the image from time to time?
An example command is as this:
Best,
Chon Kit
Beta Was this translation helpful? Give feedback.
All reactions