OIC - Parallel Processing
The other day I stumbled upon a check box that enables Parallel Processing. This is part of the for-each action . According to the documentation , " If you drag a for-each action into a scheduled integration ..., an additional field called Process items in parallel is visible at the bottom of the dialog ." I have tested this and it does provide a considerable performance boost :) So let's put this into action. I have a simple Scheduled Integration that reads a file from an FTP location, performs a loop that for each line it will publish the record to a Kafka Topic. The writing sequence is irrelevant so we don't need to ensure an order - it's the perfect use case for parallel processing. If we are writing a File where the order is important, then we should avoid this option. So, first things first - Lets run this with the default option Everything you ever wanted to know about the For-Each action can be found here . The file that the Integration picks up from the F...