Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What technologies do Google and Facebook use for their back-end and front-end?

What are their database technologies, and languages they use to process the back-end data.

share|improve this question
ASP.NET, C#.. ;) – Dienekes Jan 4 '11 at 9:16
somebody should add the tags c++ and python – Arian Jan 4 '11 at 9:34
@Dienekes which one? I'm not talking about SO – Famver Tags Jan 4 '11 at 9:52
When you asked Google and Facebook, what did they say? WHy ask us? – S.Lott Jan 4 '11 at 11:22

closed as not constructive by jogojapan, Tom Seidel, Timmy O'Mahony, Lex, Lev Levitsky Nov 8 '12 at 11:08

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

7 Answers

up vote 8 down vote accepted

http://web.archive.org/web/20110708015633/http://panela.blog-city.com/python_at_google_greg_stein__sdforum.htm

  • Where is Python used?

    • The Google build system is written in python. All of Google's corporate code is checked into a repository and the dependency and building of this code is managed by python. Greg mentioned that to create code.google.com took about 100 lines of python code. But since it has so many dependencies, the build system generated a 3 megabyte makefile for it!
    • Packaging. Google has an internal packaging format like RPM. These packages are created using python.
    • Binary Data Pusher. This is the area where Alex Martelli is working, on optimizing pushing bits between thousands of servers
    • Production servers. All monitoring, restarting and data collection functionality is done with python
    • Reporting. Logs are analyzed and reports are generated using Python.
    • A few services including code.google.com and google groups. Most other front ends are in C++ (google.com) and Java (gmail). All web services are built on top of a highly optimizing http server wrapped with SWIG.
share|improve this answer
obsolete link... – Dupadupa Nov 8 '12 at 9:20
1  

I can tell you that Facebook uses PHP as a frontend presentation layer and backend is mostly MySQL and (for message search) Cassandra.

Google uses BigTable for backend repository (I don't know if they use MySQL or other technologies).

share|improve this answer

Google makes use of Map Reduce to process huge amount of data.Facebook uses an open source implementation of Map Reduce called Hadoop.

share|improve this answer

Heard a rumor that Facebook uses Erlang for its messaging system: http://gregosuri.com/how-facebook-uses-erlang-for-real-time-chat

share|improve this answer

Google tree whales: Google File System, BigTable and MapReduce

share|improve this answer

Since you are asking about both front-end and back-end, you maybe interested in the part inbetween: How they communicate between different systems.

For this Google and Facebook use Protocol Buffers and Thrift respectively.

share|improve this answer

Facebook uses HBase for its messaging infrastructure. Have attached the paper published by Facebook on how they used HBase and the optimizations they have done. Its a good read: http://sites.computer.org/debull/A12june/facebook.pdf

share|improve this answer

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