information_schema.cdc_ingests view reports the live state of CDC table ingestion: one row per CDC table with an active ingest worker. The state comes from the workers themselves, so query the view on the engine where ingestion runs (the engine that executed ALTER CDC TABLE ... RESUME); on other engines the view is empty.
Columns in information_schema.cdc_ingests
Examples
Check ingestion health
Watch a backfill progress
Related
- CDC tables: lifecycle and monitoring.
- CREATE CDC TABLE: DDL reference, including
ALTER CDC TABLE RESUME | SUSPEND | CASCADE. information_schema.streams: stream metadata.