gsutil rsync 是否会对 Google Cloud Storage Coldline 存储桶产生额外费用
Does gsutil rsync incur additional charges for Google Cloud Storage Coldline buckets
我需要将 ~1.5TB 的大文件上传到 Google Cloud Storage coldline。我打算使用 gsutil 的 rsync 命令。但我有一个顾虑。 rsync 的校验和验证是否会对 Coldline 存储桶中的每个对象产生额外费用。我试图确定这一点,但无法在任何地方找到信息。如果其他人遇到过这种情况,我将不胜感激。
散列验证包含在 end of the copy operation. It is also documented that you will be charge by the type of operation. The copy operation is a Class A operation.
所以,没有。如果校验和验证是在复制命令结束时由服务器端进行的,则不会对校验和验证进一步收费,因为您已经为复制操作付费了。
如果您决定这样做 yourself,那么,您将不得不下载元数据,这可能会导致更多操作。
不过,请查看 Cloud Storage 的定价页面,您可能还需要为 Nearline and Coldline 的检索和提前删除付费。
我需要将 ~1.5TB 的大文件上传到 Google Cloud Storage coldline。我打算使用 gsutil 的 rsync 命令。但我有一个顾虑。 rsync 的校验和验证是否会对 Coldline 存储桶中的每个对象产生额外费用。我试图确定这一点,但无法在任何地方找到信息。如果其他人遇到过这种情况,我将不胜感激。
散列验证包含在 end of the copy operation. It is also documented that you will be charge by the type of operation. The copy operation is a Class A operation.
所以,没有。如果校验和验证是在复制命令结束时由服务器端进行的,则不会对校验和验证进一步收费,因为您已经为复制操作付费了。
如果您决定这样做 yourself,那么,您将不得不下载元数据,这可能会导致更多操作。
不过,请查看 Cloud Storage 的定价页面,您可能还需要为 Nearline and Coldline 的检索和提前删除付费。