Writing Custom Splitter for large File

2019-04-20 Thread Darius Cooper
My Requirement: - Large mainframe file, with end-of-line fore each record - But, need to split into groups of records, based on the value in a certain range of bytes (it is the key that connects records) - Groups of such related records are always contiguous So, - I assume one has to write a custo

Re: Writing Custom Splitter for large File

2019-04-20 Thread Michael Joyner
Darius, I would let the splitter split the rows (end-of-lines) and let your aggregator group them based on that key. You typically specify that key to the aggregator so it can create your groups for you. I believe that is exactly what the aggregator is intended for. Also, you would be surprised h