azure - 每 3 天运行一次 Azure Function

标签 azure cron azure-functions

我想创建一个 cron 表达式来每 3 天中午 12:00 运行一次 Azure Function

我创建了这个:0 0 */72 * * * 根据我的理解,它应该使该函数每 72 小时运行一次。当我在本地运行我的函数时,我看到: enter image description here

看起来函数每天都会运行。怎么了?如何指定函数开始的时间(12:00 PM)?

最佳答案

更新:根据 @markxa 提到的,它将在每个月的第 3 天中午 12:00 运行。 请使用:0 0 12 1/3 * *

测试结果如下: enter image description here

关于azure - 每 3 天运行一次 Azure Function,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53431352/

相关文章:

visual-studio - 如何调试我的 Azure 项目中的其他程序集

linux - 将作业添加到 crontab

mysql - 无法使用sequelize和无服务器框架从部署的 Node azure功能连接到mysql灵活服务器

azure - 删除后恢复 Azure Databricks

Azure构建管道: Is it possible to sign an MSIX within the VSBuild task using a code signing certificate stored in the Key Vault?

python - 在 docker 中运行 cron python 作业

spring - 使用cron在Spring中安排周期性的 react 任务?

c# - 如何在不将客户端 key 存储在 appsettings.json 中的情况下获取 Azure Key Vault key ?

java - 服务总线主题触发的 Java Azure 函数是否支持 MessageReceiver?

与托管 API 通信的 Javascript?