Reputation: 1558
Once I have a connector created by using the ksqldb expression CREATE SOURCE CONNECTOR...
, how can I make changes with ksqldb? Is there a way to alter the initial definition? Something like ALTER CONNECTOR...
? If not, what is the proper way to handle changes in connectors with ksqldb?
Upvotes: 0
Views: 222
Reputation: 191874
Kafka Connect is stateless, so it's safe to run DROP + CREATE CONNECTOR with new config
Upvotes: 1