Is it possible to yield RunRequests to a dynamic job name on a sensor, without defining the job name on the sensor decorator? #26764
Unanswered
biancarosa
asked this question in
Q&A
Replies: 1 comment 2 replies
|
I believe you can use the |
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I currently have a sensor that I am trying to get it to work - it is the simplest sensor possible, using just the
@sensor()decorator, with no arguments.This sensor yields run requests based on a few parameters that come from an external source. However, Dagster is currently complaining that I need to define a job_name on the sensor definition.
Is what I'm trying to do - kickoff a job dynamically on a sensor - possible?
All reactions