集群部署操作 官网示例异常:
官方提供镜像直接使用的时候 发现配置集群模式无法执行。怀疑是缺少了某个初始化步骤,导致Zookeeper中的数据不正确,db中的库没有正确初始化创建。
如果出现了 offline任务无法执行
可以看下taskmanager日志 如果发现是缺失了 JobInfo table 可以自行创建
详细建表语句如下:
use __INTERNAL_DB;
create table JOB_INFO(id int, jobType string, state string, startTime timestamp,endTime timestamp,parameter string, cluster string, applicationId string, error
string, index(key = id ));
可以在nameserver配置中关闭 auto-failover 参数 并设置后续副本数 system_table_replica_num为0