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

  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 partitioning, though …

  3. mapreduce - Does Spark internally use Map-Reduce? - Stack Overflow

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

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

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

  5. java - Mapreduce Combiner - Stack Overflow

    I have a simple mapreduce code with mapper, reducer and combiner. The output from mapper is passed to combiner. But to the reducer, instead of output from combiner,output from mapper is passed. Ki...

  6. 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.

  7. 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 hint to the …

  8. mapreduce - hadoop map reduce secondary sorting - Stack Overflow

    Aug 23, 2013 · Can any one explain me how secondary sorting works in hadoop ? Why must one use GroupingComparator and how does it work in hadoop ? I was going through the link given below and …

  9. mapreduce - When do reduce tasks start in Hadoop? - Stack Overflow

    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 typically used?

  10. hadoop - MapReduce Architecture - Stack Overflow

    Dec 10, 2018 · The MapReduce Architecture works in various different phases for executing a job. Here are the different stages of running a MapReduce Application - The first stage involves the user …