v.1.1.54388New Feature
New SYSTEM Queries for Replicated Tables
Several newSYSTEMqueries for replicated tables (RESTART REPLICAS,SYNC REPLICA,[STOP|START] [MERGES|FETCHES|SENDS REPLICATED|REPLICATION QUEUES]).
Why it matters
These new commands provide enhanced control over the replication process in ClickHouse. They allow users to manually synchronize replicas, restart replication processes, and manage background operations such as merges and fetches. This helps in maintaining data consistency and resolving replication issues without downtime.How to use it
Users can execute the new commands in the ClickHouse client or any query interface using theSYSTEM keyword, for example:SYSTEM RESTART REPLICAS
SYSTEM SYNC REPLICA
SYSTEM STOP MERGES
SYSTEM START FETCHESThese commands target replicated tables to control replication behavior as needed.