When managing clusters of ClickHouse nodes, it's typical to run migrations with ON CLUSTER <name> to apply any changes.
https://clickhouse.com/docs/sql-reference/distributed-ddl
This would be useful in chkit aswell. This means chkit would only run this query on 1 node, and clickhouse will handle the propagation of those changes to the cluster.
When managing clusters of ClickHouse nodes, it's typical to run migrations with
ON CLUSTER <name>to apply any changes.https://clickhouse.com/docs/sql-reference/distributed-ddl
This would be useful in chkit aswell. This means chkit would only run this query on 1 node, and clickhouse will handle the propagation of those changes to the cluster.