An engineer is using gsutil to upload a large number of files to a Cloud Storage bucket. The upload is proceeding very slowly. Which two actions could improve the upload performance? (Choose two.)
Parallel multi-threading speeds up uploads of multiple files.
Why this answer
To improve upload performance to Cloud Storage, you can use two techniques: increasing parallelism and enabling parallel composite uploads. The gsutil -m option (Option A) enables parallel multi-threading, allowing multiple files to be uploaded concurrently. This significantly speeds up bulk uploads.
Additionally, you can enable parallel composite uploads for large files by setting the parallel composite upload threshold to a value smaller than the file size (Option D). This causes gsutil to split files into multiple components and upload them in parallel, then reassemble them in the cloud. Option B increases the number of retries, which would only add overhead in case of failures, not improve speed.
Option C changes the storage class, which does not affect upload throughput. Option E sets ACLs, which affects permissions but not performance.