-
HealthChecks should use similar logic to transient fault handling to avoid false negative health reporting of transient faults
https://docs.microsoft.com/en-us/aspnet/aspnet/overview/developing-a…
-
Gravity currently has its own `InvokeWithRetryService`. It may be worth considering using [Polly](https://github.com/App-vNext/Polly) policies instead for this purpose, as it is battle-tested and more…
-
## Bug Report
**What did you do? / Minimal Reproducible Example**
We first deployed a five-replica Solr cluster, then modified the CR to scale down to three replicas.
The scale down triggers the …
-
[Polly](https://github.com/App-vNext/Polly) is a .NET resilience and transient-fault-handling library that allows developers to express policies such as Retry, Circuit Breaker, Timeout, Bulkhead Isola…
iayti updated
4 years ago
-
The current retry mechanism is too aggressive for SQL Azure.
Too many consecutive retries get "punished" by SQL Azure.
See:
1. [Retry service specific guidance
](https://azure.microsoft.com/en-us…
-
Incidentally I found that @Dixin prepared a .NET Core port of the Transient Fault Handling block at [Dixin/EnterpriseLibrary.TransientFaultHandling.Core](https://github.com/Dixin/EnterpriseLibrary.Tr…
tsahi updated
2 years ago
-
**Description:**
The Asynchronous Retry design pattern is aimed at handling transient failures in a reliable and efficient manner. This pattern allows an application to retry an operation asynchronou…
-
If customer already has a Transient Fault Handling (TFH) mechanism in the application then there should be a way to avoid adding another TFH mechanism inside the SMM APIs of the Elastic Scale library.…
-
https://github.com/App-vNext/Polly
Polly is a .NET resilience and transient-fault-handling library that allows developers to express policies such as Retry, Circuit Breaker, Timeout, Bulkhead Isolati…
-
### Problem:
Currently, if any activity within a workflow faults, the entire workflow instance transitions to the "Faulted" state. This all-or-nothing approach might not be suitable for all scenarios…