Is it possible to define a asset with a static par...
# ask-community
l
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
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
Got, Thanks a lot