-
Notifications
You must be signed in to change notification settings - Fork 22
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
suggestion to speed up pvc transfer #193
Comments
++ |
with a tgz it might reduce speed actually with the additional compression, however a raw tar file would probably make things faster. However the issue with this approach is that we'd need to have enough free space on the source PV and the target PV for the archive and the data, which the current solution does not require |
We had a recent issues in using the korb, where there are millions of files in the Source PVC. However export and import completed faster (tar option) So introducing a new strategy (copy_twice_with_tar_pipe) tar to a pipe and extract in a single command line will be helpful and make it faster (Good old unix backup days). This will not introduce any extra space consumption in the PVC also.
This will avoid the unnecessary space usage on the admin host for the export and import option |
A small suggestion on how Korb could be a lot faster: create a tar.gz file on the source PVC, move it to the destination, and then extract it. This method would significantly improve the speed.
The text was updated successfully, but these errors were encountered: