v.25.11Improvement
Add a possibility to set a list
Added a possibility to set a list of tables to flush in command SYSTEM FLUSH ASYNC INSERT QUEUE. #89915 (Sema Checherinda).Why it matters
This feature allows users to selectively flush the asynchronous insert queues for specific tables, improving control over data ingestion and system resource management. It addresses the need to flush data for targeted tables without affecting others, enhancing operational flexibility and efficiency.How to use it
Use theSYSTEM FLUSH ASYNC INSERT QUEUE command followed by a list of table names to flush their insert queues asynchronously. For example:SYSTEM FLUSH ASYNC INSERT QUEUE [db1.table1, db2.table2] ;