我已将1844个文件加载到Azure到热存储。我使用Microsoft的AzCopy程序。目前在指标中有20万笔交易。这是怎么回事?为什么要进行20万笔交易?我在Azure中发现了带有BUG的请求。 Azure BLOB storage phantom requests
我的命令:
azcopy / Source: LocalPath /目的:https:// mystorage .blob.core.windows.net / img / / DestKey: AccessKey / S
答案 0 :(得分:0)
在此文档:Understanding Windows Azure Storage Billing – Bandwidth, Transactions, and Capacity中,您可以在Uploading Blobs
下找到一些内容。它说When uploading a blob greater than 32 Mbytes, the storage client library will break it into 4 Mbyte blocks by default.
和Each PutBlock will count as 1 transaction, and the final PutBlockList will also count as 1 transaction
。
另一件事来自官方文档:Transfer Data with the Microsoft Azure Storage Data Movement Library,您可以知道存储客户端库是AzCopy的核心。 这样就可以得出结论。
使用Storage Client Library,您可以更改默认块大小,但是AzCopy并未提及它,因此它可能无法更改。
希望这对您有帮助,如果您还有其他问题,请告诉我。