You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@apex.apache.org by "Vlad Rozov (JIRA)" <ji...@apache.org> on 2017/02/01 17:37:51 UTC

[jira] [Updated] (APEXCORE-504) Possible race condition in StreamingContainerAgent.getStreamCodec()

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

Vlad Rozov updated APEXCORE-504:
--------------------------------
    Affects Version/s: 3.5.0

> Possible race condition in StreamingContainerAgent.getStreamCodec()
> -------------------------------------------------------------------
>
>                 Key: APEXCORE-504
>                 URL: https://issues.apache.org/jira/browse/APEXCORE-504
>             Project: Apache Apex Core
>          Issue Type: Bug
>    Affects Versions: 3.3.0, 3.2.1, 3.4.0, 3.5.0
>            Reporter: Vlad Rozov
>            Assignee: Vlad Rozov
>
> StreamingContainerAgent.getStreamCodec() may be called from multiple RPC heartbeat processing threads for the same inputPortMeta (for an input port of a partitioned operator) that leads to a race condition in the following code:
> {noformat}
>       StreamCodec<?> codec = inputPortMeta.getValue(PortContext.STREAM_CODEC);
>       if (codec == null) {
>         // it cannot be this object that gets returned. Depending on this value is dangerous 
>         codec = inputPortMeta.getPortObject().getStreamCodec();
>         if (codec != null) {
>           // don't create codec multiple times - it will assign a new identifier
>           inputPortMeta.getAttributes().put(PortContext.STREAM_CODEC, codec);
>         }
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)