Azure Event Grid and Azure Event Hub

631 Views Asked by At

I am using Azure Services with node js. I am pushing and getting the messages from service bus. I want to know what is the role that of event grid , event hub. When i create them they want end point what is that. And how should i proceed

1

There are 1 best solutions below

3
On

Service Bus, Event Hub, and Event Grid are three different Azure services.

In a nutshell;

Service Bus provides queue and pub/sub messaging typologies to decouple business applications. - https://learn.microsoft.com/en-us/azure/service-bus-messaging/service-bus-messaging-overview

Event Hubs provides a commit log for event driven applications and supports high volume data ingestion architectures and pipelines. - https://learn.microsoft.com/en-us/azure/event-hubs/event-hubs-about

Event Grid provides solutions for event triggers for reactive apps. - https://learn.microsoft.com/en-us/azure/event-grid/overview

Why do you need Event Hubs or Event Grid? Can you elaborate your design a little more?