Skip to content

Commit

Permalink
Fix partitioning for ECMWF (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
devsjc authored Sep 14, 2023
1 parent 9b5cc8f commit 0df3884
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nwp/jobs.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import datetime as dt

from dagster import (
daily_partitioned_config,
AssetSelection,
DailyPartitionsDefinition,
ScheduleDefinition,
Expand Down Expand Up @@ -59,7 +60,7 @@ def build_config_on_runtime(model, run, delay=0):
schedules.append(ScheduleDefinition(job=asset_job, cron_schedule="0 8 * * *"))


@partitioned_config(partitions_def=DailyPartitionsDefinition(start_date=dt.datetime(2021, 1, 1)))
@daily_partitioned_config(start_date=dt.datetime(2021, 1, 1))
def ecmwf_daily_partitioned_config(start: dt.datetime, _end: dt.datetime):
return {"ops": {"nwp_consumer_docker_op": {"config": {
"date_from": start.strftime("%Y-%m-%d"),
Expand Down

0 comments on commit 0df3884

Please sign in to comment.