简体   繁体   English

Azure存储帐户的可用性

[英]Availability of Azure storage account

This page says that the availability of an azure storage account is computed as (billable requests)/(total requests). 页面显示,天青存储帐户的可用性计算为(可计费请求)/(总请求)。 Billable requests mean all the requests excluding those which experienced anonymous failures (except network errors), throttled requests, server timeout errors and unknown errors. 可计费请求是指所有请求,但那些经历匿名失败(网络错误除外),限制请求,服务器超时错误和未知错误的请求除外。

Now,what I see on the azure portal for my storage account is a straight line continuously at 100%, meaning that the account is available at 100% availability continuously. 现在,我在azure门户上看到的存储帐户是一条直线,连续100%可用,这意味着该帐户连续100%可用。 The line is without any break which means that the availability is being calculated continuously. 该生产线没有任何中断,这意味着将连续计算可用性。

在此处输入图片说明

I know for sure that I don't throw requests to the storage account continuously. 我知道我不会连续向存储帐户发出请求。 Then, how is this metric calculated for times when there are no requests? 然后,如何针对没有请求的时间计算该指标?

Additionally, even a slight drop in storage availability means that some requests failed due to some server side issues. 此外,即使存储可用性略有下降,也意味着由于某些服务器端问题,某些请求失败。 How can we ensure that these failed requests are retried and they pass? 我们如何确保这些失败的请求重试并通过?

When there isn't any incoming request, the availability is 100%. 没有任何传入请求时,可用性为100%。 If your request encounters server side failures, you should retry the request via your code explicitly (in .NET client library , you can easily leverage RetryPolicy . See more details about RetryPolicy here ). 如果您的请求遇到服务器端故障,则应通过代码显式重试该请求(在.NET客户端库中 ,您可以轻松地利用RetryPolicy在此处查看有关RetryPolicy的更多详细信息)。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM