Reputation: 85
We've got a large & complicated file that takes a long time to disassemble (say, an hour). It would be great if we could spin off messages as they leave the receive pipeline and start on their itinerary immediately before the file is finished. I can tell that it's not easy but is it possible at all?
Upvotes: 1
Views: 229
Reputation: 11040
Not out of the box. Pipeline disassembly is transactional so, as you observe, the entire interchange is debatched and commited to the MessageBox at once.
Here are some options:
I have used both of these where the incoming files have had 100k to 400k records and it does provide a more managable performance profile.
Upvotes: 7