Eli
Eli

Reputation: 2608

Add a table to a debezium connector

I have a Debezium connector, connecting to SQL Server, with one table in the table.include.list configuration parameter. I wanted to add another table, which I've added to the table.include.list parameter, though my connector isn't picking it up.

My previous table.include.list looked like this:
"table.include.list":"dbo.Users"

My current table.include.list looks like this:
"table.include.list":"dbo.Users,dbo.charlie"

I restarted Kafka, restarted the connector in Debezium, though when I look at the connector status in bash, I still see the old table.include.list value. Is there something else which needs to be done to get the connector to refresh what it has in the configuration file?

Debezium version: 1.2.5.Final
Kafka version: 2.7.0

Upvotes: 0

Views: 569

Answers (1)

Niranjan
Niranjan

Reputation: 157

restart connector will not get latest config, you have to re-deploy(post) the connector with new config.

Upvotes: 0

Related Questions