首页 > 解决方案 > 如何在 Mac 上本地运行计时器触发的 Azure Functions?

问题描述

我想在我的本地开发环境(Node、OS X)中执行一个计时器触发的函数,但它似乎需要对我拥有的 HTTP 触发的函数设置进行一些更改。

这是到目前为止与计时器功能相关的代码:

/cron-job/function.json定义一个定时器输入绑定,每分钟运行一次。它还引用了代码入口点(从 Typescript 编译):

{
  "bindings": [
    {
      "type": "timerTrigger",
      "direction": "in",
      "name": "timer",
      "schedule": "0 */1 * * * *"
    }
  ],
  "scriptFile": "../dist/cron-job/index.js"
}

/cron-job/index.ts

import { AzureFunction, Context } from '@azure/functions'

const timerTrigger: AzureFunction = async function (
  context: Context,
  timer: any,
) {
  console.log('context', context)
  console.log('timer', timer)

  // move on with async calls...
}

export default timerTrigger

/local.settings.json

{
  "IsEncrypted": false,
  "Values": {
    "FUNCTIONS_WORKER_RUNTIME": "node",
    "AzureWebJobsStorage": ""
  }
}

当我尝试启动函数应用程序时:

 ~/Projects/test-api (dev) $ func start --verbose

我收到一个错误:

Missing value for AzureWebJobsStorage in local.settings.json. This is required for all triggers other than httptrigger, kafkatrigger. You can run 'func azure functionapp fetch-app-settings <functionAppName>' or specify a connection string in local.settings.json.

当我将AzureWebJobsStorage设置添加到local.settings.json我得到另一个错误:

The listener for function 'Functions.cron-job' was unable to start.
The listener for function 'Functions.cron-job' was unable to start. Microsoft.Azure.Storage.Common: Connection refused. System.Net.Http: Connection refused. System.Private.CoreLib: Connection refused.

标签: azureazure-functionsazure-storage-emulatorazure-triggersazurite

解决方案


经过一些研究,我想出了一个我认为应该分享的工作设置。

我原来设置的问题是:

  1. 没有"AzureWebJobsStorage": "UseDevelopmentStorage=true"local.settings.json. 我已经启动并运行了一个 HTTP 触发功能,但似乎计时器触发器需要该设置。对于使用存储模拟器的本地开发,可以使用UseDevelopmentStorage=true 快捷方式。

  2. 未安装存储模拟器。在 Windows 上,它似乎是 Microsoft Azure SDK 的一部分和/或它可以作为独立工具安装。但它不适用于 Mac 和 Linux。但是,有一个可用的开源替代方案:Azurite,它将取代 Storage Emulator

作为参考,我创建了一个 Typescript 启动器存储库,可以扩展它以编写您自己的 Azure 计时器触发函数:azure-timer-function-starter-typescript


推荐阅读