Hi team! I'm trying to create a job with hourly pa...
# ask-community
m
Hi team! I'm trying to create a job with hourly partition config. But I'd like to have schedule to be run one hour "later" than partition as we need some retention period for the data to be ready to be collected. E.g. if job is scheduled to run on 3:00 then partition should correspond to 2:00. Is it possible to do this with
build_schedule_from_partitioned_job
?
dagster bot responded by community 2
s
You should be able to use one of the
offset
settings to either move a partition back in time or run previous partitions later. E.G.
end_offset
here: https://docs.dagster.io/_apidocs/partitions#dagster.hourly_partitioned_config I think this would go in your PartitionedConfig function rather than in the
build_schedule_from_partitioned_job
call.