I wondering how "maxConcurrentCalls" setting works for Azure Service Bus (ASB) triggered Azure function(AF). I have an "azure function" App with only 1 AF in it. To handle load scenarios "Max Instance count" set to 5. Which means I can have 5 instance of my Azure running to handle increased load. But I have noticed that there is a setting "maxConcurrentCall" available.
Does Setting this to(say) 5, means my single instance will pick 5 message from the queue and execute them in Parallel? What is the default value of this setting?
Thanks