Reputation: 1018
I have azure cloud service with 2 instance count small vm so any one could explain how it internally use instances?
Both instance running parallel or run second instance when first one would go down.
Thanks in advance
Upvotes: 0
Views: 1351
Reputation: 4456
Both are running in parallel and each cloud service has one URL with a load balancer and it forwards the traffic to both instances.
Upvotes: 1
Reputation: 72191
They are both running in parallel. You should read about it on the Azure Docs: https://learn.microsoft.com/en-us/azure/cloud-services/cloud-services-choose-me
edit: Cloud Services includes the load balancer in front of your web role instances automatically for external endpoints.
Upvotes: 1