0 votes
in Big Data | Hadoop by

How to set the number of mappers to be created in MapReduce?

1 Answer

0 votes
by

The number of Mappers that Hadoop creates is determined by the number of Input Splits you have in your Data.
Relation is simple:

No. of Mappers = No. of Input Splits.

So, in order to control the Number of Mappers, you have to first control the Number of Input Splits Hadoop creates before running your MapReduce program. One of the easiest ways to control it is setting the property ‘mapred.max.split.size’ while running your MR program.

Example:
Let’s assume your Input data is 1 TB. So, number of Physical Data Blocks = (1 * 1024 * 1024 / 128) = 8192 Blocks.
By Default, if you don’t specify the Split Size, it is equal to the Blocks (i.e.) 8192. Thus, your program will create and execute 8192 Mappers !!!

Let’s say you want to create only 100 Mappers to handle your job.
As mentioned above, 100 Mappers means 100 Input Splits. So each Split size should be set to (1 * 1024 * 1024 / 100) = 10486 MB

Execute it as follows:
hadoop jar <your-script.jar> <main class> -Dmapred.max.split.size=10486 <input file> <output directory>

Related questions

0 votes
asked Apr 8, 2020 in Big Data | Hadoop by GeorgeBell
0 votes
asked Apr 1, 2020 in Big Data | Hadoop by AdilsonLima
...