I have a Kafka Connect Cluster which has JDBC Source Connector plugin. I also have my own custom SMT which is a jar file to handle my use case using JDBC Source Connector plugin, for e.g my-custom-1.0.0.jar. For e.g the below. transformer type is my own java class MySMT
"transforms": "mytransformer",
"transforms.mytransformer.type": "com.my.MySMT"
I know that I can put the jar file in plugin.path. However is it possible to reload the connector plugins(JDBC Source Connector) to load my SMT jar, without restarting Kafka Connect cluster?
If not what could be the best practice to do so?
Thanks.