首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Azure存储队列-重试机制实现

Azure存储队列-重试机制实现
EN

Stack Overflow用户
提问于 2020-09-24 18:45:36
回答 1查看 658关注 0票数 0

我使用nuget包"Microsoft.Azure.Storage.Queue“Version="11.1.7”创建Azure存储队列客户端,如下所示,

代码语言:javascript
复制
AsyncLazy<CloudQueue> qClient = new AsyncLazy<CloudQueue>( async () =>
    {
        var myStorageAccount = CloudStorageAccount.Parse("ConnectionString");
        var myQueue = myStorageAccount .CreateCloudQueueClient()
            .GetQueueReference("QueueName");
        await myQueue.CreateIfNotExistsAsync();
        return myQueue;
    });

在通过上面的“qClient”实例向队列发送消息时,希望结合重试机制来克服任何瞬态故障。

如何将重试机制与上述创建延迟队列连接的方式结合起来?

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2020-09-25 02:41:36

您可以引用此正式文件,并且可以使用CloudBlobClient.DefaultRequestOptions属性。

我编写了一个代码示例,也许它可以启发您:

代码语言:javascript
复制
            AsyncLazy<CloudQueue> qClient = new AsyncLazy<CloudQueue>(async () =>
            {
                var myStorageAccount = CloudStorageAccount.Parse("ConnectionString");
                var myQueue = myStorageAccount.CreateCloudQueueClient();
                myQueue.DefaultRequestOptions = new QueueRequestOptions
                {
                    RetryPolicy = new ExponentialRetry(TimeSpan.FromSeconds(3), 4),
                    // For Read-access geo-redundant storage, use PrimaryThenSecondary.
                    // Otherwise set this to PrimaryOnly.
                    LocationMode = LocationMode.PrimaryThenSecondary,
                    // Maximum execution time based on the business use case.
                    MaximumExecutionTime = TimeSpan.FromSeconds(20)
                };
                var queue = myQueue.GetQueueReference("QueueName");
                await queue.CreateIfNotExistsAsync();
                return queue;
            });
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/64052553

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档