About 13,900,000 results
Open links in new tab
  1. frameworks - Simple explanation of MapReduce? - Stack Overflow

    May 23, 2017 · 69 MapReduce is a method to process vast sums of data in parallel without requiring the developer to write any code other than the mapper and reduce functions. The …

  2. How does the MapReduce sort algorithm work? - Stack Overflow

    MapReduce's use of input files and lack of schema support prevents the performance improvements enabled by common database system features such as B-trees and hash …

  3. mapreduce - Hadoop Map Reduce read a text file - Stack Overflow

    Apr 8, 2023 · I'm trying to write a MapReduce program that can read an input file and write the output to another text file. I'm planning to use the BufferedReader class for this. But I don't …

  4. mapreduce - What is Hive: Return Code 2 from …

    I am getting: FAILED: Execution Error, return code 2 from org.apache.hadoop.hive.ql.exec.MapRedTask While trying to make a copy of a partitioned …

  5. How does partitioning in MapReduce exactly work? - Stack Overflow

    Dec 10, 2015 · I think I have a fair understanding of the MapReduce programming model in general, but even after reading the original paper and some other sources many details are …

  6. mapreduce - Why is Spark faster than Hadoop Map Reduce

    Sep 14, 2015 · Can someone explain using the word count example, why Spark would be faster than Map Reduce?

  7. How to implement the combiner in Hadoop MapReduce?

    Mar 13, 2014 · A Combiner should simply be a Reducer, and thusly implement the Reducer interface (there is no Combiner interface). Think of the combining step as a sort of …

  8. What is the purpose of shuffling and sorting phase in the reducer …

    Mar 3, 2014 · Then, the MapReduce job stops at the map phase, and the map phase does not include any kind of sorting (so even the map phase is faster). Tom White has been an Apache …

  9. Writing MApreduce code for counting number of records

    Feb 12, 2012 · 2 I want to write a mapreduce code for counting number of records in given CSV file.I am not getting what to do in map and what to do in reduce how should I go about solving …

  10. mapreduce - Does Spark internally use Map-Reduce? - Stack …

    Feb 3, 2019 · Compared to MapReduce, which creates a DAG with two predefined stages - Map and Reduce, DAGs created by Spark can contain any number of stages. DAG is a strict …