I mean google the search engine.

link|improve this question

44% accept rate
having read a few questions` answer lists, I think Google don`t use all of Microsoft technologies at all - I mean .NET and what`s around it. Is it true? – chester89 Apr 16 '09 at 6:32
2  
Google use C++, Java and Python on the server side because they know how to make those things scale like crazy. Steve Yegge has talked about Googles policy on languages at length if you feel like getting an accurate answer. Its hardly interesting... – Tim Apr 16 '09 at 10:59
feedback

9 Answers

up vote 57 down vote accepted

Depends on which part of Google you mean. The back-end of Google's MapReduce implementation, which processes webpages and builds web indices, is written in C++, with front-ends for Python and Java (see here).

So, the real work (data processing within the compute cloud) is done by C++ libraries, but the development can be done in higher-level languages that call these routines. When you submit a web query, results are fetched from the huge indices produced by the back-end jobs.

link|improve this answer
1  
They also have a language developed internally called Sawzall. – zak23 Aug 5 '09 at 21:39
And Golang: golang.org – Dean J Sep 8 '10 at 14:00
funny i always thought they have their own goosp language :) – Ayyash Apr 16 at 13:19
feedback

Non-programming related searches are handled by the C++ libraries already mentioned.

Programming related searches are simply redirected to Jon Skeet who answers in English in real time.

link|improve this answer
1  
If the facts page was still open then this should have been on there. Nice One! +1 – Lucas McCoy Apr 16 '09 at 1:02
9  
... can't ... resist .... upvoting ......... – Skilldrick Jun 9 '10 at 13:31
4  
bahaha Jon Skeet. Its funny cause its true. – SwDevMan81 Oct 15 '10 at 14:39
feedback

C++ and Java are the main languages for production. Search is mostly written in C++, while a lot of the ads infrastructure is written in Java. Python is used as glue, for things like development tools and administration tools. There's a lot of other random languages here and there though - there are projects that use everything from Haskell to perl.

Google also has some of their own languages that exist only within Google, such as sawzall.

link|improve this answer
feedback

python is quite heavily used at google

link|improve this answer
4  
but not for the search. that's heavily optimized, every millisecond is accounted for – Javier Apr 16 '09 at 3:33
feedback

All of them.

Ok that was useless.

I've heard it said to be mostly C++, Java & Python. Google App Engine, for example, is basically a platform for Python applications that supports a lot of Google applications.

See Google Architecture for some pretty good details.

link|improve this answer
feedback

Come on guys, it's so clear: Libraries written in C++ and Java then glued with python.

link|improve this answer
feedback

Mostly C and C++.

link|improve this answer
feedback

Its clear, C++, JAVA and Python,

link|improve this answer
feedback

certainly python

check the link

https://www.google.com/support/accounts/bin/request.py?hl=en&contact_type=acc_reco&ara=2&ctx=acc_reco&source=no_ts&rd=1

link|improve this answer
feedback

protected by Community Jul 27 '11 at 11:22

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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