使用重试策略后配置Azure存储帐户时出错

时间:2017-04-26 18:43:18

标签: c# azure azure-table-storage retrypolicy

这是我配置Azure存储帐户的代码

public CloudTableClient ConfigureStorageAccount()
{
        var storageCred = new StorageCredentials(ConfigurationManager.AppSettings["SASToken"]);

        CloudTableClient = new CloudTableClient(
                        new StorageUri(new Uri(ConfigurationManager.AppSettings["StorageAccountUri"])), storageCred);



        var backgroundRequestOption = new TableRequestOptions()
        {
            // Client has a default exponential retry policy with 4 sec delay and 3 retry attempts
            // Retry delays will be approximately 3 sec, 7 sec, and 15 sec
            MaximumExecutionTime = TimeSpan.FromSeconds(30),
            // PrimaryThenSecondary in case of Read-access geo-redundant storage, else set this to PrimaryOnly
            LocationMode = LocationMode.PrimaryThenSecondary,


        };

        CloudTableClient.DefaultRequestOptions = backgroundRequestOption;

        return CloudTableClient;
}

当我指定backgroundRequestOption时,我收到错误未指定目标存储位置的Uri。请考虑更改请求的位置模式。

如果我没有指定backgroundRequestOption,我就不会收到任何错误。我在哪里需要指定此URI?

1 个答案:

答案 0 :(得分:4)

如果选择了LocationMode.PrimaryThenSecondary,则需要同时指定PrimaryUri和SecondaryUri。