Blue Clouds
Blue Clouds

Reputation: 8161

Azure VM Availibilty Zone and Load Balancing

I have single instance VM. I plan to add it to Availability Zones. If I do that, there we will be copy of the same machine in multiple Zone. My understanding is that Azure will keep the VMs in Sync. Is this true? Also isn't it mandatory to add a load balancer then? Or will Azure take care of that as well ?

Upvotes: 1

Views: 123

Answers (1)

Daniel Argüelles
Daniel Argüelles

Reputation: 2349

Look at this learning topic Build a scalable application with virtual machine scale sets by Microsoft. As far as I understand, VMs are sync in terms of administration (network configuration, disks, state...) but what you have inside must be configured manually. What Microsoft propose is to use a script.

On the other hand, if your VMs is waiting for requests, you need a load balancer in charge of sending request to different VMs

Upvotes: 2

Related Questions