Azure 搜索,例如 Azure 函数的调度

Azure Search like scheduling for Azure Function

Azure 搜索提供了设置开始日期时间和间隔(以分钟为单位)以安排索引器运行的功能。有没有什么方法可以在 Azure Function 中使用计时器触发器实现类似的配置,以在特定的日期时间开始,然后在每个时间间隔之后?

很遗憾,Azure timer trigger function 无法设置 Start Time。定时触发器从当前时间开始运行,按照NCRONTAB expressions.

指定的周期执行函数

解决方案:

也许你可以使用 Azure logic app to solve your problem, but in this solution, you need to use Http trigger function

首先,您需要使用 Recurrence trigger, this timer can specify the time to start running, and then you can specify the time interval by changing the Frequency; then you need to use the Function connector 调用您的 Function

注:

为了能够被 Azure 逻辑应用程序调用,您需要使用 http 触发器。

请参考我的 azure logic 应用: