What is the single most effective way to prevent or overcome the Slashdot effect?
Duplicate of
http://stackoverflow.com/questions/218264/how-can-i-detect-and-survive-being-slashdotted
|
|
What is the single most effective way to prevent or overcome the Slashdot effect?
|
||||||
|
closed as exact duplicate by Jeff Atwood♦ Dec 11 '08 at 7:51 |
|
|
This question has been already asked (more coherently) and answered (more comprehensively) here: http://stackoverflow.com/questions/218264/how-can-i-detect-and-survive-being-slashdotted |
||
|
|
|
|
I rewrite all URLs referred by several popular sites to be redirected through the coralCDN. An example for Apache:
|
||
|
|
|
|
No one has mentioned load balancing... haproxy, etc. Optimize, cache and load balance should survive almost anything. That being said, I'm not sure if stackoverflow is behind a load balancer ;) |
||
|
|
|
|
One word: Knipex |
||
|
|
|
|
.htaccess:
|
||
|
|
|
|
You want to do exactly the opposite of all this advice, right? :) |
||
|
|
|
|
There are a number of ways this can be done, or at least helped. Search Google for "slashdot-proof" and you'll find a number of them: etc. |
||
|
|
|
|
Don't appear on Slashdot, simple as :P |
||
|
|
|
|
Auto-redirect to Coral CDN, unless the request is from coral cdn. |
||
|
|
|
|
The basics:
The real answers:
|
||
|
|
|
|
Cache... hard. Record hits, and if a spike occurs, write out a completely static copy of the page being hit, then serve that. Cutting DB queries from 100 to 2 with a good caching system can survive a weak slashdotting, but having any DB queries at all will still result in a dead site under serious load that you aren't prepared for. |
||
|
|
|
|
Cache data. Unnecessary Trips to database to display something that gets displayed the same every load is what kills a server. Write its output to a file and use that instead. Most CMSs and frameworks have caching built in (but you have to turn it on) but rolling your own is not the most challenging task. |
||
|
|
|
|
I think we just failed that one grin |
||
|
|
|
|
Make sure all pages you build are static, no database, and don't use images. Actually, this place isn't doing THAT bad. |
||
|
|
|
|
The real question is "What is the single most effective way to be Slashdotted" If it's a real problem, redirect the traffic to my site. |
||||
|
|
|
There are a number of ways this can be done, or at least helped. Search Google for "slashdot-proof" and you'll find a number of them:
etc. |
||
|
|
|
|
Never become popular. While that will work, it's not real helpful. What you need infrastructure that can scale on very short. Something like Google Gears or Amazon's web services seems ideal for this, since even Slashdot's not going to overwhelm Google or Amazon. If you want your own server make sure your network provider isn't going to cut you off at any preset bandwidth limit. Buy enough hardware so that you're not straining just to carry your normal traffic without any slack to handle sudden spikes. |
||
|
|
|
|
I think the premise is wrong: you really really want to get slashdotted, otherwise you wouldn't have a web site in the first place. A much better question is how do you handle the extra traffic? And even that is really two questions:
|
|||
|
|
|
|
I know with Digg you can contact them and request they blacklist your site. You can probably do the same with Slashdot. |
||
|
|
|
|
If you mean never getting submitted on Slashdot, just write boring non-geek content. If you want to withstand the traffic coming in from a Slashdotting, tell us more about your web server... Apache? IIS? Other? |
||
|
|
|
|
Don't post about how Linux is awesome and easy to use and how Micro$$$oft is trying to suppress its usage. |
||
|
|
|
|
Don't post any content that appeals to the kind of person who reads Slashdot. |
||
|
|
|
|
|
||
|
|
|
Don't write content or provide a service that may appeal to geeks ;) |
||
|
|