Does it use any of the standard ones like Oracle, DB2, SQL Server, or have something of their own?

Considering the type of data (text + images + videos) that they have to manage, it would be interesting to know how they deal with it.

Is this information publicly available? Any links would also be helpful.

link|improve this question

78% accept rate
11  
Who voted to close this as belongs on superuser? That's quite a strange close vote. – Dominic Rodger Aug 13 '10 at 18:37
1  
This isn't really a programming question. "What sort of data-storage might be appropriate for facebook-style profiles?" could work I suppose. (And I have no idea why there's a SU close vote on this - however inappropriate it might be for SO, I can only imagine it being more inappropriate on SU. Unless the idea is, "SU users are really good at searching Google for answers...") (Edit: oh, look - SO users can use Google TOO!) – Shog9 Aug 13 '10 at 18:38
1  
This is a strange question indeed, and it's one that may well go unanswered, but I think it's a valid question. It pertains to software development, in a sense. My gut says they're using Oracle, but I have no evidence to back this up... – corsiKa Aug 13 '10 at 18:38
1  
Question seems ok to me. Wanting to know which technologies popular products have used to provide a big, popular and scalable product like Facebook seems programming related to me. – jalf Aug 13 '10 at 18:50
5  
I'm so sick of SO "gatekeepers" that question every question that gets asked. This is a site about any sort of software development question. The guy asked a question that is most likely related to software development... let users freaking answer the question. If it is a dup, then mark it as such. Don't waste everyone's time trying to determine which stackexchange site it belongs on when the question is obviously related to software development. – Polaris878 Aug 13 '10 at 19:40
show 6 more comments
feedback

9 Answers

up vote 16 down vote accepted

It should be no surprise that an site as high-scale as Facebook uses a variety of data management technology. Each database product has its strengths, and Facebook needs all of them.

They have also changed their data management from time to time, as they find solutions that meet their needs.

According to Exploring the software behind Facebook, the world’s largest site (2010/6/18):

  • MySQL
  • Memcached
  • Haystack for photo retrieval
  • Cassandra
  • Hadoop and Hive
  • Scribe for high-speed distributed logging
link|improve this answer
feedback

I've discussed this extensively with some sysops from Facebook in the past.

Facebook primarily uses MySQL for structured data storage. For instance, wall posts, user information, etc. are all stored in MySQL. They replicate this between their various data centers.

For blob storage (photos, video, etc.), Facebook makes use of a custom solution that involves a CDN (fbcdn) externally and NFS internally.

For a few means of document storage and write-heavy applications (such as inbox search), Cassandra is used. Contrary to popular belief, Cassandra is NOT the primary database at Facebook. In fact, it isn't anywhere close to being the primary database platform; it used for very specific scenarios where the NoSQL paradigm fits best.

Hope this helps

EDIT:

I should also note that this is by no means the full extent of technologies that FB uses, but it does represent the vast majority of storage that they take advantage of.

link|improve this answer
feedback

This is a copy-paste from this site:

http://developers.facebook.com/opensource/

Infrastructure

Apache Cassandra is a distributed storage system for managing structured data that is designed to scale to a very large size across many commodity servers, with no single point of failure.

Apache Hive is data warehouse infrastructure built on top of Hadoop that provides tools to enable easy data summarization, adhoc querying and analysis of large datasets.

FlashCache is a general purpose writeback block cache for Linux. It was developed as a loadable Linux kernel module, using the Device Mapper and sits below the filesystem.

HipHop for PHP transforms PHP source code into highly optimized C++. HipHop offers large performance gains and was developed over the past two years.

Open Compute Project an open hardware project aims to accelerate data center and server innovation while increasing computing efficiency through collaboration on relevant best practices and technical specifications.

Scribe is a scalable service for aggregating log data streamed in real time from a large number of servers.

Thrift provides a framework for scalable cross-language services development in C++, Java, Python, PHP, and Ruby.

Tornado is a relatively simple, non-blocking web server framework written in Python. It is designed to handle thousands of simultaneous connections, making it ideal for real-time Web services.

link|improve this answer
1  
Worth noting that this only includes OS projects Facebook created, not all projects they use/contribute to. – Jan Olaf Krems Jan 12 at 6:40
feedback

They use Apache Cassandra for some of their storage (document database), and heavy use of memcached to make it scale well.

link|improve this answer
1  
They run primarily on MySQL. Cassandra powers only a small percentage of their databases. – mattbasta Aug 13 '10 at 18:41
1  
Seems reasonable, and why I said they use cassandra for some of the storage, not all. Mysql + memcached is popular indeed. – Mikael Svenson Aug 14 '10 at 8:24
feedback

According to Wikipedia's Hadoop page and the PoweredBy page on the Hadoop site, they use Hadoop. However, the text on the Hadoop page reads:

We use Hadoop to store copies of internal log and dimension data sources and use it as a source for reporting/analytics and machine learning.

That makes me think that their user profiles are not stored in Hadoop.

link|improve this answer
feedback

They use Casandra and MySQL, see here about Casandra http://www.facebook.com/note.php?note_id=24413138919

link|improve this answer
Yep. This appears to confirm use of mysql: facebook.com/MySQLatFacebook and facebook wrote cassandra. – Frank Farmer Aug 13 '10 at 18:43
feedback

If you are interested in what technologies Facebook uses, follow their engineering "blog". http://www.facebook.com/Engineering

There is lots of good stuff in there.

link|improve this answer
feedback

MySql

Source: http://www.datacenterknowledge.com/archives/2008/04/23/facebook-now-running-10000-web-servers/

They may have migrated since, but I doubt it.

link|improve this answer
They migrated some of their stuff to Casandra – SQLMenace Aug 13 '10 at 18:40
Truth be told, I'd found it hard to believe they have only one database type! Do you know how much is migrated? The article (from '08) says they have 1800 MySql databases. Surely that has grown with their userbase, which puts them at roughly 4k by now. – corsiKa Aug 13 '10 at 18:43
If you see my answer, they also utilize Hadoop for some things as well. – Thomas Owens Aug 13 '10 at 18:43
feedback

I'm fairly sure they used to use MySQL, however they now use some sort of NoSQL database for heavier transactions. The number of transactions Facebook has to handle is sometimes too much for a relational database. You see, relational databases must adhere to the principle of ACID. It is costly to maintain ACID on a large scale. NoSQL variants don't adhere to as strict of a set of rules as relational databases do.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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