Re: Problem when testing table API in local

2023-09-10 Thread liu ron
Hi, Why don't you add the flink-table-planner module as dependency directly for test. Best, Ron Oscar Perez via user 于2023年9月8日周五 21:44写道: > quick update, > > after adding flink-clients it *worked *the first time I ran the test but > then the second time got the same error. Looks like a race

Re: Problem when testing table API in local

2023-09-08 Thread Oscar Perez via user
quick update, after adding flink-clients it *worked *the first time I ran the test but then the second time got the same error. Looks like a race condition or transient error.? Would love to get some hints on how to troubleshoot this one, if possible. Thanks in advance! Oscar On Fri, 8 Sept 2023

Re: Problem when testing table API in local

2023-09-08 Thread Oscar Perez via user
Hei, Tried adding flink-cients like this: still same error :( implementation "org.apache.flink:flink-clients:${flinkVersion}" On Fri, 8 Sept 2023 at 16:30, Alexey Novakov wrote: > Hi, > > You would need to add the flink-clients module when running in local mode. > The *flink-clients* dependenc

Re: Problem when testing table API in local

2023-09-08 Thread Alexey Novakov via user
Hi, You would need to add the flink-clients module when running in local mode. The *flink-clients* dependency is only necessary to invoke the Flink program locally (for example to run it standalone for testing and debugging). Best regards, Alexey On Fri, Sep 8, 2023 at 3:17 PM Oscar Perez via us