Flink学习笔记——Table和SQL API
Table API官方文档参考
https://nightlies.apache.org/flink/flink-docs-master/docs/dev/table/tableapi/
RowKind
自定义修改debezium-json format
Flink 1.11.1:flink CDC Debezium自定义修改debezium-json格式
如果要在flink sql中使用checkpoint,可以使用set命令,如下
SET 'state.checkpoints.dir' = 'hdfs:///bar/foo/'; SET 'execution.checkpointing.mode' = 'EXACTLY_ONCE'; SET 'execution.checkpointing.interval' = '30min'; SET 'execution.checkpointing.min-pause' = '20min'; SET 'execution.checkpointing.max-concurrent-checkpoints' = '1'; SET 'execution.checkpointing.prefer-checkpoint-for-recovery' = 'true';
本文只发表于博客园和tonglin0325的博客,作者:tonglin0325,转载请注明原文链接:https://www.cnblogs.com/tonglin0325/p/5274638.html