Azure Function execution count is more than 1.We Need to restrict the count to 1.
I have a Azure function with time trigger triggered for every 5 min, which is deployed and running. The "Function Execution Count" is more than 1 when there is a load in the function or Azure function takes more time to run .How to restrict the function execution count. I had made three configurations But nothing is restricting .Basically we need to avoid over lapping of function calls if function is taking more time to run a single execution.
Below settings are done and nothing is restricting
1)Maximum Scale out Limit to 1.
2)WEBSITE_MAX_DYNAMIC_APPLICATION_SCALE_OUT to 1
3)maxConcurrentCalls to 1 in host.json file