SQL Server Agent must be running for CDC to advance LSNs. If the Agent is stopped, CDC scan jobs cannot run and Debezium finds no maximum LSN — this is fatal. On low-activity databases, no max LSN may also appear transiently if no CDC records exist yet; in that case, Debezium retries and it is not a failure.
SELECT dss.status, dss.status_desc FROM sys.dm_server_services dss WHERE dss.servicename LIKE 'SQL Server Agent%';SELECT * FROM cdc.lsn_time_mapping ORDER BY tran_begin_time DESC;