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
when running exaslct export we run basically the following steps:
build the docker images of respective flavor (if not existent)
create docker container (but not start)
export (whole) docker container to tar
zip the tar, excluding certain directories
For huge containers the last two steps might become a pain point, for a 5GB container we measured ~15 minutes.
It should be possible to increase the speed of the export by starting the container and then exporting directories from inside the container, also using a compression tool which leverage multiple CPU cores (pigz).
Background
when running
exaslct export
we run basically the following steps:For huge containers the last two steps might become a pain point, for a 5GB container we measured ~15 minutes.
It should be possible to increase the speed of the export by starting the container and then exporting directories from inside the container, also using a compression tool which leverage multiple CPU cores (pigz).
Acceptance Criteria
pigz
on all containersThe text was updated successfully, but these errors were encountered: