I. Introduction
The Map Reduce On-process is a modified version of Hadoop Map Reduce, an open-source implementation of the Map Reduce programming model. It supports on-process Aggregation and stream processing, while also improving utilization and decreases response time. Proposed Map-Reduce implementations materialize the intermediate results of mappers. This approach has the advantage of simple recovery at time of failures, however, reducers cannot start execution of tasks before all mappers have finished. The main motivation of Map Reduce On process is to overcome these problems by introducing combiner, while preserving fault-tolerance guarantees. Although MapReduce was originally designed as a batch oriented system, it is often used for data analysis. User can submits a job to extract information from a data set, and then waits to view the results before doing next step of analysis process.