We have 3 servers, each of which are running RHEL 7.6. Each machine has 64G of RAM and 15 CPUs.
We are preparing to install a set of services --- kafka
, zookeeper
, schema registry
--- on all of the machines. Each service is based on a docker container.
We are planning to install docker on all machines, and each machine will have three docker containers.
Do docker containers have a negative impact when all containers are part of the OS disk? Should we add additional disks on each machine and allocate the docker containers on the addition disk? What is the best practice here?
--network=host
). At least that was the case when I was benchmarking Cassandra a couple of years ago. – muru Aug 16 '20 at 10:22--network=host
when you create the container. – Philip Couling Aug 16 '20 at 12:55