conduktor.io ↗
← All errors
high SQL Server MySQL MariaDB Configuration

ConnectException: Error configuring an instance of KafkaSchemaHistory; check the logs for details

Root cause

Debezium 2.0 renamed the schema history properties: database.history.kafka.* became schema.history.internal.kafka.*. Connectors upgraded from 1.x still have the old property names, which are now silently ignored, causing a startup failure.

How to fix

  1. Rename database.history.kafka.bootstrap.servers → schema.history.internal.kafka.bootstrap.servers
  2. Rename database.history.kafka.topic → schema.history.internal.kafka.topic
  3. Remove any other database.history.* properties and replace with their schema.history.internal.* equivalents.
  4. Full property migration guide: debezium.io/documentation/reference/2.0/upgrade.html
Official Debezium documentation ↗