Question

Is it possible to provide dynamic scaling in sharepoint farm? I mean is it possible to dynamically add/remove WFE VM's when load is increasing and disabling them when it's going down?

If it can't be done dynamically, is it possible to add like 6 WFE, and then turn 3 of them off and when load is increasing, enable those 3 which are down? How about synchronization of web applications and static resources?

Was it helpful?

Solution

You could script the creation of a new SharePoint VM and the automatic joining to the farm as a WFE. You would then need to somehow let your load balancer know about this new node. While technically possible, this would be pretty complex and very fragile.

Your second idea sounds a bit easier. Just because a server is configured as a WFE doesn't mean you need to send traffic to it. You could have these extra servers waiting as hot standbys. The trick would again be telling your load balancer to start using them when the need arises. Assuming your customizations are deployed using solutions, by virtue of being part of the farm these extra servers will be already be synchronized when they become accessible.

The problem with all of this is you still have a bottle neck at your database layer -- adding WFEs will allow you to serve up more requests, but these servers still pull all their content from your SQL Server. You will need to ensure that your SQL Server can handle this increased load or your entire farm will melt.

Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top