You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: database/clickhouse/README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,6 @@
20
20
* This mode splits the migration text into separately-executed statements by a semi-colon `;`. Thus `x-multi-statement` cannot be used when a statement in the migration contains a string with a semi-colon.
21
21
* The queries are not executed in any sort of transaction/batch, meaning you are responsible for fixing partial migrations.
22
22
* Using the default TinyLog table engine for the schema_versions table prevents backing up the table if using the [clickhouse-backup](https://github.com/AlexAkulov/clickhouse-backup) tool. If backing up the database with make sure the migrations are run with `x-migrations-table-engine=MergeTree`.
23
-
* Clickhouse cluster mode not officially supported, because not covered by tests right now, but you can try enable`schema_migrations` table replication:
24
-
* When `x-cluster-name` specified, `x-migrations-table-engine` also should be specify. Read about[replicated table engines](https://clickhouse.tech/docs/en/engines/table-engines/mergetree-family/replication/#table_engines-replication).
25
-
*`x-cluster-name`param only specify`schema_migrations` table replication by given cluster. You should still write your migrations so that the application tables are replicated within the cluster.
23
+
* Clickhouse cluster mode is not officially supported, since it's not tested right now, but you can try enabling`schema_migrations` table replication by specifying a `x-cluster-name`:
24
+
* When `x-cluster-name`is specified, `x-migrations-table-engine` also should be specified. See the docs regarding[replicated table engines](https://clickhouse.tech/docs/en/engines/table-engines/mergetree-family/replication/#table_engines-replication).
25
+
*When `x-cluster-name`is specified, only the`schema_migrations` table is replicated across the cluster. You still need to write your migrations so that the application tables are replicated within the cluster.
0 commit comments