03-05-2021 06:08 AM
I have the following flow, and I’m noticing that Exe Contract Amendment is getting executed before the all inputs from Union Original are received. Is that expected? If so, how do I get the Exe Contract Amendment snap to wait for the union?
Solved! Go to Solution.
03-05-2021 07:01 AM
Be careful with Gate… it accumulates all documents in memory and could consume all available resources if you are processing a large number of records.
You could use Sort after the Union instead, which will cache to disk and will wait for all input documents to be processed before continuing to the next snap.
03-05-2021 06:47 AM
03-05-2021 06:51 AM
Great, thank you for the help!
03-05-2021 07:01 AM
Be careful with Gate… it accumulates all documents in memory and could consume all available resources if you are processing a large number of records.
You could use Sort after the Union instead, which will cache to disk and will wait for all input documents to be processed before continuing to the next snap.
03-05-2021 07:23 AM
Great, thanks for the additional information.