Slashdot Log In
Slashdot's Setup, Part 1- Hardware
from the lookit-all-them-wires-in-there dept.
CT:Most of the following was written by Uriah Welcome, famed sysadmin extraordinaire, responsible for our corporate intertubes. He Writes...
Many of you have asked about the infrastructure that supports your favorite time sink... err news site. The question even reached the top ten questions to ask CmdrTaco. So I've been asked to share our secrets on how we keep the site up and running, as well as a look towards the future of Slashdot's infrastructure. Please keep in mind that this infrastructure not only runs Slashdot, but also all the other sites owned by SourceForge, Inc.: SourceForge.net, Thinkgeek.com, Freshmeat.net, Linux.com, Newsforge.com, et al.
Well, let's begin with the most boring and basic details. We're hosted at a Savvis data center in the Bay Area. Our data center is pretty much like every other one. Raised floors, UPSs, giant diesel generators, 24x7 security, man traps, the works. Really, once you've seen one class A data center, you've seen them all. (CT: I've still never seen one. And they won't let us take pictures. Boo savvis.)
Next, our bandwidth and network. We currently have two Active-Active Gigabit uplinks; again nothing unique here, no crazy routing, just symmetric, equal cost uplinks. The uplinks terminate in our cage at a pair of Cisco 7301s that we use as our gateway/border routers. We do some basic filtering here, but nothing too outrageous; we tier our filtering to try to spread the load. From the border routers, the bits hit our core switches/routers, a pair of Foundry BigIron 8000s. They have been our workhorses throughout the years. The BigIron 8000s have been in production since we built this data center in 2002 and actually, having just looked at it... haven't been rebooted since. These guys used to be our border routers, but alas... their CPUs just weren't up to the task after all these years and growth. Many machines plug directly into these core switches, however for certain self contained racks we branch off to Foundry FastIron 9604s. They are basically switches and do nothing but save us ports on the cores.
Now onto the meat: the actual systems. We've gone through many vendors over the years. Some good, some...not so much. We've had our share of problems with everyone. Currently in production we have the following: HP, Dell, IBM, Rackable, and I kid you not, VA Linux Systems. Since this article is about Slashdot, I'll stick to their hardware. The first hop on the way to Slashdot is the load balancing firewalls, which are a pair of Rackable Systems 1Us; P4 Xeon 2.66Gz, 2G RAM, 2x80GB IDE, running CentOS and LVS. These guys distribute the traffic to the next hop, which are the web servers.
Slashdot currently has 16 web servers all of which are running Red Hat 9. Two serve static content: javascript, images, and the front page for non logged-in users. Four serve the front page to logged in users. And the remaining ten handle comment pages. All web servers are Rackable 1U servers with 2 Xeon 2.66Ghz processors, 2GB of RAM, and 2x80GB IDE hard drives. The web servers all NFS mount the NFS server, which is a Rackable 2U with 2 Xeon 2.4Ghz processors, 2GB of RAM, and 4x36GB 15K RPM SCSI drives. (CT: Just as a note, we frequently shuffle these 16 servers from one task to another to handle changes in load or performance. Next week's software story will explain in much more detail exactly what we do with those machines. Also as a note- the NFS is read-only, which was really the only safe way to use NFS around 1999 when we started doing it this way.)
Besides the 16 web servers, we have 7 databases. They currently are all running CentOS 4. They breakdown as follows: 2 Dual Opteron 270's with 16GB RAM, 4x36GB 15K RPM SCSI Drives These are doing multiple-master replication, with one acting as Slashdot's single write-only DB, and the other acting as a reader. We have the ability to swap their functions dynamically at any time, providing an acceptable level of failover.
2 Dual Opteron 270's with 8GB RAM, 4x36GB 15K RPM SCSI Drives These are Slashdot's reader DBs. Each derives data from a specific master database (listed above). The idea is that we can add more reader databases as we need to scale. These boxes are barely a year old now — and still are plenty fast for our needs.
Lastly, we have 3 Quad P3 Xeon 700Mhz with 4GB RAM, 8x36GB 10K RPM SCSI Drives which are sort of our miscellaneous 'other' boxes. They are used to host our accesslog writer, an accesslog reader, and Slashdot's search database. We need this much for accesslogs because moderation and stats require a lot of CPU time for computation.
And that is basically it, in a nutshell. There isn't anything too terribly crazy about the infrastructure. We like to keep things as simple as possible. This design is also very similar to what all the other SourceForge, Inc. sites use, and has proved to scale quite well.
CT: Thanks to Uriah and Chris Brown for the report. Now if only we remember to update the FAQ entry...

Windows? (Score:4, Funny)
Re:Windows? (Score:5, Funny)
Re:Windows? (Score:5, Interesting)
Re:Windows? (Score:5, Funny)
Savvis (Score:5, Funny)
Re: (Score:3, Informative)
Re: (Score:3, Informative)
Depending on who you talk to, you'll get different responses about Savvis. This is mainly due
Redhat 9 (Score:5, Funny)
Re:Redhat 9 (Score:4, Insightful)
Re:Redhat 9 (Score:5, Interesting)
I've been in the mission critical provider business (ISP, then an insurance agency, now in health care) for almost eight years now and I'd take community support (websites, forums, and *gasp* USENET) over corporate support any day of the week.
Yes, it's nice to be able to sell your project to the PHB/MBA by saying "We'll always have support if we have problems!", but anybody that has spent a few hours on the phone with their vendor and who realizes that they know the product better then the Level Four support guys do, comes to realize that support isn't the sliver bullet that it's presented as.
Have my vendors helped me out in the past? Absolutely. But will I upgrade away from a rock-solid system that has served me well for years merely to gain support with a newer version? No way in hell......
Yep, you're dead on the money about Level4 support (Score:3, Informative)
Re:Redhat 9 (Score:5, Funny)
Slashdot is mission-critical? That's what I'll tell my boss the next time he asks why I'm spending so much time on it ;)
Kidding aside though, I'm rather fond of the old joke that I found in 'fortune -o'. "Working computer hardware is a lot like an erect penis. It stays up as long as you don't fuck with it."
Re: (Score:3, Informative)
Redhat 9? (Score:4, Interesting)
Write-only database? (Score:5, Funny)
Jolyon
Re: (Score:3, Informative)
If you have a farm of replicated mysql servers (which are read only - as replication is one way here) you need a db to write to.... not reading from it reduces the load on that server.
So, assuming that
Re:Write-only database? (Score:4, Funny)
Possibly obtuse question (Score:5, Interesting)
Re:Possibly obtuse question (Score:5, Informative)
Re:Possibly obtuse question (Score:4, Interesting)
Re:Possibly obtuse question (Score:4, Insightful)
Stability and familiarity are more important than the latest cool distro. Is there a reason that they should have picked BSD over RedHat? Of course there are some. There are others to pick RedHat over a BSD. In the end, you have to go with what you're comfortable and familiar with in order to ensure that you can deal with sudden, unexpected problems.
Finally some adult stories (Score:5, Funny)
Thanks for the report, looking forward to the software part!
bandwidth usage and cost? (Score:5, Interesting)
Re:bandwidth usage and cost? (Score:5, Informative)
Re:bandwidth usage and cost? (Score:4, Interesting)
For a site like
After that, you have to count up all the amazing 7 figure salaries of Rob and the gang who keep things running
the AC
Re:bandwidth usage and cost? (Score:4, Informative)
The savings pays for the gear in less than 2 years plus we have 10X the band width as well as full control over the connection.
Why CentOS? (Score:3, Interesting)
One way it's better (Score:4, Insightful)
Re:Why CentOS? (Score:5, Informative)
Re: (Score:3)
Yes indeed; RedHat with the serial numbers filed off.
My GNU/Linux server experience is pretty much all in the RH family tree, except for a brief fling with SUSE for SPARC in the early '00s. For desktop, though, I have to admit that Kubuntu is pretty sweet.
Multiple master DBs (Score:3, Interesting)
Isn't that a contradiction? If you have only one write DB, why do you need multiple masters, aren't the other 6 just slaves at that point? Or are there separate master/slave pairs (I'm assuming these are MySQL databases)
Re:Multiple master DBs (Score:5, Informative)
Considered a CDN? (Score:5, Interesting)
Re:Considered a CDN? (Score:5, Informative)
I want my sense of childlike wonder back! (Score:5, Funny)
Thanks for destroying my sense of childlike wonder, you insensitive clods!
Re:I want my sense of childlike wonder back! (Score:4, Funny)
backup? (Score:5, Interesting)
Re:backup? (Score:4, Informative)
Second rule of offsite backups: Never talk about where you keep your offsite backups.
You thought I was going somewhere else with that didn't you?
In all seriousness, that sounds like it would be in the software article instead.
Re:backup? (Score:5, Informative)
Thanks (Score:5, Interesting)
Thanks for this. It's really very interesting.
-B
read the entire series (Score:5, Funny)
Re:read the entire series (Score:4, Funny)
The admins would wake up the next day to discover that the site was running perfectly normally, but was performing slightly faster than normal.
After closer inspection, they'd find that their datacenter had been emptied, and replaced by a single Apple ][ that had been hacked to run the latest version of Ubuntu, and that slashcode had been rewritten so that it would perform all of the same functions as the previous slashcode, but ran at twice the speed... on the Apple ][.
A post-it would be found stuck to the screen, stating that all of slashdot's old and now unnecessary hardware had been sold, with the proceeds being donated to the EFF. The message would likely include or be in the form of a Soviet Russia joke. Additionally, a miniaturized plastic Gnu would be left behind as a calling-card.
The news of this would be regarded as insignificant by the editors, until over a year later, it gets posted four times in the span of two days.
Comment woes (Score:3, Interesting)
Re: (Score:3, Insightful)
Logged in users can have a bunch of customization options on the front-end, which would take more resources.
I find it just as interesting that th
Re:Interesting (Score:4, Insightful)
Re:Interesting (Score:5, Informative)
Yeah, I wasn't sure what he meant either. We have 2 webheads serving static pages (like the non-logged-in homepage), and 4 serving specifically the dynamically-generated homepage for all logged-in users. Plus 1 that serves all SSL traffic, which subscribers can use.
People often say "subscriber" when they mean "logged-in Slashdot user," not specifically a paying subscriber [slashdot.org].
Re:Interesting (Score:5, Funny)
Re:the powers that be (Score:5, Funny)
Re:You probably shouldn't tell us too much informa (Score:5, Funny)
Re:You probably shouldn't tell us too much informa (Score:4, Informative)