Hello @Keerthana Merugu ,
welcome to this moderated Azure community forum.
If I understand correctly, you have a mobile application that consumes messages coming from an Azure Event Hub.
To consume messages, a consumer needs to be part of a consumer group.
The limit for an consumer group is up to five consumers, otherwise, you can expect errors.
So, the only way to cope with more users is scaling up:
Depending on the Event Hub tier, 1, 20, 100, 1000 consumer groups are supported (I have no experience with what 'No limit per CU' means).
Notice that The Kafka endpoint of an Event Hub also knows the concept of consumer groups (per namespace) and the number is always 1000. Please check the documentation of this endpoint and what a consumer groups means there.
As an alternative, it is highly recommended to check out the EventGrid Namespace MQTT support because this service can serve 10.000 clients per throughput unit out of the box.
If the response helped, do "Accept Answer". If it doesn't work, please let us know the progress. All community members with similar issues will benefit by doing so. Your contribution is highly appreciated.