We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
According to the NERSC HPSS documentation (https://docs.nersc.gov/filesystems/archive/#avoid-very-large-files), files over 2TB are inefficient when put to HPSS. They recommend breaking files up into 500GB chunks if they get over that limit.
The hsi handler mcscript.task.archive_handler_hsi() should:
mcscript.task.archive_handler_hsi()
hsi
split
In addition (so that consumers of archives don't need to be aware of this splitting behavior):
mcscript
The text was updated successfully, but these errors were encountered:
c849af4 implements the logic in archive_handler_hsi()
archive_handler_hsi()
Sorry, something went wrong.
No branches or pull requests
According to the NERSC HPSS documentation (https://docs.nersc.gov/filesystems/archive/#avoid-very-large-files), files over 2TB are inefficient when put to HPSS. They recommend breaking files up into 500GB chunks if they get over that limit.
The hsi handler
mcscript.task.archive_handler_hsi()
should:hsi
if smaller than threshold, orsplit
to break up the file into smaller segments and put those withhsi
.In addition (so that consumers of archives don't need to be aware of this splitting behavior):
mcscript
should also provide a wrapper function to fetch and reassemble archives,The text was updated successfully, but these errors were encountered: