
Answer-first summary for fast verification
Answer: Use parallel uploads to break the file into smaller chunks then transfer it simultaneously.
The correct answer is **D** because gsutil provides object composition or parallel upload to handle the upload of larger files efficiently. This method splits a large file into smaller chunks, uploads them in parallel, and then recomposes them in the cloud. This approach significantly increases upload performance. - **Option A** is incorrect because recursive upload is designed for handling folders and subfolders, not large individual files. - **Option B** is incorrect as the Cloud Transfer Service does not support uploads from on-premises data centers. - **Option C** is incorrect because multi-threaded options are best suited for uploading multiple files to better utilize bandwidth, not for large single files.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
You need to migrate a collection of media files, each over 50GB, from your on-premises data center to Google Cloud Storage. Which method can help speed up the transfer process?
A
Start a recursive upload.
B
Use the Cloud Transfer Service to transfer.
C
Use multi-threaded uploads using the -m option.
D
Use parallel uploads to break the file into smaller chunks then transfer it simultaneously.
No comments yet.