Skip to content

Commit 2d2bdaa

Browse files
RaynaldMraman-m
authored andcommitted
#2080 Adds parameters (in this case those of Polly V8) to fine-tune circuit-breaker behavior
1 parent 8c0180a commit 2d2bdaa

File tree

3 files changed

+51
-5
lines changed

3 files changed

+51
-5
lines changed

src/Ocelot.Provider.Polly/PollyQoSResiliencePipelineProvider.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ protected virtual ResiliencePipelineBuilder<HttpResponseMessage> ConfigureCircui
8181
var info = $"Circuit Breaker for Route: {GetRouteName(route)}: ";
8282
var strategyOptions = new CircuitBreakerStrategyOptions<HttpResponseMessage>
8383
{
84-
FailureRatio = 0.8,
85-
SamplingDuration = TimeSpan.FromSeconds(10),
84+
FailureRatio = options.FailureRatio,
85+
SamplingDuration = TimeSpan.FromSeconds(options.SamplingDuration),
8686
MinimumThroughput = options.ExceptionsAllowedBeforeBreaking,
8787
BreakDuration = options.DurationOfBreak > QoSOptions.LowBreakDuration
8888
? TimeSpan.FromMilliseconds(options.DurationOfBreak)

src/Ocelot/Configuration/QoSOptions.cs

+47-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public QoSOptions(FileQoSOptions from)
2323
public QoSOptions(
2424
int exceptionsAllowedBeforeBreaking,
2525
int durationOfBreak,
26-
int timeoutValue,
26+
int timeoutValue,
2727
string key)
2828
{
2929
DurationOfBreak = durationOfBreak;
@@ -32,6 +32,36 @@ public QoSOptions(
3232
TimeoutValue = timeoutValue;
3333
}
3434

35+
public QoSOptions(
36+
int exceptionsAllowedBeforeBreaking,
37+
int durationOfBreak,
38+
double failureRatio,
39+
int timeoutValue,
40+
string key)
41+
{
42+
DurationOfBreak = durationOfBreak;
43+
ExceptionsAllowedBeforeBreaking = exceptionsAllowedBeforeBreaking;
44+
Key = key;
45+
TimeoutValue = timeoutValue;
46+
FailureRatio = failureRatio;
47+
}
48+
49+
public QoSOptions(
50+
int exceptionsAllowedBeforeBreaking,
51+
int durationOfBreak,
52+
double failureRatio,
53+
int samplingDuration,
54+
int timeoutValue,
55+
string key)
56+
{
57+
DurationOfBreak = durationOfBreak;
58+
ExceptionsAllowedBeforeBreaking = exceptionsAllowedBeforeBreaking;
59+
Key = key;
60+
TimeoutValue = timeoutValue;
61+
FailureRatio = failureRatio;
62+
SamplingDuration = samplingDuration;
63+
}
64+
3565
/// <summary>How long the circuit should stay open before resetting in milliseconds.</summary>
3666
/// <remarks>If using Polly version 8 or above, this value must be 500 (0.5 sec) or greater.</remarks>
3767
/// <value>An <see cref="int"/> value (milliseconds).</value>
@@ -50,6 +80,22 @@ public QoSOptions(
5080
/// </value>
5181
public int ExceptionsAllowedBeforeBreaking { get; }
5282

83+
/// <summary>
84+
/// The failure-success ratio that will cause the circuit to break/open.
85+
/// </summary>
86+
/// <value>
87+
/// An <see cref="double"/> 0.8 means 80% failed of all sampled executions.
88+
/// </value>
89+
public double FailureRatio { get; } = .8;
90+
91+
/// <summary>
92+
/// The time period over which the failure-success ratio is calculated (in seconds).
93+
/// </summary>
94+
/// <value>
95+
/// An <see cref="int"/> Time period in seconds, 10 means 10 seconds.
96+
/// </value>
97+
public int SamplingDuration { get; } = 10;
98+
5399
public string Key { get; }
54100

55101
/// <summary>

test/Ocelot.AcceptanceTests/PollyQoSTests.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public override void Dispose()
3838
public void Should_not_timeout()
3939
{
4040
var port = PortFinder.GetRandomPort();
41-
var route = GivenRoute(port, new QoSOptions(10, 500, 1000, null), HttpMethods.Post);
41+
var route = GivenRoute(port, new QoSOptions(10, 500, .5, 5, 1000, null), HttpMethods.Post);
4242
var configuration = GivenConfiguration(route);
4343

4444
this.Given(x => x.GivenThereIsAServiceRunningOn(port, HttpStatusCode.OK, string.Empty, 10))
@@ -186,7 +186,7 @@ public void Should_timeout_per_default_after_90_seconds()
186186
var port = PortFinder.GetRandomPort();
187187
var route = GivenRoute(port, new QoSOptions(new FileQoSOptions()), HttpMethods.Get);
188188
var configuration = GivenConfiguration(route);
189-
189+
190190
this.Given(x => x.GivenThereIsAServiceRunningOn(port, HttpStatusCode.Created, string.Empty, 3500)) // 3.5s > 3s -> ServiceUnavailable
191191
.And(x => GivenThereIsAConfiguration(configuration))
192192
.And(x => GivenOcelotIsRunningWithPolly())

0 commit comments

Comments
 (0)