Reading up on micro services for a few days now I was wondering how do people go about automating the load balancing and scaling these things?
I have a specific scenario in mind what I would like to achieve but not sure if it's possible or maybe I'm thinking about it wrong. So here it goes...
Let's say I have a cluster of 3 CoreOS machines named A,B and C.
First thing I want is transparent deployment for which I can probably use fleet.
Then I would like to detect, when one of the services is under huge load and deploy another instance of it and have that one and the first one deployed, automatically load balanced in a way that would not disrupt other services that are using it (traffic goes through load balancer from now on).
Another way could be that I manually deploy another version of the services which then gets load balanced automatically and traffic router to the load balancer.
Then the last question, how is this all different to something like Akka cluster and how does development of those differ from micro services?