[
https://issues.apache.org/jira/browse/FLINK-21213?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17277074#comment-17277074
]
Yun Tang commented on FLINK-21213:
----------------------------------
[~AHeise] thanks for reminder, I think changing this warning to INFO level
should also be okay as Flink-1.8 would [not fail when async checkpoint failure
if task not
running|https://github.com/apache/flink/blob/0e8e8062bcc159e9ed2a0d4a0a61db4efcb01f2f/flink-streaming-java/src/main/java/org/apache/flink/streaming/runtime/tasks/StreamTask.java#L1156]
with code:
{code:java}
public void handleAsyncException(String message, Throwable exception) {
if (isRunning) {
// only fail if the task is still running
getEnvironment().failExternally(exception);
}
}
{code}
> e2e test fail with 'As task is already not running, no longer decline
> checkpoint'
> ---------------------------------------------------------------------------------
>
> Key: FLINK-21213
> URL: https://issues.apache.org/jira/browse/FLINK-21213
> Project: Flink
> Issue Type: Bug
> Components: Connectors / ElasticSearch
> Affects Versions: 1.13.0
> Reporter: Guowei Ma
> Assignee: Yun Tang
> Priority: Major
> Labels: test-stability
>
> [https://dev.azure.com/apache-flink/apache-flink/_build/results?buildId=12686&view=logs&j=68a897ab-3047-5660-245a-cce8f83859f6&t=d47e27f5-9721-5d5f-1cf3-62adbf3d115d]
>
> Checking for non-empty .out files...
> No non-empty .out files.
>
--
This message was sent by Atlassian Jira
(v8.3.4#803005)