Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Docker and service clusters

We are looking into using Docker plus either Mesos/Marathon or Kubernetes for hosting a cluster. However, the one issue that we haven't really seen any answers for is how to allow clustered services to connect to each other correctly. All of the ones that I have seen need to know about at least one other node before they can join the cluster. Some need to know about every node. However, in Kubernetes and Mesos, there's no way to know what those IP addresses are ahead of time.

So, are there any best practices for this? If it helps, some technologies we're looking into deploying as containers are ElasticSearch, ActiveMQ, and MongoDB. There may be others.

like image 901
blockcipher Avatar asked Oct 20 '22 19:10

blockcipher


1 Answers

However, the one issue that we haven't really seen any answers for is how to allow clustered services to connect to each other correctly.

I think you're talking about HA/replicated/sharded apps here.

At the moment, in kubernetes, you can accomplish this by making an api call listing all the "endpoints" of the service; that will tell you where your peers are running.

We'd eventually like to support the use case you describe in a more first-class manner.

I filed https://github.com/GoogleCloudPlatform/kubernetes/issues/3419 to maybe get something more standardized started here.

like image 117
lavalamp Avatar answered Oct 22 '22 20:10

lavalamp