Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,25 @@
Bulkhead -> Total Request Timeout -> Retry -> Circuit Breaker -> Attempt Timeout.
</para>
The configuration of each pipeline is initialized with the default options per type. The request goes through these strategies:
<list type="number"><item><description>Total request timeout pipeline applies an overall timeout to the execution,
ensuring that the request including hedging attempts, does not exceed the configured limit.</description></item><item><description>The retry pipeline retries the request in case the dependency is slow or returns a transient error.</description></item><item><description>The bulkhead pipeline limits the maximum number of concurrent requests being send to the dependency.</description></item><item><description>The circuit breaker blocks the execution if too many direct failures or timeouts are detected.</description></item><item><description>The attempt timeout pipeline limits each request attempt duration and throws if its exceeded.</description></item></list></remarks>
<list type="number">
<item>
<description>The bulkhead pipeline limits the maximum number of concurrent requests being send to the dependency.</description>
</item>
<item>
<description>Total request timeout pipeline applies an overall timeout to the execution,
ensuring that the request including hedging attempts, does not exceed the configured limit.</description>
</item>
<item>
<description>The retry pipeline retries the request in case the dependency is slow or returns a transient error.</description>
</item>
<item>
<description>The circuit breaker blocks the execution if too many direct failures or timeouts are detected.</description>
</item>
<item>
<description>The attempt timeout pipeline limits each request attempt duration and throws if its exceeded.</description>
</item>
</list>
</remarks>
</Docs>
<Members>
<Member MemberName=".ctor">
Expand Down