About 14,800,000 results
Open links in new tab
  1. 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 …

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

  4. mapreduce - How to optimize shuffling/sorting phase in a hadoop job ...

    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 be used for …

  5. 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 table using the commands in the hive console: CREATE

  6. Setting the number of map tasks and reduce tasks

    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 …

  7. mapreduce - Hadoop WordCount example stuck at map 100% reduce …

    Apr 15, 2012 · I also encountered this issue on a host running Suse 11. As Chris notes above, the issue is with the mapper. To solve the issue, I edited the /etc/hosts file and removed the ip address of the …

  8. mapreduce - Hadoop error in shuffle in fetcher: Exceeded MAX_FAILED ...

    Jun 5, 2014 · I am new to hadoop. I have a kerberos security enabled hadoop cluster (master and 1 slave) set up on a virtual box. I am trying to run a job from the hadoop examples 'pi'. The job …

  9. mapreduce - How to get the input file name in the mapper in a …

    Sep 25, 2013 · If you are using Hadoop Streaming, you can use the JobConf variables in a streaming job's mapper/reducer. As for the input file name of mapper, see the Configured Parameters section, …

  10. c# - Map and Reduce in .NET - Stack Overflow

    What scenarios would warrant the use of the "Map and Reduce" algorithm? Is there a .NET implementation of this algorithm?