
Explanation:
The correct answer is C. The same command initially used. gsutil rsync will automatically resume.
When using gsutil rsync to upload files to Google Cloud Storage, the operation is designed to automatically resume from the point of failure if interrupted. This means simply reissuing the original command will continue the upload process without needing to re-upload files that were already successfully transferred.
resume command for gsutil rsync.--resume parameter for gsutil rsync.--upload parameter is not applicable in this context; it's used to specify the source directory or bucket for the upload, not to resume an interrupted operation.Ultimate access to all questions.
No comments yet.
When uploading several hundred files to Google Cloud using gsutil rsync, the operation fails to complete. You wish to resume the upload without re-uploading files that were successfully transferred. Which command should you use to continue the rsync operation?
A
The gsutil rsync resume command
B
The same command initially used, plus the --resume parameter
C
The same command initially used. gsutil rsync will automatically resume.
D
The same command initially used, plus the --upload parameter.