Chain Mapper class is a special implementation of
Mapper class through which a set of mapper classes can be run in a chain
fashion, within a single map task.
In this chained pattern execution, first mapper output
will become input for second mapper and second mappers output to third mapper,
and so on until the last mapper.
Its class name is org.apache.hadoop.mapreduce.lib.ChainMapper.