I'm finding hard time in understanding the flow of what is happening in nextKeyValue() method explained in the below link:
http://analyticspro.org/2012/08/01/wordcount-with-custom-record-reader-of-textinputformat/
especially the for loop in in nextKeyValue()
Any help would be appreciable
Thanks in advance
The method nextKeyValue() will be used by each mapper, to iterate between all split records.
The class NLinesRecordReader defines that each record has 3 lines.
The main role for the loop in nextKeyValue() is to get for each record 3 lines. The record will be used as an input value on the map() method.