You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "Chesnay Schepler (JIRA)" <ji...@apache.org> on 2018/02/13 08:55:00 UTC

[jira] [Closed] (FLINK-8423) OperatorChain#pushToOperator catch block may fail with NPE

     [ https://issues.apache.org/jira/browse/FLINK-8423?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Chesnay Schepler closed FLINK-8423.
-----------------------------------
    Resolution: Fixed

master: 9e139a72ba45f2dd820bd3b9ecdf8428588666fd
1.4: bafb91eeb50a2821771a852919b2358fb43622f2

> OperatorChain#pushToOperator catch block may fail with NPE
> ----------------------------------------------------------
>
>                 Key: FLINK-8423
>                 URL: https://issues.apache.org/jira/browse/FLINK-8423
>             Project: Flink
>          Issue Type: Bug
>          Components: Streaming
>    Affects Versions: 1.4.0, 1.5.0
>            Reporter: Chesnay Schepler
>            Assignee: mingleizhang
>            Priority: Critical
>             Fix For: 1.5.0, 1.4.2
>
>
> {code}
> @Override
> protected <X> void pushToOperator(StreamRecord<X> record) {
> 	try {
> 		// we know that the given outputTag matches our OutputTag so the record
> 		// must be of the type that our operator (and Serializer) expects.
> 		@SuppressWarnings("unchecked")
> 		StreamRecord<T> castRecord = (StreamRecord<T>) record;
> 		numRecordsIn.inc();
> 		StreamRecord<T> copy = castRecord.copy(serializer.copy(castRecord.getValue()));
> 		operator.setKeyContextElement1(copy);
> 		operator.processElement(copy);
> 	} catch (ClassCastException e) {
> 		// Enrich error message
> 		ClassCastException replace = new ClassCastException(
> 			String.format(
> 				"%s. Failed to push OutputTag with id '%s' to operator. " +
> 				"This can occur when multiple OutputTags with different types " +
> 				"but identical names are being used.",
> 				e.getMessage(),
> 				outputTag.getId()));
> 		throw new ExceptionInChainedOperatorException(replace);
> 	} catch (Exception e) {
> 		throw new ExceptionInChainedOperatorException(e);
> 	}
> }
> {code}
> If outputTag is null (as is the case when no sideOutput was defined) the catch block will crash with a NullPointerException. This may happen if {{operator.processElement}} throws a ClassCastException.



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