vote up -2 vote down star

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

flag

52% accept rate
Hah! your question ended up posted in the /. discussion... – Shog9 Sep 17 '08 at 0:43
Hmm: actually Jeff, that question is a duplicate of this one. – Joel Coehoorn Dec 11 '08 at 14:20
Wow, the other question is a duplicate of this one. The QuestionID shows that. – George Stocker Dec 11 '08 at 15:06

closed as exact duplicate by Jeff Atwood Dec 11 '08 at 7:51

24 Answers

vote up 1 vote down

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

link|flag
vote up 1 vote down

I rewrite all URLs referred by several popular sites to be redirected through the coralCDN.

An example for Apache:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /

RewriteCond %{HTTP_USER_AGENT} !^Googlebot
RewriteCond %{HTTP_USER_AGENT} !^CoralWebPrx
RewriteCond %{QUERY_STRING} !(^|&)coral-no-serve$
RewriteCond %{HTTP_REFERER} ^http://([^/]+\.)?digg\.com [OR]
RewriteCond %{HTTP_REFERER} ^http://([^/]+\.)?slashdot\.org [OR]
RewriteCond %{HTTP_REFERER} ^http://([^/]+\.)?slashdot\.com [OR]
RewriteCond %{HTTP_REFERER} ^http://([^/]+\.)?fark\.com [OR]
RewriteCond %{HTTP_REFERER} ^http://([^/]+\.)?somethingawful\.com [OR]
RewriteCond %{HTTP_REFERER} ^http://([^/]+\.)?kuro5hin\.org [OR]
RewriteCond %{HTTP_REFERER} ^http://([^/]+\.)?engadget\.com [OR]
RewriteCond %{HTTP_REFERER} ^http://([^/]+\.)?boingboing\.net [OR]
RewriteCond %{HTTP_REFERER} ^http://([^/]+\.)?del\.icio\.us [OR]
RewriteCond %{HTTP_REFERER} ^http://([^/]+\.)?delicious\.com
RewriteRule ^(.*)?$ http://example.com.nyud.net/$1 [R,L]
</IfModule>
link|flag
vote up 0 vote down

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 ;)

link|flag
vote up 0 vote down

One word: Knipex

link|flag
vote up 0 vote down

.htaccess:

RewriteEngine on
RewriteCond %{HTTP_REFERER} slashdot\.org [NC]
RewriteRule .* - [F]
link|flag
vote up 0 vote down

You want to do exactly the opposite of all this advice, right? :)

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

Don't appear on Slashdot, simple as :P

link|flag
vote up 0 vote down

Auto-redirect to Coral CDN, unless the request is from coral cdn.

link|flag
vote up 6 vote down

The basics:

  1. Don't try to host high-volume sites on Windows unless you are a true Windows guru. It can be done, but it's a time versus cost issue.
  2. Use static content (i.e., no database queries) everywhere you can.
  3. Learn about cache-control headers and use them properly for images and other static assets.
  4. At the very least, use Apache, but if you can, use lighttpd or another high-performance webserver.

The real answers:

  1. Really know your SQL, and spend time analyzing slow queries. Most page loads shouldn't require more than a second of straight queries.
  2. Determine where your load really is. If it's a media-heavy site, consider hosting content elsewhere (like Akamai, or some other service). If it's a database-heavy site, consider replication.
  3. Know what kind of replication will work for you. If you have a read-heavy site, standard MySQL master/slave replication should be fine. If you have a lot of writes going on, you'll need some kind of multi-master setup, like MySQL Cluster (or investigate 'cascading' or 'waterfall' replication).
link|flag
vote up 1 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 1 vote down

I think we just failed that one grin

link|flag
vote up 0 vote down

Make sure all pages you build are static, no database, and don't use images.

Actually, this place isn't doing THAT bad.

link|flag
vote up 3 vote down

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.

link|flag
Out of votes today, or I'd give you one because you said pretty much the same thing I did, only funnier. – Joel Coehoorn Sep 16 '08 at 20:34
Same here, I'm gonna come back tomorrow and upvote you :) – Teifion Sep 16 '08 at 20:48
vote up 1 vote down

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:

  • Slashdot-proof your server with FreeCache - Boing Boing
  • Simple Thoughts Blog is now Slashdot Proof

etc.

link|flag
vote up 0 vote down

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.

link|flag
vote up 4 vote down

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:

  1. How do you technically manage the additional server load?
  2. How do you greet the new users, so that you can hopefully get some of them to stick around??
link|flag
vote up 0 vote down

I know with Digg you can contact them and request they blacklist your site. You can probably do the same with Slashdot.

link|flag
vote up 3 vote down

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?

link|flag
vote up 0 vote down

Don't post about how Linux is awesome and easy to use and how Micro$$$oft is trying to suppress its usage.

link|flag
vote up 4 vote down

Don't post any content that appeals to the kind of person who reads Slashdot.

link|flag
vote up 13 vote down
  1. Don't give anyone the URL
  2. Build something so useless that if rule 1 gets broken nobody will come anyway.
link|flag
I'm so out of votes for today, but +1 anyway – DevelopingChris Sep 16 '08 at 21:01
vote up 3 vote down

Don't write content or provide a service that may appeal to geeks ;)

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.