What is the biggest files you have been able to parse with this parser?
I need to parse 837 files with thousands of claims in them.
To get unblocked, I added a split837 method to the X12Reader which is doing a map reduce to take the huge x12 file and split into chunks. I split at child loops at the DETAIL loop.
Once the 837 is split into chunks, I just operate on those chunks separately using the normal parse method.
Anyone else have anything similar they had to do?
What is the biggest files you have been able to parse with this parser?
I need to parse 837 files with thousands of claims in them.
To get unblocked, I added a split837 method to the X12Reader which is doing a map reduce to take the huge x12 file and split into chunks. I split at child loops at the
DETAILloop.Once the 837 is split into chunks, I just operate on those chunks separately using the normal parse method.
Anyone else have anything similar they had to do?