Re: Web UI not working with createLocalEnvironmentWithWebUI()

2023-04-16 Thread Kiran Kumar Kathe
Problem is with dependencies in pom.xml file , adding required dependencies solved my problem. On Mon, 17 Apr 2023, 8:06 am Weihua Hu, wrote: > Hi, Mark > > Flink will load ui service automatically if the flink-runtime-web jars in > classpath. > > So, adding the dependency of flink-runtime-web

Re: Web UI not working with createLocalEnvironmentWithWebUI()

2023-04-16 Thread Weihua Hu
Hi, Mark Flink will load ui service automatically if the flink-runtime-web jars in classpath. So, adding the dependency of flink-runtime-web is the right way. You need to reload the maven project after the pod.xml changed. And check whether the classpath includes flink-runtime-web classes or

Web UI not working with createLocalEnvironmentWithWebUI()

2023-04-16 Thread Mark Petronic
I am learning Flink for a new project. I am trying to understand the development/debug environment to help me step through my code to better learn Flink. I am using the Intellij community edition for my IDE and Flink 1.17.0. I am using this simple Flink app to demonstrate my issue.