Thursday, May 24, 2012

How does Facebook achieve good performance?


Almost everyone has a Facebook account, even people who are not familiar with the Internet. With millions people actively using Facebook, updating their status, replying to messages, uploading photos and so on, how is Facebook's page still loading very fast?



I was told that Facebook was built using only PHP and MySQL, so how can Facebook's performance be so good?


Source: Tips4all

12 comments:

  1. There's no single reason, but a whole lot of reasons:


    Heavy usage of caching (APC and memcached), which drastically cuts processing time.
    Slide 12 compares load time with APC (~130 ms) versus without it - 4050 ms. That's 30x faster!
    Usage of HipHop, which converts PHP into C++ code (which is then compiled into much more efficient machine code than actual PHP).
    Facebook uses PHP and MySQL, but that's not the only thing they use. For example, they use Erlang for their chat, Hadoop clusters for some of their storage. If you go visit their careers page, you'll see they are hiring developers with experience in C++, Java, Python, and others.
    Facebook has data distributed across many, many servers. In June 2010, FB had 60,000 servers. (think that's too much? Google had half a million... 5 years ago)
    Facebook sends as little traffic as possible: they use static CDNs to deliver static content. Gzip to compress data. Cookies, Javascript, HTML - everything is cut back to reduce the number of bytes sent over the network. They use a technology they call "BigPipe", which sends partial content rather than the whole page.


    to mention a few...

    ReplyDelete
  2. More info at http://highscalability.com/blog/category/facebook

    ReplyDelete
  3. By


    Caching
    Having many servers
    Having many smart people working on making it fast.

    ReplyDelete
  4. This article talks about the inner workings of Facebook: http://royal.pingdom.com/2010/06/18/the-software-behind-facebook/

    ReplyDelete
  5. Facebook was not only using MySql - it started out using Cassandra, and is migrating over to HBase. Applications like FB need a highly scalable Database.

    ReplyDelete
  6. Watch this presentation of Aditya Agarwal, Director of Engineering at Facebook, this presentation talks about Facebook’s architecture and its major components (LAMP (PHP, MySQL), Memcache, Thrift, Scribe).

    ReplyDelete
  7. They have a compiled version of php, in fact.
    My guess would have to be: insane amounts of crazy hardware, brutally efficient code, and a database structure optimized with caching, denormalization, clustering...

    ReplyDelete
  8. Because they have a lot of money. Hiring smart developers and buying tons of servers every week is quite costly.

    ReplyDelete
  9. It's worth looking into how Facebook selectively loads front end JS so that there is very little latency in the responsiveness of the UI.

    ReplyDelete
  10. Maybe a small part of the solution overall, but they also optimize for fast client-side rendering. They contracted CSS expert Nicole Sullivan to do some optimization based on her OOCSS techniques.

    ReplyDelete
  11. XHP is a PHP extension which augments the syntax of the language such that XML document fragments become valid PHP expressions. - GIT checkout and Wiki

    ReplyDelete
  12. There is a lot of information about their technology in the Facebook Group Facebook Engineering, including discussions of their MySQL cluster, XHP, memcached, etc.

    It comes down to having enough money to hire smart staff who write efficient programs running on many many computers.

    ReplyDelete