v.20.11New Feature
Add system.replicated_fetches Table for Background Fetch Monitoring
Add system.replicated_fetches table which shows currently running background fetches. #16428 (alesapin).Why it matters
This feature provides visibility into background fetches occurring in replicated tables, allowing users and administrators to monitor the data synchronization process and diagnose potential delays or issues with replication.How to use it
Query the new system table using SQL, for example:SELECT * FROM system.replicated_fetches;This will show all ongoing background fetches on the server.