Hi,
Just a basic question, I am using flink via eclipse but when I execute my jobs, I can't access it via the web dashboard. It's basically a maven project and so I've added all the flink jars in my pom file and I'm executing my code by getting the execution environment as follows:
ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment();
env.setParallelism(8);
***code***
env.execute();
Although the job runs successfully, I can't access the info via the web dashboard. What part am I doing wrong?
I also tried installing flink and starting the start-local.sh script. This starts the web dashboard but my flink jobs using eclipse are not getting registered to this web interface. Is there any workaround?
Thanks,
Ritesh