Reputation: 377
I have two Docker images: one that contains Kafka, the other containing Cassandra. I can run them successfully individually, but when trying to run them at the same time in the same machine, disk utilization goes to 100%, and Docker basically does not respond anymore (cannot run any Docker command, even docker ps
). CPU and memory utilization are ok (6% and 26%).
It happened when I ran in my local machine, as well as a cloud instance of Windows with higher specs -- the same behavior is observed.
Any idea why? When running those containers individually they do not seem to be disk intensive on their own.
Upvotes: 0
Views: 669
Reputation: 377
Mounting the data and log directories of both containers did the trick - I can now run both containers concurrently on Windows.
Upvotes: 1