Hello everyone. When using sensor, if I pass a lis...
# ask-community
n
Hello everyone. When using sensor, if I pass a list of jobs to be executed when the sensor fires, it will execute the jobs in parallel or sequential by order's list?
my use case is: I have 3 different jobs (a, b, c)... that first one (job. a) depends on having specific file on s3, then
b
depends when
a
is finished, and
c
when
b
is finished. So, just wondering if i create a sensor that checks for file on s3, having a list of jobs [a,b,c], would work as im expecting.