Mahesh Bhagwat
Mahesh Bhagwat

Reputation: 33

How to create Consumer Group for event hub in Microsoft Azure Portal?

We can Create the Consumer group by calling CreateConsumerGroupIfNotExists from the code. But is there a way we can Create it from the Microsoft Azure Portal ?

Upvotes: 3

Views: 9790

Answers (2)

Data Science Dojo
Data Science Dojo

Reputation: 411

On the old Azure Portal you can access it via https://manage.windowsazure.com.

Azure Portal -> Service Bus Tab -> myServiceBus -> Event Hub Tab -> myHub

Once inside the Event Hub, there should be a "CONSUMER GROUPS" tab at the top, click on that. Once inside, in the navy blue footer, there should be a "create" button which will let you create a new consumer group. Attached below is a diagram on how to get to this.

UI Diagram

Upvotes: 2

Data Science Dojo
Data Science Dojo

Reputation: 411

Create a consumer group in the new portal (https://portal.azure.com/) by the following steps:

Azure Portal > Event Hubs > Event Hub > Consumer Groups > +Consumer Group

Make sure that you've created a Event Hub within your Event Hubs instance. The Consumer Groups tab will be under "Entities" of the Event Hub page.

enter image description here

Upvotes: 4

Related Questions