I have to parse x12 file using hadoop mapreduce code. Could some one please suggest me to how to do this? The parsed output should consumable by some other hadoop tool like hive
Thanks, Rocto
I have to parse x12 file using hadoop mapreduce code. Could some one please suggest me to how to do this? The parsed output should consumable by some other hadoop tool like hive
Thanks, Rocto
We need more information, but at a high level:
Based on your language get or create an X12 parser. https://code.google.com/p/x12-parser/ http://www.smooks.org/mediawiki/index.php?title=Main_Page
Decide on what your mapreduce job is going to ouput:
Write a job that gets X12 documents (you didn't say how they are stored, but I assume you have files in HDFS with the X12), and uses your parser to emit whatever you want downstream.