0 votes
in HDFS by
What main configuration parameters are specified in Mapreduce?

1 Answer

0 votes
by

The MapReduce programmers need to specify following configuration parameters to perform the map and reduce jobs:

The input location of the job in HDFs.

The output location of the job in HDFS.

The input’s and output’s format.

The classes containing map and reduce functions, respectively.

The .jar file for mapper, reducer and driver classes

...