Add user to contributors list

2025-06-15 Thread Mahesh Sambharam
Hi, This is Mahesh, please add me to Kafka contributors list. Thanks, Mahesh

RE: Kafka Connect on Kubernetes: Statefulset vs Deployment

2025-06-15 Thread Prateek Kohli
Thanks a lot @Vignesh & @Raphael Mazelier for your detailed replies. Even I thought the same, but I read this and now I’m a bit confused. "In a Kafka Connect cluster, each worker node is identified by its advertised address. This identity is crucial because connectors and tasks are assigned to

Re: Kafka Connect on Kubernetes: Statefulset vs Deployment

2025-06-15 Thread Vignesh
Kafka Connect is a stateless component by design. It relies on external Kafka topics to persist its state, including connector configurations, offsets, and status updates. In a distributed Kafka Connect cluster, this state is managed through the following configurable topics: - config.stora

Re: Kafka Connect on Kubernetes: Statefulset vs Deployment

2025-06-15 Thread Raphael Mazelier
I created the docker+kube stuff for our kafka-connect at my current job. I use standard deployment. kafka-connect doesn't care of hostname or IP. The sole trick is to inject the connector configuration at runtime (if you want). -- Raph On 14/06/2025 2:12 pm, Prateek Kohli wrote: > Hi All, > >