anonymous user As you have two different functions which will run independently and unfortunately there is no configuration that will help you with your scenario. The only possible scenario will be leveraging durable functions where the starter function can be any trigger and you can have orchestrator and activity functions that can run next.
limiting the concurrency between the functions in the function app.
Anonymous
Hi,
I've two azure functions in a function app one is timer trigger and other is blob trigger in a function app, I can i limit them from running concurrently.
Is there any paramerter in the host.json ?
Thanks in advance
Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
5,909 questions
Accepted answer
-
MayankBargali-MSFT 70,936 Reputation points Moderator
2022-02-17T02:52:41.397+00:00
1 additional answer
Sort by: Most helpful
-
Nasreen Akter 10,811 Reputation points Volunteer Moderator
2022-02-14T19:45:57.543+00:00 Hi anonymous user,
Hope this Azure Functions concurrency: maxConcurrentRequests vs FUNCTIONS_WORKER_PROCESS_COUNT thread will help. Also you can see the below documentation. Thanks!