cattaneo
cattaneo

Reputation: 63

How to update running kafka connector

I have kafka conenct running in Marathon container. If I want to update the connector plugin (jar) I have to upload the new one and then restart the Connect task.

Is it possible to do that without restarting/downtime?

Upvotes: 1

Views: 2083

Answers (1)

dawsaw
dawsaw

Reputation: 2313

The updated jar for the connector plugin needs to be added to the classpath and then the classloader for the worker needs to pick it up. The best way to do this currently is to take an outage as described here.

Depending on your connector, you might be able to do rolling upgrades, but the generic answer is that if you need to upgrade the connector plugin, you currently have to take an outage.

Upvotes: 1

Related Questions