Hi everyone. I am very new with Dagster and I would like to know if we can connect a job to another job?
r
raaid
10/22/2021, 3:02 PM
You can trigger a run from another one using sensors; I yield AssetMaterializations at the end of certain jobs, and I have AssetSensors that watch for the creation of said assets. If the sensor sees a new one, it yields a RunRequest for a job. So that's one way to do it
I believe you can do it without using Assets but I haven't done it that way so can't speak to it very well
r
Rodrigo Schammass
10/22/2021, 3:25 PM
thank you very much raaid. I appreciated so much your help. have a wonderful weekend
Hi folks, here’s some example code snippets for a similar use case in this GitHub discussion. Please feel free to comment or leave your answer on it as well.