Specify runtime_path partition size#1191
Merged
ajdecon merged 1 commit intoNVIDIA:masterfrom Jul 5, 2022
Merged
Conversation
add resize_run_partition option, which enables specifying /run partition size where is default partition of pyxis `runtime_path`, used to store squashfs file temporarily In the case a docker image is bigger than the partition then slurm job fails. Signed-off-by: Seyong Um <seyong.um@hyundai.com>
ajdecon
approved these changes
Jul 5, 2022
Contributor
ajdecon
left a comment
There was a problem hiding this comment.
LGTM!
- All CI tests are passing, so the default case is working well
- Manual test with
resize_run_partition: falsebehaved as expected - Manual test with
resize_run_partition: trueincreased the size of/runcorrectly
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem:
/runpartition size then slurm job fails: no space left on device/runis about 3GBCause:
runtime_pathto store squashfs file temporarilyruntime_pathis/run/pyxis./runsize might be up to distribution, however ubuntu is 10% of physical memorySuggestion:
resize_run_partitionoption to specify/runpartition sizeI know we can change
runtime_pathto other location, but I believe it is meaningful to usetmpfsresiding in memory faster than other filesystems if compute nodes have sufficient memory.