Tagged Questions
The reducers tag has no wiki summary.
2
votes
2answers
591 views
Amazon MapReduce no reducer job
I am trying to create a mapper only job via AWS (a streaming job).
The reducer field is required, so I am giving a dummy executable, and adding -jobconf mapred.map.tasks=0 to the Extra Args box. In ...
1
vote
1answer
89 views
concatenating reducer outputs from SequenceFileOutputFormat
I've got a job that uses 100 reducers config'ed with
setOutputFormat (SequenceFileOutputFormat.class);
After the job runs, can I combine all of the part files via
the following command and have ...
1
vote
1answer
304 views
Hadoop PIG ouput is not split in mutliple files with PARALLEL operator
Looks like that I'm missing something. Number of reducer on my data although creates that many number of files in HDFS but my data is not split into multiple files. What I notcied that if I do a group ...
1
vote
1answer
64 views
MapReduce inefficient reducer
What would cause only a single reducer in a MapReduce job apart from all the keys output by the map function being the same?
1
vote
4answers
176 views
Mappers, Reducers, FIlters
I know about map/reduce alghoritm and its use. It's using functions that are called Mappers and Reducers, but I also find people use the word Filters.
Are Filters same as Mappers or is there some ...
0
votes
1answer
49 views
how to find the id of each map task?
I want to get the id of each mapper and reducer task because I want to tag the output of these mappers and reducers according to the mapper and reducer id. How can I retrieve the ids of each?
Thanks
-1
votes
1answer
131 views
Save reducers output directory path to a variable in Hadoop
How do I save the output path of Hadoop reducers to a variable?
This variable will be used by all other MR jobs.
These jobs will be sequential.
All the sequential MR jobs will write their ...