mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-12 03:12:11 +08:00
44 lines
1.8 KiB
C#
44 lines
1.8 KiB
C#
namespace BuildingBlocks.Polly;
|
|
|
|
using System.Net;
|
|
using Ardalis.GuardClauses;
|
|
using BuildingBlocks.Web;
|
|
using global::Polly;
|
|
using Grpc.Core;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
public static class GrpcRetry
|
|
{
|
|
//ref: https://anthonygiretti.com/2020/03/31/grpc-asp-net-core-3-1-resiliency-with-polly/
|
|
public static IHttpClientBuilder AddGrpcRetryPolicyHandler(this IHttpClientBuilder httpClientBuilder)
|
|
{
|
|
return httpClientBuilder.AddPolicyHandler((sp, _) =>
|
|
{
|
|
var options = sp.GetRequiredService<IConfiguration>().GetOptions<PolicyOptions>(nameof(PolicyOptions));
|
|
|
|
Guard.Against.Null(options, nameof(options));
|
|
|
|
return Policy
|
|
.HandleResult<HttpResponseMessage>(r => !r.IsSuccessStatusCode)
|
|
.WaitAndRetryAsync(options.Retry.RetryCount,
|
|
retryAttempt => TimeSpan.FromSeconds(options.Retry.SleepDuration),
|
|
onRetry: (response, timeSpan, retryCount, context) =>
|
|
{
|
|
if (response?.Exception != null)
|
|
{
|
|
var loggerFactory = sp.GetRequiredService<ILoggerFactory>();
|
|
var logger = loggerFactory.CreateLogger("PollyGrpcRetryPoliciesLogger");
|
|
|
|
logger.LogError(response.Exception,
|
|
"Request failed with {StatusCode}. Waiting {TimeSpan} before next retry. Retry attempt {RetryCount}.",
|
|
response.Result.StatusCode,
|
|
timeSpan,
|
|
retryCount);
|
|
}
|
|
});
|
|
});
|
|
}
|
|
}
|