Benefits and Hindrances of Regular Server Reboots - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T07:21:46Z http://stackoverflow.com/feeds/question/410413 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/410413/benefits-and-hindrances-of-regular-server-reboots 1 Benefits and Hindrances of Regular Server Reboots Timur Fanshteyn 2009-01-04T03:54:09Z 2009-01-04T08:36:58Z <p>In the ears of working in multiple teams, I've met multiple infrastructure managers that installed a policy of weekly server reboots. As a developer, I was always against the policy - it seems that this is a hack to work around software bugs and hardware instabilities, instead of correcting them.</p> <p>What are the people's opinions, positive and negative points regarding the policy?</p> http://stackoverflow.com/questions/410413/benefits-and-hindrances-of-regular-server-reboots/410416#410416 0 Answer by alanj for Benefits and Hindrances of Regular Server Reboots alanj 2009-01-04T03:58:24Z 2009-01-04T03:58:24Z <p>Our servers are all Linux servers at work, and we don't ever reboot and haven't had any problems. I agree that it's a hack at best, and I also think it probably has something to do with the first response people used to always give when supporting Windows issues: "Have you rebooted your computer?"</p> <p>Now as to why it might be beneficial, you may have applications that get into a weird state or that have memory leaks that a restart would resolve.</p> <p>A big negative to me is that you've got to schedule weekly downtime for the servers. For some that's not an issue, and for others that's a huge issue.</p> http://stackoverflow.com/questions/410413/benefits-and-hindrances-of-regular-server-reboots/410422#410422 0 Answer by Oskar Duveborn for Benefits and Hindrances of Regular Server Reboots Oskar Duveborn 2009-01-04T04:03:41Z 2009-01-04T04:03:41Z <p>Obviously if the source of a problem cannot be fixed in a timely fashion, it has to be worked around. Scheduling a reboot to fix it is an easy way out to save the business if that works.</p> <p>Sure, it mentally hurts and shouldn't be needed and it would be best to work against such a solution, especially if one's in control of the problematic software or in a position to bitch-slap the producers for a fix or simply replace it. But if not..?</p> <p>I remember doing it for the servers in a Citrix farm, in the end they were rebooted every night with a half-complicated script waiting for users to log off, locking logins to specific servers and then rebooting the free ones. The reason was an old 16bit 4GL client application that we simply couldn't get rid of which tended to sever overall user responsiveness after a few days of uptime.</p> <p>I agree though that mostly it seems to be based on not being smart enough to figure out the cause and fixing it - not everyone is as well-versed in maintenance or motivated as we'd like.</p> http://stackoverflow.com/questions/410413/benefits-and-hindrances-of-regular-server-reboots/410427#410427 3 Answer by Dave Markle for Benefits and Hindrances of Regular Server Reboots Dave Markle 2009-01-04T04:06:30Z 2009-01-04T04:06:30Z <p>This is a foolish policy.</p> <p>Here's why:</p> <ul> <li><p>If you need to reboot a server weekly (and somehow it adds to your infrastructure's stability), you are covering up the real problem with a server or its software. A memory leak? A bad driver? The solution to these problems are to <em>fix</em> them, not cover them up with a lazy policy.</p></li> <li><p>Servers often get rebooted for updates, at least in the Windows world. Rebooting for critical kernel updates happens anyway.</p></li> <li><p>Database servers cache a lot of information in RAM. When you reboot your server, this cache gets empty and very cold. Assuming you have a typical usage pattern, a cold, empty cache will result in slow performance for users when they attempt their queries after a reboot. It <em>may</em> also increase the time needed to perform some types of maintenance like backups because the disk may need to be accessed more.</p></li> <li><p>Your servers go down! Your maintenance windows for backups and other things get shortened because your server is off for some nonzero period of time. You also may end up having to tell your users that you will have downtime, depending on your systems' architecture.</p></li> <li><p>Assuming you have some sort of notification system for alerting, you will have to configure it to ignore your downtime window. This can mask problems that happen around the time your server reboots, and adds to the amount of configuration you will need to do on your servers.</p></li> </ul> <p>That being said, reboots sometimes are beneficial as a last resort on resources that you don't necessarily have full control over (old vendor-written software, "black box" devices where explicitly prescribed by the vendor, etc...). But this should be handled on a case by case basis, and not with a naive blanket policy.</p> http://stackoverflow.com/questions/410413/benefits-and-hindrances-of-regular-server-reboots/410429#410429 0 Answer by stimms for Benefits and Hindrances of Regular Server Reboots stimms 2009-01-04T04:09:11Z 2009-01-04T04:09:11Z <p>It is a hack really but it might be the most efficient hack. It is an 80:20 type problem where you can solve 80% of the problem with 20% of the effort. If you can survive the downtime or the downtime costs you less than actually fixing the root cause then this is a good solution. I personally don't like it but that is only because it isn't a clean solution. </p> http://stackoverflow.com/questions/410413/benefits-and-hindrances-of-regular-server-reboots/410445#410445 1 Answer by Timur Fanshteyn for Benefits and Hindrances of Regular Server Reboots Timur Fanshteyn 2009-01-04T04:16:45Z 2009-01-04T04:16:45Z <p>Answering my own question: One of the benefits that I see from the policy is when it is applied to a server cluster, and the processes are failed over from one node to another. That way all nodes are constantly tested for the correct software install.</p> http://stackoverflow.com/questions/410413/benefits-and-hindrances-of-regular-server-reboots/410607#410607 0 Answer by warren for Benefits and Hindrances of Regular Server Reboots warren 2009-01-04T07:27:48Z 2009-01-04T07:27:48Z <p>Another possibility to consider is that in some environments, such as retail stores that are open 24 hours a day, a "store close" event so that servers can be updated, backed-up, etc.</p> <p>Even though the servers need to run "24x7", they'e really offline for at least a few minutes every day.</p> <p>That effectively makes a server reboot every day, even though the store is still operating when it happens.</p> http://stackoverflow.com/questions/410413/benefits-and-hindrances-of-regular-server-reboots/410673#410673 1 Answer by derobert for Benefits and Hindrances of Regular Server Reboots derobert 2009-01-04T08:36:58Z 2009-01-04T08:36:58Z <p>If you reboot your servers occasionally, you can be sure they will come back up. Though weekly sounds like a serious overkill, I have seen this problem on Linux machines with long uptimes.</p> <p>Someone didn't bother to set up a critical service to start automatically on boot. Or the order of services coming up is wrong. Or someone upgraded libraries, added/removed software, etc. and the executable no longer works (it was started up with the old libraries, and continued using them; now it gets a dynamic linker error). Or it turns out service A depends on service B and service B depends on service A (oops).</p> <p>At some point, when you <em>least</em> want to, you will take a reboot. The colo will drop the power on you; the server's power supplies will fail; someone will pull the cord/hit the reset button on the wrong server; etc. Now, when you can least afford downtime, your bloody server won't come back up.</p> <p>Just like software, system configurations need testing. How often you need to do this testing depends on how your boxes are administered.</p>