这个是个已知bug,需要修改数据库里面的节点状态,本周的24.0.2发版可以解决这个问题。
修改节点的状态方式如下:
登录到自己的数据库:
update CLUSTER_NODES set status = 'Running' where cluster_id = <你的clusterId,int类型>;
update JOBS set status = 'Success' where cluster_id = <你的clusterId,int类型>;
update clusters set status = 'Running' where id = <你的clusterId,int类型>;
PS: cluster_id可以在浏览器界面上面看到