|
Currently error handlers can only decide to abort or continue the current flush cycle in case of a failure. Another means of dealing with failures is to retry the failed operation.
One could make the retry strategy to use configurable:
-
Retry n times
-
Exponential back-off with n steps and factor m
-
...
onFailedGridDialectOperation() would return RETRY, letting the configured retry strategy take over.
|