Github user static-max commented on the issue:
https://github.com/apache/flink/pull/3246
Looks great!
One note: In your example ExampleActionRequestFailureHandler you have to
unwrap the Exception, as it is typical looks like:
`RemoteTransportException[[Richard
Rider][127.0.0.1:9301][indices:data/write/bulk[s]]]; nested:
RemoteTransportException[[Richard
Rider][127.0.0.1:9301][indices:data/write/bulk[s][p]]]; nested:
EsRejectedExecutionException[rejected execution of
org.elasticsearch.transport.TransportService$4@e5c47a1 on
EsThreadPoolExecutor[bulk, queue capacity = 1,
org.elasticsearch.common.util.concurrent.EsThreadPoolExecutor@7e2d5cc5[Running,
pool size = 8, active threads = 8, queued tasks = 1, completed tasks = 119]]];`
In my implementation I use Apache commons:
`
ExceptionUtils.indexOfThrowable(throwable,
EsRejectedExecutionException.class) >= 0
`
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---