【发布时间】:2022-09-26 14:29:13
【问题描述】:
https://docs.microsoft.com/en-us/azure/azure-functions/functions-scale 说:
事件驱动。自动扩展,即使在高峰期 加载。 Azure Functions 基础结构可扩展 CPU 和内存资源 通过添加 Functions 主机的其他实例,基于 传入触发事件的数量。
协调器函数调用的活动函数是否算作\"传入触发事件\"?
如
yield context.df.callActivity(\'myActivity\', {})另一个类型的触发器函数(例如队列触发器)调用协调器函数会怎样?
如:
const instanceId = await client.startNew(\'MyOrchestrator\", undefined, {});
标签: azure azure-functions