About 50 results
Open links in new tab
  1. frameworks - Simple explanation of MapReduce? - Stack Overflow

    Aug 26, 2008 · 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 map function …

  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 - 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 …

  4. 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 …

  5. mapreduce - How to optimize shuffling/sorting phase in a hadoop …

    Dec 10, 2015 · mapreduce.shuffle.max.threads: Number of worker threads for copying the map outputs to reducers. mapreduce.reduce.shuffle.input.buffer.percent: How much of heap should …

  6. Setting the number of map tasks and reduce tasks - Stack Overflow

    Jul 31, 2011 · For each input split a map task is spawned. So, over the lifetime of a mapreduce job the number of map tasks is equal to the number of input splits. mapred.map.tasks is just a …

  7. what are the disadvantages of mapreduce? - Stack Overflow

    Sep 3, 2013 · What are the disadvantages of mapreduce? There are lots of advantages of mapreduce. But I would like to know the disadvantages of mapreduce too.

  8. mapreduce - When do reduce tasks start in Hadoop? - Stack …

    Jul 26, 2012 · In Hadoop when do reduce tasks start? Do they start after a certain percentage (threshold) of mappers complete? If so, is this threshold fixed? What kind of threshold is …

  9. A starting point for learning how to implement …

    Also note that for testing/learning things you can run Hadoop on your local machine without having an actual cluster. UPDATE: As for understanding Map Reduce (that is how to identify …

  10. 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 …