Azure BLOB storage phantom requests

北城余情 提交于 2019-12-12 18:21:45

问题


I see strange requests when uploading blobs to storage. The only methods I use is PutBlob and SetBlobTier. But metrics shows large amount of GetBlobProperties requests with time interval about 1 hour. It seems like Azure makes some extra requests for statistic purposes. It happens only when uploading process is running. At attached diagram you can see 4 peaks of GetBlobProperties requests. Does anybody know what is it? Another question is, will I be billed for this requests?


回答1:


Any API call is considered to be a transaction:

TransactionsEach individual Blob, Table and Queue REST request to the storage service is considered as a potential transaction for billing. Applications can then control their transaction costs by controlling how often and how many requests they send to the storage service. We analyze each request received and then classify it as billable or not billable based upon our ability to process the request and the request’s outcome.

For that specific transaction, my guess is you're using Blob Archive(correct me if i'm wrong), the prices are as below:

It will be considered as All other Operations(per 10,000) pricing.

What could is causing it?

Due to a bug in our system, some internal transactions are miscategorized as customer requests when blobs transition between cold and archive storage tiers. These unexpected transactions will also be visible in both Azure Monitor as well as Storage Analytics logging. We are working on a fix for this and will deploy it as soon as possible. We apologize for any inconvenience and confusion this may have caused.



来源:https://stackoverflow.com/questions/51827955/azure-blob-storage-phantom-requests

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!