You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "ASF GitHub Bot (JIRA)" <ji...@apache.org> on 2018/07/18 06:03:00 UTC

[jira] [Commented] (FLINK-6206) Log task state transitions as warn/error for FAILURE scenarios

    [ https://issues.apache.org/jira/browse/FLINK-6206?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16547433#comment-16547433 ] 

ASF GitHub Bot commented on FLINK-6206:
---------------------------------------

Github user tygrash closed the pull request at:

    https://github.com/apache/flink/pull/5235


> Log task state transitions as warn/error for FAILURE scenarios
> --------------------------------------------------------------
>
>                 Key: FLINK-6206
>                 URL: https://issues.apache.org/jira/browse/FLINK-6206
>             Project: Flink
>          Issue Type: Improvement
>          Components: Core
>    Affects Versions: 1.2.0
>            Reporter: Dan Bress
>            Priority: Critical
>              Labels: pull-request-available
>
> If a task fails due to an exception, I would like that to be logged at a warn or an error level.  currently its info
> {code}
> private boolean transitionState(ExecutionState currentState, ExecutionState newState, Throwable cause) {
> 		if (STATE_UPDATER.compareAndSet(this, currentState, newState)) {
> 			if (cause == null) {
> 				LOG.info("{} ({}) switched from {} to {}.", taskNameWithSubtask, executionId, currentState, newState);
> 			} else {
> 				LOG.info("{} ({}) switched from {} to {}.", taskNameWithSubtask, executionId, currentState, newState, cause);
> 			}
> 			return true;
> 		} else {
> 			return false;
> 		}
> 	}
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)