vote up 36 vote down star
23

Hello,

I'm building a web application with Django. The reasons I chose Django were:

  • I wanted to work with free/open-source tools
  • I like Python and feel it's a "long term" language, whereas regarding Ruby I wasn't sure, and PHP seemed like a huge hassle to learn.
  • I'm building a prototype for an idea and wasn't thinking too much about the future. Speed was the main factor, and I already knew Python. [Edit: To clarify - I mean development speed rather than optimized speed of execution]
  • I knew the migration to Google App Engine would be easier should I choose to do so in the future.
  • I heard Django was "nice"

Now that I'm getting closer to thinking about publishing my work, I start being concerned about scale. The only information I found about the scaling capabilities of Django is provided by the Django team (I'm not saying anything to disregard them, but this is clearly not objective information...).

My questions to you:

  • What's the "largest" site that's built on Django today? (I measure size mostly by user traffic)
  • Can Django deal with 100k users daily, each visiting the site for a couple of hours?
  • Could a site like StackOverflow run on Django?

Thanks

flag

Might want to fix "speed was the main factor" to clarify if you're talking about execution speed or development effort. It sounds like development effort, which makes sense. – S.Lott May 20 at 11:40
@S.Lott: Thanks, clarified – Rax Olgud May 20 at 15:29
Would be interesting to compare this with RoR. – Kozyarchuk May 28 at 2:50

18 Answers

vote up 34 vote down check
  1. "What are the largest sites built on Django today"

    There isn't any single place that collects information about traffic on Django built sites, so I'll have to take a stab at it using data from various locations. First, we have a list of Django sites on the front page of the main Django project page and then a list of Django built sites at djangosites.org. Going through the lists and picking some that I know have decent traffic we see:

  2. "Can Django deal with 100k users daily, each visiting the site for a couple of hours?"

    Yes, see above.

  3. "Could a site like StackOverflow run on Django?"

    My gut feeling is yes but, as others answered and Mike Malone mentions in his presentation, database design is critical. Strong proof might also be found at www.cnprog.com if we can find any reliable traffic stats. Anyway, it's not just something that will happen by throwing together a bunch of Django models :)

There are, of course, many more sites and bloggers of interest, but I gotta stop somewhere!

link|flag
1  
Curse moved to ASPNET for reasons I don't know. – Oli May 20 at 9:03
Gah, thanks Oli, I hadn't seen any news about that :( – Van Gale May 20 at 12:24
2  
I seem to remember curse going through an acquisition about 6 months ago - that might have influenced their decision to change technologies. I wouldn't put it down to any inadequacy in django. – Bayard Randel May 21 at 1:02
@Oli a quick google search didn't turn up anything about Curse moving to ASP.NET (all I can seem to find about their tech is related to Django). Do you have a link? – TM Dec 1 at 21:31
Response headers seem to indicate ASP.NET $ curl -I curse.com HTTP/1.1 301 Moved Permanently Content-Type: text/html; charset=UTF-8 Location: curse.com Server: Microsoft-IIS/7.0 X-Powered-By: ASP.NET Date: Thu, 03 Dec 2009 22:16:05 GMT Content-Length: 144 Connection: close – cruelfate 2 days ago
vote up 1 vote down

My experience with django is minimal but I do remember in the django book they have a chapter where they interview people running some of the larger django applications. Here is a link. I guess it could provide some insights.

It says curse.com is one of the largest django applications with around 60-90 million page views in a month.

link|flag
vote up 9 vote down

The largest django site I know of is the Washington Post, which would certainly indicate that it can scale well.

Good design decisions probably have a bigger performance impact than anything else. Twitter is often cited as a site which embodies the performance issues with another dynamic interpreted language based web framework, Ruby on Rails - yet Twitter engineers have stated that the framework isn't as much an issue as some of the database design choices they made early on.

Django works very nicely with memcached and provides some classes for managing the cache, which is where you would resolve the majority of your performance issues. What you deliver on the wire is almost more important than your backend in reality - using a tool like yslow is critical for a high performance web application. You can always throw more hardware at your backend, but you can't change your users bandwidth.

link|flag
Isn't only part of washingtonpost.com run on Django? The Django frontpage seems to indicate it's only projects.washingtonpost.com/congress – Xiong Chiamiov Jul 17 at 1:07
A lot of the Atlanta-Journal Constitution runs one Django although the main cms is akamai and they use a lot of caching and they use gearman for a work queue .. so the application server is not seeing that many requests... it scales... – skyl Nov 1 at 9:38
vote up 6 vote down

I'm sure you're looking for a more solid answer, but the most obvious objective validation I can think of is that Google pushes django for use with its app engine framework. If anybody knows about and deals with scalability on a regular basis, it's Google. From what I've read, the most limiting factor seems to be the database back-end, which is why Google uses their own...

link|flag
vote up 2 vote down

Yes it can, it could be django with Python or Ruby n rail it will still scale. There are few different techniques. First, caching is not scaling. You could have several application servers balanced with nginx an the front in addition to hardware balancer(s). To scale on the database side you can go pretty far with read slave in mysql / postgres if you go the RDBMS way.

Some good examples of heaby traffic websites in Djano could be:

Pownce when they were still there. Dscus (generic shared comments manager) All the News Paper related websites: Washington Post and others.

You can feel safe.

link|flag
vote up 1 vote down

If you haven't already, I recommend reading the section on scaling in the djangobook:

http://www.djangobook.com/en/1.0/chapter20/

Or the newer version:

http://www.djangobook.com/en/2.0/chapter12/

link|flag
I read it, thanks, but as I mentioned, I was looking for information not coming from Django or the Django-book. – Rax Olgud May 20 at 15:32
vote up 2 vote down

Note that if you're expecting 100K users per day, that are active for hours at a time (meaning max of 20K+ concurrent users), you're going to need A LOT of servers. SO has ~15,000 registered users, and most of them are probably not active daily. While the bulk of traffic comes from unregistered users, I'm guessing that very few of them stay on the site more than a couple minutes (i.e. they follow google search results then leave).

For that volume, expect at least 30 servers ... which is still a rather heavy 1,000 concurrent users per server.

link|flag
1  
It appears from the podcast that SO uses just 3 servers. But SO is built using C#, not Python, so it rips. – S.Lott May 20 at 13:21
Obviously the question will be: How much powerfull servers are they? – mamcx Jun 18 at 22:47
vote up 7 vote down

I was at the EuroDjangoCon conference the other week, and this was the subject of a couple of talks - including from the founders of what was the largest Django-based site, Pownce (slides from one talk here). The main message is that it's not Django you have to worry about, but things like proper caching, load balancing, database optimisation, etc.

Django actually has hooks for most of those things - caching, in particular, is made very easy.

link|flag
vote up 23 vote down

Playing devil's advocate a little bit:

You should check the DjangoCon 2008 Keynote, delivered by Cal Henderson, titled "Why I hate Django" where he pretty much goes over everything Django is missing that you might want to do in a high traffic website. At the end of the day you have to take this all with an open mind because it is perfectly possible to write Django apps that scale, but I thought it was a good presentation and relevant to your question.

link|flag
vote up 25 vote down

We're doing load testing now. We think we can support 240 concurrent requests (a sustained rate of 120 hits per second 24x7) without any significant degradation in the server performance. That would be 432,000 hits per hour. Response times aren't small (our transactions are large) but there's no degradation from our baseline performance as the load increases.

We're using Apache front-ending Django and MySQL. The OS is Red Hat Enterprise Linux (RHEL). 64-bit. We use mod_wsgi in daemon mode for Django. We've done no cache or database optimization other than to accept the defaults.

We're all in one VM on a 64-bit Dell with (I think) 32Gb RAM.

Since performance is almost the same for 20 or 200 concurrent users, we don't need to spend huge amounts of time "tweaking". Instead we simply need to keep our base performance up through ordinary SSL performance improvements, ordinary database design and implementation (indexing, etc.), ordinary firewall performance improvements, etc.

What we do measure is our load test laptops struggling under the insane workload of 15 processes running 16 concurrent threads of requests.

link|flag
+1: excellent! – Van Gale May 20 at 12:28
1  
just curious, is this a single server setup? what are the specs on the server(s)? – monkut May 21 at 0:57
It's one VM on a 64-bit Dell with 32Gb RAM (AFAIK). – S.Lott May 21 at 2:28
Also curious: is your DB running on the same machine, or a separate server? – Jarret Hardie May 21 at 13:15
One VM with Apache, Django and MySQL. mod_wsgi. RHEL. – S.Lott May 21 at 15:05
vote up 2 vote down

Another example is rasp.yandex.ru, Russian transport timetable service. Its attendance satisfies your requirements.

link|flag
vote up 0 vote down

Scaling Web apps is not about web frameworks or languages, is about your architecture. It's about how you handle you browser cache, your database cache, how you use non-standard persistence providers (like CouchDB), how tuned is your database and a lot of other stuff...

Don't bother...

link|flag
A downvote? Why? – razenha May 22 at 2:21
+1 I didn't downvote, but maybe it's because of the don't bother? – Rax Olgud May 24 at 19:53
vote up 2 vote down

Could a site like StackOverflow run on Django?

Chinese version of StackOverflow is using Django:

http://stackoverflow.com/questions/694966/impressed-or-angry-at-http-www-cnprog-com

link|flag
vote up 2 vote down

You can definitely run a high-traffic site in Django. Check out this pre-Django 1.0 but still relevant post here: http://menendez.com/blog/launching-high-performance-django-site/

link|flag
vote up 2 vote down

If you have a site with some static content, then putting a Varnish server in front will dramatically increase your performance. Even a single box can then easily spit out 100mbit of traffic.

Note that with dynamic content, using something like Varnish becomes a lot more tricky.

link|flag
vote up 2 vote down

I have been using django for over a year now, and am very impressed with how it manages to combine modularity, scalability and speed of development. Like with any technology, it comes with a learning curve. However, this learning curve is made a lot less steep by the excellent documentation from the django community. Django has been able to handle everything I have thrown at it really well. It looks like it will be able to scale well into the future.

BidRodeo Penny Auctions is a moderately sized django-powered website. It is a very dynamic website and does handle a good number of page views a day.

link|flag
vote up 10 vote down

What's the "largest" site that's built on Django today? (I measure size mostly by user traffic)

In the US, Mahalo. I'm told they handle roughly 10 million uniques a month.

Abroad, the Globo network (a network of news, sports, and entertainment sites in Brazil); Alexa ranks them in to top 100 globally (around 80th currently).

Other notable Django users include PBS, National Geographic, Discovery, NASA (actually a number of different divisions within NASA), and the Library of Congress.

Can Django deal with 100k users daily, each visiting the site for a couple of hours?

Yes -- but only if you've written your application right, and if you've got enough hardware. Django's not a magic bullet.

Could a site like StackOverflow run on Django?

Yes (but see above).

Technology-wise, easily: see soclone for one attempt. Traffic-wide, compete pegs StackOverflow at under 1 million uniques per month. I can name at least dozen Django sites with more traffic than SO.

link|flag
vote up 1 vote down

Here's a list of some relatively high-profile things built in Django:

  1. The Guardian's "Investigate your MP's expenses" app

  2. Politifact.com (here's a Blog post talking about the (positive) experience. Site won a Pulitzer.

  3. NY Times' Represent app

  4. Everyblock

  5. Peter Harkins, one of the programmers over at WaPo, lists all the stuff they’ve built with Django on his blog

  6. It's a little old, but someone from the LA Times gave a basic overview of why they went with Django.

  7. The Onion's AV Club was recently moved from (I think Drupal) to Django.

I imagine a number of these these sites probably gets well over 100k+ hits per day. Django can certainly do 100k hits/day and more. But YMMV in getting your particular site there depending on what you're building. There are caching options at the Django level (for example caching querysets and views in memcached can work wonders) and beyond (upstream caches like Squid). DB Server specs will also be a factor (and usually the place to splurge), as is how well you've tuned it. Don't assume, for example, that Django's going set up indexes properly. Don't assume that the default postgres or mysql config is the right one. Furthermore, you always have the option of having multiple app servers running Django if that is the slow point, with a software or hardware load balancer in front. Finally, Are you serving static content on the same server as Django? Are you using apache or somehting like nginx or lighttpd? Can you afford to use a CDN for static content? These are things to think about, but it's all very speculative. 100k hits/day isn't the only variable: how much do you want to spend? how much expertise do you have managing all these components? how much time do you have to pull it all together?

link|flag

Your Answer

Get an OpenID
or

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