Hi, is there a way to backfill a daily partitioned...
# ask-community
c
Hi, is there a way to backfill a daily partitioned dataset but have it skip weekends? I have a schedule that yields a skip reason for weekend days, but when I backfill through dagit, run requests are yielded for those weekend days.
dagster bot responded by community 1
a
Rather than use a
DailyPartitionsDefinition
, why not use a
TimeWindowPartitionsDefintion
directly, and pass a cron_schedule that skips weekends? https://docs.dagster.io/_apidocs/partitions#dagster.TimeWindowPartitionsDefinition
🌈 1
c
This is perfect for my use case. Thanks!