Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change cloud service region

Tags:

azure

Is it possible to change a Cloud Service region (i.e: move from East US to West US)?

I don't see an option from the management console to do it or maybe I did not dig deep enough.

I would like to do it since I have my database in one region different to my application's and I guess it could decrease performance.

Thanks,

like image 823
Jportelas Avatar asked Jul 09 '13 20:07

Jportelas


1 Answers

No, there is no way to change Cloud Service region. You have to create new Cloud Service in desired region and redeploy there. It becomes more complicated when you also have Storage accounts with data which you have to move. For this you could probably use Red Gate's Cloud Services or other mature product.

And you are right about Database and performance. It is not only performance, but also costs savings. When your Database is in different geographic region all data that comes out of your database is basically Outbound (Egress) traffic, which is being charged per GB!

like image 127
astaykov Avatar answered Sep 17 '22 23:09

astaykov