0 votes
in HDFS by
What are the parameters of Mappers and Reducers?

1 Answer

0 votes
by
The four parameters for mappers are:

LongWritable (input)

text (input)

text (intermediate output)

IntWritable (intermediate output)

The four parameters for reducers are:

Text (intermediate output)

IntWritable (intermediate output)

Text (final output)

IntWritable (final output)
...