How many mappers will be created for 500mb file in hadoop distributed computing?
1 mapper for 1 block, 500mb file will split into 4 blocks in HDFS (default block size is 128mb), so 4 mapper process can be created and each process one block. #hadoop #BigData