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).
Added the system.replicated_fetches table to display currently running background fetch operations in replicated tables.

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.