https://dagster.io/ logo
#dagster-support
Title
# dagster-support
r

Rafael Gomes

01/05/2023, 6:37 PM
Is it possible to create multiple job sensors?
🤖 1
c

claire

01/05/2023, 7:54 PM
Yes. Different sensors can trigger the same job, and different sensors can also monitor the same job.
r

Rafael Gomes

01/05/2023, 8:01 PM
I mean, I have 3 jobs and I want to trigger all of then using the same sensor.
c

claire

01/05/2023, 8:02 PM
That's possible,
@sensor
has a
jobs
param that allows you to select multiple jobs that may be triggered from the same sensor
you'll just need to yield a
RunRequest(job_name=...)
for each job
❤️ 1
r

Rafael Gomes

01/05/2023, 8:04 PM
Thanks, exactly what I needed.
🌈 1
6 Views