Ilyas
Ilyas

Reputation: 759

Azure website publishing to multiple instances

I have an azure web site with several instances.

When I need to publish, how can I be sure that azure is publishing to each of the instances. When I publish I am doing it from Visual Studio...

When I do publish, does each instance get updated in parallel or sequentially?

Thanks

Upvotes: 2

Views: 136

Answers (1)

Zain Rizvi
Zain Rizvi

Reputation: 24656

They're all updated in parallel.

A bit more detail: Your site is actually stored on blob storage, and all instances read the same blob storage location to run your site. This means that when the contents of the blob are changed then all of your sites reflect the changes immediately.

Upvotes: 3

Related Questions