Re: Jupyter PyFlink Web UI

2021-06-09 Thread Jeff Zhang
BTW, you can also send email to zeppelin user maillist to join zeppelin slack channel to discuss more details. http://zeppelin.apache.org/community.html Jeff Zhang 于2021年6月9日周三 下午6:34写道: > Hi Maciek, > > You can try zeppelin which support pyflink and display flink job url > inline. > > http://z

Re: Jupyter PyFlink Web UI

2021-06-09 Thread Jeff Zhang
Hi Maciek, You can try zeppelin which support pyflink and display flink job url inline. http://zeppelin.apache.org/docs/0.9.0/interpreter/flink.html Maciej Bryński 于2021年6月9日周三 下午1:53写道: > Nope. > I found the following solution. > > conf = Configuration() > env = > StreamExecutionEnvironment(

Re: Jupyter PyFlink Web UI

2021-06-08 Thread Maciej Bryński
Nope. I found the following solution. conf = Configuration() env = StreamExecutionEnvironment(get_gateway().jvm.org.apache.flink.streaming.api.environment.StreamExecutionEnvironment.createLocalEnvironmentWithWebUI(conf._j_configuration)) env_settings = EnvironmentSettings.new_instance().in_strea

Re: Jupyter PyFlink Web UI

2021-06-08 Thread Dian Fu
Hi Macike, You could try if the following works: ``` table_env.get_config().get_configuration().set_string("rest.bind-port", "xxx") ``` Regards, Dian > 2021年6月8日 下午8:26,maverick 写道: > > Hi, > I've got a question. I'm running PyFlink code from Jupyter Notebook starting > TableEnvironment with

Jupyter PyFlink Web UI

2021-06-08 Thread maverick
Hi, I've got a question. I'm running PyFlink code from Jupyter Notebook starting TableEnvironment with following code: env_settings = EnvironmentSettings.new_instance().in_streaming_mode().use_blink_planner().build() table_env = TableEnvironment.create(env_settings) How can I enable Web UI in thi