英文:
how can I speed up gsutil transfers of large files?
问题
我使用gsutils命令从Google Cloud Storage下载大文件。如何加快传输速度?
英文:
I use the gsutils command to download large files from Google Cloud Storage. How can I speed up the transfer?
答案1
得分: 3
使用 gcloud 存储。例如,而不是
gsutil cp gs://bucket/file .
使用
gcloud storage cp gs://bucket/file .
根据 https://cloud.google.com/blog/products/storage-data-transfer/new-gcloud-storage-cli-for-your-data-transfers,这样可以提高达 94% 的速度。
英文:
Use gcloud storage. E.g. instead of
gsutil cp gs://bucket/file .
use
gcloud storage cp gs://bucket/file .
This is up to 94% faster according to https://cloud.google.com/blog/products/storage-data-transfer/new-gcloud-storage-cli-for-your-data-transfers
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论