Reputation: 711
We'd like to add instances to our Azure App Service plan to scale out. Everything we've got is stateless, apart from one app. Because of the way that app is used, if there is more than one instance of it things will quickly go crazy. We can work fix this eventually - we need to build in shared storage for its state - but at the moment we don't have enough the time.
Is there any way to scale out an app service plan, but indicate that particular apps should only ever be run on one host?
Upvotes: 0
Views: 1349
Reputation: 711
I'm assuming this isn't possible, however it turns out to be surprisingly easy to move an existing app between app service plans without having to recreate the configuration. I have gone down this route for now with an eye to fixing the clustering issue and moving the app back into the original app service plan later.
Upvotes: 1
Reputation: 4062
Did you think about using Cloud Services or Service Fabric? Cloud Services role model is what you are thinking of - you are able to scale only one component of the solution.
Upvotes: 0