The MySQL/MariaDB binlog file recorded in the connector's offset has been purged before the connector could read it. Binlog retention is controlled by binlog_expire_logs_seconds (MySQL 8.0+) or expire_logs_days (MySQL 5.7). Connectors that are stopped for more than the retention window will always hit this.
SHOW BINARY LOGS;SET GLOBAL binlog_expire_logs_seconds = 604800; (7 days)SET GLOBAL expire_logs_days = 7;