[
https://issues.apache.org/jira/browse/FLINK-38113?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Aleksandr Iushmanov updated FLINK-38113:
----------------------------------------
Description:
Currently, all throwables are intercepted in Execution.deploy which can slow
down recovery on fatal errors.
Proposed improvement is to re throw fatal and OOM errors when occurred in
Execution.deploy().
https://github.com/apache/flink/blob/d4b2a721f06b8d1fef2c35ed3c20f5da8cffc240/flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/Execution.java#L673
```
ExceptionUtils.rethrowIfFatalErrorOrOOM(t);
```
was:
Currently, all throwables are intercepted in Execution.deploy which can slow
down recovery on fatal errors.
Proposed improvement is to re throw fatal and OOM errors when occurred in
Execution.deploy().
```
ExceptionUtils.rethrowIfFatalErrorOrOOM(t);
```
> Rethrow fatal or OOM errors from Execution.deploy
> -------------------------------------------------
>
> Key: FLINK-38113
> URL: https://issues.apache.org/jira/browse/FLINK-38113
> Project: Flink
> Issue Type: Improvement
> Components: Runtime / Task
> Reporter: Aleksandr Iushmanov
> Priority: Minor
>
> Currently, all throwables are intercepted in Execution.deploy which can slow
> down recovery on fatal errors.
>
> Proposed improvement is to re throw fatal and OOM errors when occurred in
> Execution.deploy().
> https://github.com/apache/flink/blob/d4b2a721f06b8d1fef2c35ed3c20f5da8cffc240/flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/Execution.java#L673
>
> ```
> ExceptionUtils.rethrowIfFatalErrorOrOOM(t);
> ```
--
This message was sent by Atlassian Jira
(v8.20.10#820010)