spring-retry
spring-retry copied to clipboard
I want @Retryable to work, out of the box, with Reactor & RxJava types. Right now I am using custom annotation & aspect to achieve this. It would be nice...
Using @Retryable in @Service at method level which is going to retry 3 times by default if get any exception and @Recover responsible to sa error count in postgres database...
Note: the below function test is being called via a launch coroutine. The following code works: ``` @Retryable(value=[RetryException::class]) suspend fun test() { throw RetryException("blah") } ``` However, the moment I...
Would like to have a backOff policy that does not block the thread of execution. The use-case for this is roughly having a long-lived job that is comprised of many...
I would like to have the opportunity to listen an event before each retry (including the first one) would be happend in order to add some information to MDC (retry...
I would like to get `MethodInvocation` in `RetryPolicy`(probably via `RetryContext`) when available(invoked with `MethodInvocationRetryCallback`); so that, the policy can dynamically determine whether to retry based on the invoked method. Since...
In case of multiple `@Recover` method, apparently only one is considered, others are ignored. Example: ``` java @CircuitBreaker(openTimeout=1000, resetTimeout=2000, maxAttempts=2) public Response submit(Object o) { ... retry logic with retryTemplate...
Hello! Here is a draft for the async retry feature with rescheduling. The goal for now is to discuss: is it worth to implement it this way. (javadoc and formatting...
Because of issue #82, I add an option on `@Retryable` . It decides that if original exception ( the cause wrapped in `ExhaustedRetryException` ) will be thrown if `ExhaustedRetryException` is...
Before explaining the problem, I am very sorry that my English level may not be very good. If you have any questions or I do not clearly express, please remember...