I work with Pentaho (aka Kettle) data integration, and I have several Transformations, let me call them A, B, C, D, E. B depends on A, D depends on C and E depends on B and D. In the task I would like to run A, B and C, D in parallel:
-> A -> B _
Start< \
-> C -> D----> E
where A and C work in parallel. Is there a way to execute E only if B & D were successful? Right now, looking at Job metrics, E starts as soon as B OR D.
source
share