Hi Dagster Family :dagstir:-- Is it possible to ...
# ask-community
n
Hi Dagster Family dagstir-- Is it possible to create a multi partitioned job (date + static) without using an asset? did some searching around and couldnt find any slack threads/ doc pages that talk about this explicitly.
c
Yes, on an op job you can just pass a multipartitions def into the
partitions_def
param of the job:
Copy code
@job(partitions_def=multipartitions_def)
...
n
That works, Thank you! 🌈