mahesh sharma
mahesh sharma

Reputation: 1018

Multiple Instances working in azure cloud service

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

Answers (2)

Haitham Shaddad
Haitham Shaddad

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

4c74356b41
4c74356b41

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

Related Questions