Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
该gsutil命令具有优化大文件上传/下载速度的选项。例如
gsutil
GSUtil:parallel_composite_upload_threshold=150M GSUtil:sliced_object_download_max_components=8
请参阅此页面以供参考。
google.cloud.storagepython API中的等价物是什么?我没有在这个文档中找到相关参数。
google.cloud.storage
一般来说,客户端API和gsutil功能上是否有一一对应的关系?
我认为它不是本机支持的。
但是(!)如果您愿意分解文件然后使用threadingor multiprocessing,有一种compose方法可以帮助您将部件组装成一个 GCS 对象。
threading
multiprocessing
compose
具有讽刺意味的是,gsutil它是用 Python 编写的,但它使用一个库gslib来实现并行上传。您也许可以gslib用作模板。
gslib