Aaron T
03/20/2023, 4:30 AMjamie
03/20/2023, 2:44 PMpartition_mapping=TimeWindowPartitionMapping(
start_offset=-1, end_offset=-1
),
you could do
partition_mapping=TimeWindowPartitionMapping(
start_offset=-2, end_offset=-1 # start_offset is modified
),
to specify the previous 2 days of dataAaron T
03/20/2023, 2:57 PMevents
input for yesterday_event_stats
look like? How would I specify getting the different partitions data?events
assetjamie
03/20/2023, 4:50 PMAaron T
03/20/2023, 5:24 PMJobIn
like AssetIn
? I setup my partition as a job because I wanted to view ops to track the progress of each partition. But now how would I add a TimeWindowPartitionMapping
an analytics job? I could change my partition to an asset, but I don't need every op to be an asset, which is why I like the job partition.