Nicholas Pezolano
02/10/2023, 7:43 PMTimeDeltaSensor
that you can set to wait for a number of hours.jamie
02/10/2023, 9:53 PMhour_offset
parameter of DailyPartitionsDefinition
to do this https://docs.dagster.io/_apidocs/partitions#dagster.DailyPartitionsDefinitionsource
button you’ll be able to read the docstringNicholas Pezolano
02/11/2023, 1:39 AMhour_offset
to a number greater than 24 and I get the following error in the UI
Operation name: LaunchAssetLoaderQuery
Message: [30 27 * * *] is not acceptable, out of range
Path: ["assetNodes",7,"partitionDefinition"]
Locations: [{"line":31,"column":3}]
This is my partition
DailyPartitionsDefinition(start_date="2023-01-12",
fmt='%Y-%m-%d',
timezone='America/New_York',
minute_offset=30,
hour_offset=27)
jamie
02/16/2023, 6:27 PMNicholas Pezolano
02/16/2023, 6:34 PMjamie
02/16/2023, 6:36 PMYou can use the,minute_of_hour
,hour_of_day
, andday_of_week
parameters ofday_of_month
to control the timing of the schedule. For example, if you have a job that’s partitioned by date, and you setbuild_schedule_from_partitioned_job
tominute_of_hour
and30
tohour_of_day
, the schedule would submit the run for partition1
at 1:30 AM on2020-04-01
.2020-04-02
Nicholas Pezolano
02/16/2023, 6:38 PM