I have 2 appservers and 1 Db server running in Azure. I have created a CloudService and put the app servers in that. I have created a Availablity set for app server and added the appservers in it.
Now comes the issue, I cannot add Db server in the same availability set, because they are not in the same cloud service as appservers. So Azure may reboot the dbserver anytime and cause an outage. How to solve this.
- Do I need add one more DB server and replicate the DB and add them to a new availability set?
- If 1 is yes, then I should make my application smarter when the primary Db server goes down?
Any betterways?