Re: Ask about Running Flink Jobs From Eclipse

2019-05-02 Thread David Anderson
When you run a Flink job from within an IDE, you end up running with a
LocalStreamEnvironment (rather than a remote cluster) that by default does
not provide the Web UI. If you want the Flink running in the IDE to have
its own dashboard, you can do this by adding this to your application:

Configuration config = new Configuration();
StreamExecutionEnvironment env =
StreamExecutionEnvironment.createLocalEnvironmentWithWebUI(config);

and by adding this dependency:


  org.apache.flink
  flink-runtime-web_2.11
  ${flink.version}


Regards,
David


Ask about Running Flink Jobs From Eclipse

2019-05-01 Thread Rad Rad
Hi, 

I can't see the running Flink job from Eclipse on Flink dashboard even I can
see the running Flink jobs if  I run jar file from Flink CLI or submit from
Flink dashboard. 

Regards. 



--
Sent from: http://apache-flink-user-mailing-list-archive.2336050.n4.nabble.com/