v.21.2New Features
Adds system.distributed_ddl_queue table for DDL worker queue monitoring
Adds a new table called system.distributed_ddl_queue that displays the queries in the DDL worker queue. #17656 (Bharat Nallan).Why it matters
This feature enables users to monitor and inspect the DDL queries waiting to be executed by the distributed DDL worker, improving transparency and troubleshooting for distributed schema changes.How to use it
Query the new system table usingSELECT * FROM system.distributed_ddl_queue to view the list of pending DDL queries in the queue.