vote up 1 vote down star
1

How would you run a website with 6 times the Digg traffic on only 8 ASP.NET servers? He talks about "writing efficient code". What kind of "efficient code" do you think he's talking about ? And do you think he's using heavy frameworks ? That I doubt, do you also :)

Source

Marcus Frind managed to run his company with almost no staff, but he has also been able to run a massive database with almost no computer hardware. To get a sense of how efficient the operation is, consider that the social news site Digg generates about 250 million page views each month, or roughly one-sixth of Plenty of Fish's monthly traffic, and employs 80 people. Most websites as busy as Frind's use hundreds of servers. Frind has just eight. He is not eager to explain how he manages this, but he says that it mostly comes from writing efficient code, a necessity when you are the only code writer and are extremely averse to spending money on additional hardware and features. "At other sites, when one thing goes slightly wrong, the reaction is to buy more servers or hire a Ph.D.," he says. "It's almost unbelievable -- it's like people are trying to justify their jobs by spending money. This isn't rocket science."

flag

63% accept rate
Requires extended discussion; not suitable on a Q & A site. Reduce scope of question, please. – George Stocker Aug 29 at 15:18
OK will try but will have to think how first :) – Rebol Tutorial Aug 29 at 15:27
What not a "real" question ? Are you kidding ? – Rebol Tutorial Aug 29 at 15:40
1  
Out site gets about 400 million requests per month, and it runs on two web servers and a database server. We want the redundancy, but it can easily run on a single web server, as the CPU usage never goes over 5%... The site is very database intensive, so the database goes up to 25% at most... – Guffa Aug 29 at 16:06

closed as not a real question by George Stocker, Jonathan Sampson, Jeff Atwood Aug 29 at 15:31

2 Answers

vote up 1 vote down

Think about what makes a site slow and difficult to scale - going to the database, complicated business logic, and writes. I'd try to minimize those. If you can fit your entire database in memory, and never do complicated queries on it you're halfway there. As far as the business logic, well I'm not sure how he manages that. Spare cycles? Running it as a BOINC project? Hourly jobs segmented? Faking it?

link|flag
vote up 1 vote down

As it goes I've spent the last few months writing an ASP.NET app which handles about 75M requests a day against 3 servers (without running the processor at 80% either thanks). i'd like a fourth for stability but it's not required by any means.

To a large extent this is a matter of having decent hardware (nothing spectacular though, but I don't know the exact specs off hand) and writing decent code. Leaning on caching wherever possible and limiting the impact of standard ASP.NET cruft like viewstate, losing the Page class where HttpHandlers are preferable, and throwing exceptions around the place. Try and work directly with the response stream and try and build as much logic into the architecture rather than run-time decisions.

It helps that I was the only coder so I was able to build the thing without having to compromise over design issues and could just make unilateral changes where I deemed them necessary. It also helps that the web is still I/O bound and not proc bound so the world all of this code exists in is a world with a lower practical bound of efficiency requirements.

Summary: don't rely on ASP.NET at all and just write good code. Of course, that last bit isn't always that easy to grok.

link|flag
WOW, 75M hits per day, that's impressive! Are all the 3 servers just web servers or are some of them DB servers? – eyze Aug 29 at 15:36
No all pure web servers to be fair - the DB side is handled by 3 other physical servers (of which one virtualises three - this is territory based.) THE DBs involved are all custom C++ apps to living purely in RAM to eliminate disk I/O bottlenecks, but that bit still consumes 95% of the flight-time. – annakata Aug 29 at 15:51
Also I get to cheat: the content being served by these requests is pretty lightweight and doesn't require sessioning. – annakata Aug 29 at 15:52

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