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

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

  3. Newest 'mapreduce' Questions - Stack Overflow

    MapReduce is a programming model and an associated implementation for processing and generating large data sets. Sign up to watch this tag and see more personalized content

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

  5. mapreduce - hadoop map reduce secondary sorting - Stack …

    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 …

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

  7. mapreduce - Hadoop WordCount example stuck at map 100

    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 …

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

  9. How can I multiply matrices in python using MapReduce?

    How can I multiply matrices in python using MapReduce? Asked 5 years, 3 months ago Modified 4 years, 6 months ago Viewed 3k times

  10. mapreduce - Split size vs Block size in Hadoop - Stack Overflow

    May 30, 2015 · What is relationship between split size and block size in Hadoop? As I read in this, split size must be n-times of block size (n is an integer and n > 0), is this correct? Is there any …