You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I want to add persistent volumes to the entire cluster with 3 broker nodes as below.
docker-compose up -d
docker-compose scale kafka=3
If I simply add volume definition as below to the docker compose yml file will the volume be shared by all brokers without conflict or do i need to up brokers independently using docker-compose-single-broker.yml with different volume definitions?
If I want to scale Kafka docker volumes? how can I do that, I purposely don't want to use multiple broker definitions in my docker-compose file. I would like to scale like docker-compose up --scale kafka=3
Hi,
I want to add persistent volumes to the entire cluster with 3 broker nodes as below.
docker-compose up -d
docker-compose scale kafka=3
If I simply add volume definition as below to the docker compose yml file will the volume be shared by all brokers without conflict or do i need to up brokers independently using docker-compose-single-broker.yml with different volume definitions?
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /home/srv/kafka:/kafka/kafka-logs-1
Thanks
Isuru
The text was updated successfully, but these errors were encountered: