Hi Simon,
Absolutely, yes. Before using Flink SQL, you need to initialize a
StreamExecutionEnvirnoment instance[1], then call
StreamExecutionEnvirnoment#setStateBackend
or StreamExecutionEnvirnoment#enableCheckpointing to specify the
information what you want.
[1]:
https://ci.apache.org/projects/
Hi Simon
If you are using table API, you could set state backend via environment like
`env.setStateBackend()`
If you just launch a cluster with SQL-client, you could configure state backend
and checkpoint options [1] within `flink-conf.yaml` before launching the
cluster .
[1]
https://ci.apac