My objective is it deploy Kafka connect connectors ( s3 sink) using containers, so it's important to know the details about how workers may or may not communicate directly with each others.
From what I read, I cannot be sure if workers will have a direct communication between each others ( like one worker talking to another one using REST, or whatever).
i thought at the beginning that when I'm updating a configuration using REST, the config changes are propagated using the connect_config internal topic and/or by using Kafka consumer coordinator..
But from what I read :
rest.advertised.host.name
If this is set, this is the hostname that will be given out to other workers to connect to.
Any details on how and why ( if they do) workers communicate each others ?