You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Does zstash create copy all data? That is, if I have x TB of data, will I have another x TB of data after running zstash create, resulting in 2x TB of data total?
Data will be archived into a tar, which is then transferred and deleted locally. Repeat until all data is transferred.
This means that there is no point when more than the --maxsize (default --maxsize=256 GB) is stored twice on the same system. At the end you will have x TB of data locally and x TB of data on HPSS.
Case 4: zstash create --hpss=globus://<globus-path>
Data will be archived into a tar, which is then transferred via Globus and afterwards deleted locally. Repeat until all data is transferred.
This means that there is no point when more than the --maxsize (default --maxsize=256 GB) is stored twice on the same system. At the end you will have x TB of data locally and x TB of data on HPSS on another system.
Case 5: zstash create --hpss=globus://<globus-path> --non-blocking
Data will be archived into a tar, which is submitted to the Globus transfer queue. More data is collected into a tar to be submitted next. Once a Globus transfer completes successfully, the corresponding tar is deleted locally. Repeat until all data is transferred.
This means that there is no point when more than the n * --maxsize (default --maxsize=256 GB, where n is the number of tars waiting to be transferred) is stored twice on the same system. At the end you will have x TB of data locally and x TB of data on HPSS on another system.
Note that this functionality will be updated with #214 -- a Globus transfer will then be able to have multiple tar files in it.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Does
zstash create
copy all data? That is, if I havex
TB of data, will I have anotherx
TB of data after runningzstash create
, resulting in2x
TB of data total?Beta Was this translation helpful? Give feedback.
All reactions