When using DataStream API, I can run the Flink loc...
# random
t
When using DataStream API, I can run the Flink locally with
StreamExecutionEnvironment._createLocalEnvironmentWithWebUI
._ Is it possible with Table API as well? (for sql queries in Scala).
I guess I just use:
Copy code
val localEnv = StreamExecutionEnvironment.createLocalEnvironmentWithWebUI()
    val tableEnv = StreamTableEnvironment.create(localEnv)
It seems like it needs
flink-table-planner
Why is that?
m
Flink Table needs a planner
I do assume that you can use the loader, not the full planner
Ah wait the Flink Scala artifacts aren’t included by default, I forgot about that