How can I alter a connector with ksqldb once it has been already created?

Viewed 19

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?

1 Answers

Kafka Connect is stateless, so it's safe to run DROP + CREATE CONNECTOR with new config

Related