@vincent219 The maxconcurrentcalls setting is available for service bus binding in versions 2.x and higher as mentioned in this document and this should work in 3.x version. Are you observing any issue while setting this in version 3.x
Azure Function Concurrent Running Limit
vincent219
251
Reputation points
When using Service Bus Trigger, if 5000 Messages are included in Service Bus, it seems that 5000 Service Bus Triggers are not generated at once, but are controlled by some standard.
Instead of consuming messages by actively popping them, it works automatically. Therefore, I want to control the number of times a Trigger operates simultaneously with C# code.
I looked it up and there is a setting value called maxconcurrentcalls, which seems to work in Azure Function 1.x. Is there a way to get the same behavior in 3.x?