I have a text input file and it is delimited by line breaks. In each mapper, I need to read the next line of my key/value. for example, in this data:
L1
L2
L3
I need something like this:
L1
L2
and in the next mapper:
L2
L3
thanks in advance.