Reputation: 31
I'd like to establish an order of events in my snaplogic pipeline. I'd like to perform (for example) a SQL Execute snap, and then after that, another different snap. There's no input/output data relationship between these snaps. I just want one to proceed first, and then after that, the next one. Is there a snap, or some other feature of the tool, that allows you to establish an arbitrary order of snaps?
Upvotes: 1
Views: 786
Reputation: 2822
In such a situation, I create one pipeline by task, and orchestrate the tasks with a chain of Execute Pipeline
snaps.
This provides several advantages:
Execute Pipeline
snap, that will still be able to be chained with only metadata at its output.Upvotes: 0
Reputation: 4131
You have to connect the snaps in sequence if you want to establish an order of events in your SnapLogic pipeline.
For most implementations, (say) if you want to execute Snap B after Snap A, put a Tail snap between them (connecting Snap A and Snap B). This will ensure that Snap B is executed after Snap A.
Upvotes: 0