【Azure 应用服务】Azure Function Timer触发函数加上Singleton后的问题 - LuBu0505/My-Code GitHub Wiki

问题描述

在Azure Function Timer Trigger的函数中,添加了Singleton属性,当Function的实例变为3个后,发现Timer函数并没有在三个实例上同时运行,每次触发时,都只有在一个实例上运行。这时因为Singleton属性的原因吗? image

问题解答

在调查Singleton属性中,确实有描述 Singleton 单例模式,保证Function 在多个实例中,只会在一个实例上运行。详见:https://learn.microsoft.com/en-us/azure/app-service/webjobs-sdk-how-to#singleton-attribute

The Singleton attribute ensures that only one instance of a function runs, even when there are multiple instances of the host web app. The Singleton attribute uses distributed locking to ensure that one instance runs.

但是,在深入查看Function Timer 触发器的文档后,发现Timer 函数只会单实例运行。不存在并发情况! image

通过实验测试,在没有使用Singleton属性的情况下,Timer函数只在一个实例上运行! image image

参考资料

WebJob / Function Singleton attribute : https://learn.microsoft.com/en-us/azure/app-service/webjobs-sdk-how-to#singleton-attribute 

Azure Functions 的计时器触发器 横向扩展 : https://docs.azure.cn/zh-cn/azure-functions/functions-bindings-timer?tabs=in-process&pivots=programming-language-csharp#scale-out

当在复杂的环境中面临问题,格物之道需:浊而静之徐清,安以动之徐生。 云中,恰是如此!

分类: 【Azure 应用服务】

标签: Azure Function TimerSingleton单实例运行Timer Trigger不能多实例运行