You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "Stephan Ewen (JIRA)" <ji...@apache.org> on 2015/08/13 14:30:46 UTC

[jira] [Created] (FLINK-2514) Local and Remote environment behave differently when re-triggering execution.

Stephan Ewen created FLINK-2514:
-----------------------------------

             Summary: Local and Remote environment behave differently when re-triggering execution.
                 Key: FLINK-2514
                 URL: https://issues.apache.org/jira/browse/FLINK-2514
             Project: Flink
          Issue Type: Bug
          Components: Streaming
    Affects Versions: 0.10
            Reporter: Stephan Ewen


The following code behaves differently on the {{LocalStreamEnvironment}} and the {{RemoteStreamEnvironment}}.

{code}
StreamExecutionEnvironment env = ...;

env.addSource(someSource).addSink(someSink);
env.execute();

env.addSource(anotherSource).addSink(anotherSink);
env.execute();
{code}

Locally, only the second source/sink pair is executed.
Remotely, both are re-executed.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)