使用 AZCopy (v10) 的同步功能是否算作每个 blob 对目标的 blob 访问?
Does using the sync feature of AZCopy (v10) count as a blob access on the destination for every blob?
我们正在为 Azure 中的存储帐户构建备份解决方案。我们将数据同步到辅助存储帐户。为了降低成本,我们正在考虑将我们的目标存储帐户放在 'Cool' 访问层中,因为几乎不需要恢复操作。我们正在使用 AzCopy 的最新 "sync" 选项来执行我们的存储帐户之间的同步。我想知道 "sync" 操作是否实际上访问了目标存储帐户中的所有 blob(扼杀了冷访问层的目的)或者该操作是否仅检索 blob 的 metadata/properties,因此不产生访问费用。
谢谢!
来自 azcopy sync
文档:
The last modified times are used for comparison. The file is skipped
if the last modified time in the destination is more recent.
考虑到 last modified time
属性 是在您列出 blob 时获取的(或对 blob 执行 head 请求以获取 blob 的属性),您并没有真正访问 blob(即读取它) .
我们正在为 Azure 中的存储帐户构建备份解决方案。我们将数据同步到辅助存储帐户。为了降低成本,我们正在考虑将我们的目标存储帐户放在 'Cool' 访问层中,因为几乎不需要恢复操作。我们正在使用 AzCopy 的最新 "sync" 选项来执行我们的存储帐户之间的同步。我想知道 "sync" 操作是否实际上访问了目标存储帐户中的所有 blob(扼杀了冷访问层的目的)或者该操作是否仅检索 blob 的 metadata/properties,因此不产生访问费用。
谢谢!
来自 azcopy sync
文档:
The last modified times are used for comparison. The file is skipped if the last modified time in the destination is more recent.
考虑到 last modified time
属性 是在您列出 blob 时获取的(或对 blob 执行 head 请求以获取 blob 的属性),您并没有真正访问 blob(即读取它) .