Hello Keerthana, Welcome to MS Q&A
To address the limitation of having only 5 concurrent connections per consumer group in Azure Event Hub, you can consider the following approaches:
Create Separate Consumer Groups: By creating additional consumer groups, you can distribute the load and avoid hitting the connection limit. This involves creating separate inputs with different consumer groups for the same event hub.
Use the WITH Clause: For queries involving multiple inputs connected to the same Event Hubs consumer group, you can split your query into multiple steps using a WITH clause. This helps in managing the connections more efficiently.
These best practices can help mitigate scenarios where the number of readers per partition exceeds the Event Hubs limit of five.
References:
- Troubleshoot input connections
- Azure Event Hubs quotas and limits
- Azure subscription and service limits, quotas, and constraints
Please let me know if you have further questions
Kindly accept answer if it helps
Thanks
Deepanshu