-
Notifications
You must be signed in to change notification settings - Fork 3
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
Allow for a better archive hierarchy #1
Comments
Not all environment files contain information about the user due to the |
Adding the cluster in the hierarchy seems only useful if the archive resides on storage that is shared between masters. |
For the job archival system we've developed locally, we use a multi-level hierarchy based on the job ids, not too different from what Slurm does in StateSaveLocation with the The idea is to reverse the job id and slice it like this: This ensures that consecutive job ids get equally dispatched to the different end-level archive directories without overloading any particular one. Maybe something similar could be used for |
That's a nice suggestion, thanks. I would suggest not to take it to the lowest level, so maybe not start with In our usage, we do stick them in YYYYMMDD subdirs, which then get tarred and zipped after 7 days or so. So that may also avoid overloading, even though this lacks an equal distribution in numbers of files across the days. |
We currently have a very flat format, i.e.,
job.<jobid>_script
andjob.<jobid>_environment
. While this suffices for finding job scripts, it has several drawbacks.A better archive could be organised by
The text was updated successfully, but these errors were encountered: