ClickHouse/docs/en/sql-reference/distributed-ddl.md
2024-02-13 02:10:41 +01:00

24 lines
1.0 KiB
Markdown

---
slug: /en/sql-reference/distributed-ddl
sidebar_position: 3
sidebar_label: Distributed DDL
---
# Distributed DDL Queries (ON CLUSTER Clause)
By default, the `CREATE`, `DROP`, `ALTER`, and `RENAME` queries affect only the current server where they are executed. In a cluster setup, it is possible to run such queries in a distributed manner with the `ON CLUSTER` clause.
For example, the following query creates the `all_hits` `Distributed` table on each host in `cluster`:
``` sql
CREATE TABLE IF NOT EXISTS all_hits ON CLUSTER cluster (p Date, i Int32) ENGINE = Distributed(cluster, default, hits)
```
In order to run these queries correctly, each host must have the same cluster definition (to simplify syncing configs, you can use substitutions from ZooKeeper). They must also connect to the ZooKeeper servers.
The local version of the query will eventually be executed on each host in the cluster, even if some hosts are currently not available.
:::important
The order for executing queries within a single host is guaranteed.
:::