英文:
How to calculate cost in for GCS rewrite operation
问题
我最近将一个存储桶的密钥从由Google管理切换为由客户管理。然而,存储桶中现有的文件仍在使用旧密钥。为解决此问题,我需要重写这些文件,以便它们可以使用新密钥。您能帮助我计算此迁移的成本吗?
链接:https://cloud.google.com/storage/docs/gsutil/commands/rewrite
英文:
I recently switched the key of a bucket from being managed by Google to being managed by the customer. However, the existing files in the bucket are still using the old key. To resolve this, I need to rewrite the files so that they can utilize the new key. Can you please assist me in calculating the cost of this migration?
https://cloud.google.com/storage/docs/gsutil/commands/rewrite
答案1
得分: 1
根据这份关于Google Cloud Storage价格的文档,重写操作 (storage.objects.rewrite
) 将被归类为 A类操作。
对于位于单一地区的存储桶:
存储类型 | A类操作(每1,000次操作) |
---|---|
标准存储 | $0.005 |
近线存储和耐久性降低可用性 (DRA) 存储 | $0.01 |
冷线存储 | $0.02 |
归档存储 | $0.05 |
存储类型 | A类操作(每1,000次操作) |
---|---|
标准存储 | $0.01 |
近线存储和耐久性降低可用性 (DRA) 存储 | $0.02 |
冷线存储 | $0.04 |
归档存储 | $0.10 |
请注意,这些仅仅是估算值,价格可能会根据地区、操作和Google Cloud 服务条款、程序政策以及Google的隐私政策而变化。
您也可以使用Google Cloud Pricing Calculator来估算您的项目操作的费用。
最后,您可以联系Google Cloud计费支持以详细了解在项目操作期间可能产生的所有费用。
希望这能帮助您。
英文:
Based on this documentation on Google Cloud Storage pricing, rewrite operation (storage.objects.rewrite
) will fall under Class A Operations.
For buckets located in a single region:
Storage Class | Class A operations (per 1,000 operations) |
---|---|
Standard storage | $0.005 |
Nearline storage and Durable Reduced Availability (DRA) storage | $0.01 |
Coldline storage | $0.02 |
Archive storage | $0.05 |
For buckets located in a dual-region or multi-region:
Storage Class | Class A operations (per 1,000 operations) |
---|---|
Standard storage | $0.01 |
Nearline storage and Durable Reduced Availability (DRA) storage | $0.02 |
Coldline storage | $0.04 |
Archive storage | $0.10 |
Please be advised that these are all just estimates and pricing may change depending on the region, operations, and Google Cloud Terms of Service and Program Policies, as well as Google's Privacy Policy.
You may also check Google Cloud Pricing Calculator for estimates of operations for your project.
Finally, you may reach out to Google Cloud Billing support to properly explain all the charges that may incur during the operations of your project.
Hope this helps.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论