This is an open question, my goal here is to learn from people who succeeded or failed deploying RabbitMQ clusters with Docker.
We're currently evaluating the need of such transition, as we want to align our deployments and infra management on docker. For now, the main advantage we see is to have a single way to deploy something on an environment, and use the same scheduling & monitoring tools.
I would be grateful if some of you could give their opinion or share experience on this.
Thx,
Antoine
As with anything like this, you should do performance testing to make sure it lives up to your "real world scenarios"
docker run -d \
--name rabbit0 \
--hostname x.ap-southeast-2.compute.amazonaws.com \
--restart=always \
-p 5672:5672 \
-p 8080:15672 \
-e RABBITMQ_USE_LONGNAME=true \
-e RABBITMQ_DEFAULT_USER=admin \
-e RABBITMQ_DEFAULT_PASS=x \
-v /mnt/data/rabbit0/:/var/lib/rabbitmq/ \
rabbitmq:3-management
Just a container on a VM is probably making more work that using your OS package manager to keep it up to date. But we use k8s for a lot of things at work (and our use is growing), that would be a great way to manage deploy and update imo
--
You received this message because you are subscribed to a topic in the Google Groups "rabbitmq-users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/rabbitmq-users/2g7pGAtZxuo/unsubscribe.
To unsubscribe from this group and all its topics, send an email to rabbitmq-user...@googlegroups.com.
To post to this group, send email to rabbitm...@googlegroups.com.