run processes one after the other #2807
-
hi, I have three processes (S1, S2, S3) and I want them to run one after the other (S1 > S2 > S3). Each process uses a custom After several trials I set the output argument of the first process to I made sure my .ipynb files are working with no bugs, so I need a flag to tell a process when to start. Any suggestions ? Thanks, HM EDIT: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi @hmassalha , I'm marking your discussion as answered. Solution was to define mock dependencies between each process so that they are triggered sequentially. Additionally, make sure that your output declaration matches the name of the actual output file in your process. |
Beta Was this translation helpful? Give feedback.
-
Mock dependency is now called State dependency |
Beta Was this translation helpful? Give feedback.
Hi @hmassalha , I'm marking your discussion as answered. Solution was to define mock dependencies between each process so that they are triggered sequentially. Additionally, make sure that your output declaration matches the name of the actual output file in your process.