Azure Functions - Limiting parallel execution

后端 未结 3 1386
清酒与你
清酒与你 2021-01-01 09:47

Is it possible to limit the maximum number of Functions that run in parallel?

I read the documentation and came across this:

When multiple trigger

3条回答
  •  無奈伤痛
    2021-01-01 10:38

    Microsoft has added a new setting which can be used to limit concurrency of function execution. The setting is WEBSITE_MAX_DYNAMIC_APPLICATION_SCALE_OUT and can be used to limit how many function instances will execute in parallel. However, according to Microsoft, it isn't fully implemented yet.

    https://github.com/Azure/azure-functions-host/wiki/Configuration-Settings

提交回复
热议问题