I want to process a lot of files in Hadoop -- each file has some header information, followed by a lot of records, each stored in a fixed number of bytes. Any suggestions on that?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I think the best solution is to write a custom |
|||
|
|
|
In addition to write a custom FileInputFormat, you will also want to make sure that the file is not splitable so the reader knows how to process the records inside the file. |
|||
|
|
|
There is one solution , you can check the offset of line of files that mapper reads . It will be zero for the first line in the file . so you can add line in Map as follows: public void map(LongWritable key,Text value,Context context) throws IOException, InterruptedException {
So, it will skip the first line of the file. However, its not a good way because in this way this condition will be checked for each line in the file. Best way is to use your Custom Input Format |
|||
|
|