vertx-circuit-breaker icon indicating copy to clipboard operation
vertx-circuit-breaker copied to clipboard

A circuit breaker for Vert.x

Results 12 vertx-circuit-breaker issues
Sort by recently updated
recently updated
newest added

### Version io.vertx vertx-circuit-breaker 4.3.1 ### Context I am getting high memory usage with the circuit breaker. I am just using httpbin.org to get all success responses. For individual requests,...

bug

Otherwise, the application might throw an OOM. This would happen with a big enough circuit breaker timeout and a result value that retains a relatively large amount of memory. Issue...

It is not necessary to compute the metrics if they are not collected (by default, they are not). Also, the dependency on HdrHistogram should be optional since metrics are not...

#### Describe the feature Retry policies can be configured using the `retryPolicy` method. it's common to use well-known retry policies like constant, linear, or exponential backoff delays for this policy....

enhancement

#### Describe the feature A common use case for a circuit breaker is to retry or circuit break remote HTTP calls done by a web/HTTP client. HTTP servers use the...

enhancement

See https://github.blog/2020-06-01-keep-all-your-packages-up-to-date-with-dependabot/

After executing command, if the result succeeds, rollingCounter resets. I think this should be done just when the state is HALF_OPEN not CLOSED. Because every succeeding result clears previous failed...

Motivation: This fixes #46. Conformance: Your commits should be signed and you should have signed the Eclipse Contributor Agreement as explained in https://github.com/eclipse/vert.x/blob/master/CONTRIBUTING.md Please also make sure you adhere to...

## Describe the feature Presently, the `retryPolicy` method specifies how often the circuit breaker should try before failing; however, in certain cases (e.g. expected failures) it is not desirable to...

Is there an easy way to consider worker thread queue delay contributing to decide circuit breaker flow.