I want to override Hadoop's default record reader within my Java code. It reads records line-by-line by default. I changed it when it encounters ":", separates the records. However, while seprating the records, it also emits the delimiter. So for example, my records are:
> I go to school : He goes to school : we go to school
When records are read, it produces like:
I go to school
He goes to school
we go to school
However the delimiter - ":" is gone. Is there way to keep this delimiter in records? Because there may be some important informations in delimiters.