We strive to create an environment conducive to many different types of research across many different time scales and levels of risk.
Learn more about our Philosophy
Learn more
Our researchers drive advancements in computer science through both fundamental and applied research.
Learn more about our People
Learn more
We regularly open-source projects with the broader research community and apply our developments to Google products.
Learn more about our Projects
Learn more
Publishing our work allows us to share ideas and work collaboratively to advance the field of computer science.
Learn more about our Publications
Learn more
We make products, tools, and datasets available to everyone with the goal of building a more collaborative ecosystem.
Learn more about our Resources
Learn more
Participating in the academic research community through meaningful engagement with university faculty.
Learn more about our Faculty programs
Learn more
Connecting with the broader research community through events is essential for creating progress in every aspect of our work.
Learn more about our Conferences & events
Learn more
MapReduce is a programming model and an associated implementation for processing and generating large data sets. Users specify a map function that processes a key/value pair to generate a set of intermediate key/value pairs, and a reduce function that merges all intermediate values associated with the same intermediate key. Many real world tasks are expressible in this model, as shown in the paper.
Programs written in this functional style are automatically parallelized and executed on a large cluster of commodity machines. The run-time system takes care of the details of partitioning the input data, scheduling the program's execution across a set of machines, handling machine failures, and managing the required inter-machine communication. This allows programmers without any experience with parallel and distributed systems to easily utilize the resources of a large distributed system.
Our implementation of MapReduce runs on a large cluster of commodity machines and is highly scalable: a typical MapReduce computation processes many terabytes of data on thousands of machines. Programmers find the system easy to use: hundreds of MapReduce programs have been implemented and upwards of one thousand MapReduce jobs are executed on Google's clusters every day.
HTML Slides