Hello , Welcome to MS Q&A
To configure multiple Blob/Queue triggers in Azure Functions and avoid execution bottlenecks, you can utilize dynamic concurrency. This feature allows the Azure Functions runtime to manage the number of concurrent executions dynamically based on the workload. By enabling dynamic concurrency, you can ensure that your functions can scale out to handle multiple blob events simultaneously, reducing the likelihood of bottlenecks.
Additionally, consider using the Blob storage trigger that consumes events from an event subscription, which can provide lower latency and better performance compared to polling methods. This approach can help in efficiently processing blobs as they are added or updated.
References:
Please let me know if any further questions
Please accept answer
Thanks
Deepanshu