This post has been de-listed
It is no longer included in search results and normal feeds (front page, hot posts, subreddit posts, etc). It remains visible only via the author's post history.
hey all,
been working with durable functions for a couple months now and thought I would give the v2 model a go. It all seems pretty straight forward and so far is working as intended. The only piece that I am having issues with and I can't seem to slog through the microsoft documentation to find anything about it is the timer trigger? If someone could show me how to set up a timer trigger for a durable function I would appreciate it, thanks!
To be specific I can get a timer trigger to functions, I'm just unsure how to get it to start the orchestration:
\@myApp.schedule(schedule="*/5 * * * * *", arg_name="myTimer", run_on_startup=True, use_monitor=False)
def TimerTrigger(myTimer: func.TimerRequest) -> None:
if myTimer.past_due:
logging.info("The timer is past due")
logging.info("python timer trigger function executed")
Post Details
- Posted
- 1 year ago
- Reddit URL
- View post on reddit.com
- External URL
- reddit.com/r/AZURE/comme...