Hej, A lot of my inputs are csv files so I use the CsvInputFormat a lot. What I find kind of odd that the Line delimiter is a String but the Field delimiter is a Character.
*see:* new CsvInputFormat<Tuple2<String,String>>(new Path(pVecPath),"\n",'\t',String.class,String.class) Is there a reason for this? I'm currently working with a file that has a more complex field delimiter so I had to write a mapper to read from StringInputFormat. cheers Martin
