Rafael Gomes
01/16/2023, 11:03 PMA
(static partitioned) and B
(daily partitioned). I would like to have a third job C
that will trigger A
and B
(passing the appropriate partitions key).@job
def C():
static_partitions = ["a", "b", "c"]
for sp in static_partitions:
A.run_request_for_partition(partition_key=sp)
day = "2023-01-16"
B.run_request_for_partition(partition_key=day)
It does appear in Dagit I can trigger on launchpad but does nothing.chris
01/17/2023, 9:31 PM@job
just services to construct the computation graphA
and B