Re: Executing detached data stream programs

2016-05-31 Thread Robert Metzger
this message in context: > http://apache-flink-user-mailing-list-archive.2336050.n4.nabble.com/Executing-detached-data-stream-programs-tp7268p7291.html > Sent from the Apache Flink User Mailing List archive. mailing list archive > at Nabble.com. >

Re: Executing detached data stream programs

2016-05-31 Thread jganoff
/Executing-detached-data-stream-programs-tp7268p7291.html Sent from the Apache Flink User Mailing List archive. mailing list archive at Nabble.com.

Re: Executing detached data stream programs

2016-05-30 Thread Robert Metzger
Hi Jordan, the ./bin/flink client's run command has a -d / --detached flag for detached execution. However, this doesn't allow you to programatically control the running job. What you probably have to do is using the RemoteEnvironment submitting the job in a blocking way using a separate thread.

Executing detached data stream programs

2016-05-30 Thread Jordan Ganoff
Hi, I plan to leveraging Flink data stream programs within a larger application. I’d like to be able to execute a data stream program in detached mode directly from the StreamExecutionEnvironment similar to how I can execute a program in blocking mode. I was expecting to find