Regarding the Dagster scheduler decorator: is it possible to, for example, create a schedule which runs once per month on the last weekday of the month? Typically this sort of thing is done with a script in conjunction with cron - is this functionality supported in any way through Dagster? Thanks!
s
schrockn
06/15/2021, 3:07 PM
The best way do this is to use the
should_execute
callback argument in @schedule
So you would set it up to run daily but then skip all the runs except the last weekday of the month