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

li liang

08/20/2022, 3:35 AM
Is it possible to define a asset with a static partition and a time window-partition at same time? for example: the asset is partitioned by "company_name_1" and 2022-01-01 at same time.
c

chris

08/22/2022, 7:35 PM
It is possible, but you would have to write your own
PartitionsDefinition
in order to do so.
DynamicPartitionsDefinition
might be a good option for this, as it allows you to output a partition for a given timestamp.
l

li liang

08/23/2022, 5:49 AM
Got, Thanks a lot
3 Views