Server farm Shutdown - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T19:01:45Z http://stackoverflow.com/feeds/question/285581 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/285581/server-farm-shutdown 2 Server farm Shutdown BCS 2008-11-12T22:17:24Z 2008-11-13T01:45:03Z <p>How do large server farms handle gracefully shutting down all or part of the farm? I'm thinking of planed and unplanned cases like:</p> <ul> <li>"We need to shutdown Rack 42" </li> <li>"We need to do work on the power feeds to the whole block" </li> <li>"Blackout! UPS's running out of Juice! Aahh!"</li> <li>"AC is down, air temp is 125F and climbing"</li> </ul> <p>The issues I'm interested in are how people handle sequencing, and kicking the whole thing off. Also it occurs to me that this could easily get mixed with bringing up and down services and with the software up grade system.</p> <p>(At this point I'm more asking out of curiosity than anything.)</p> http://stackoverflow.com/questions/285581/server-farm-shutdown/285653#285653 0 Answer by Adam Liss for Server farm Shutdown Adam Liss 2008-11-12T22:38:37Z 2008-11-12T22:38:37Z <p>One method is to mirror the live machines on temporary hot-swaps and, assuming access is via network, cut over by reconfiguring the router to divert traffic to the mirrors. This process can be automated for unplanned outages.</p> <p>For planned maintenance, some simply notify their users that the system will be unavailable during a certain window.</p> <p>Redundant power supplies and gas-powered generators handle most power-related problems, again with automated failover.</p> http://stackoverflow.com/questions/285581/server-farm-shutdown/285737#285737 1 Answer by Tim Howland for Server farm Shutdown Tim Howland 2008-11-12T23:06:41Z 2008-11-12T23:06:41Z <p>Computers can use a lot more power coming back online than they do running, since they have to get all of the platters and fans spinning, typically have heavy CPU activity starting all of the applications, and so on. Most shops will have a set sequence that staggers the startups, so they don't max out the circuit and have to start all over again. This is also important if you have a bunch of applications that expect to talk to a database, or a bunch of web servers that need to talk to the app servers. You usually start from the bottom up, and stagger the startups by 30 seconds to a minute, depending on how many boxes are on your circuit.</p> http://stackoverflow.com/questions/285581/server-farm-shutdown/286040#286040 0 Answer by Adam Liss for Server farm Shutdown Adam Liss 2008-11-13T01:45:03Z 2008-11-13T01:45:03Z <p>Ah, now I understand your question more clearly.</p> <p>Products such as the iBootBar from <a href="http://www.dataprobe.com/" rel="nofollow">dataprobe</a> allow you to monitor and manage the power to remote devices. An intelligent system can monitor the current draw of each device to verify that it's functioning within nominal limits. If not, it can take the equipment offline and bring a spare online to replace it, watching for the initial surge and waiting for power to stabilize before switching the next device on.</p>