RabbitMQ Shovel to Azure Event Hub or Service Bus
I am hoping someone has got this to work. I am the trying to connect RabbitMQ shovel to Azure Event hub or Service Bus. I found two tutorials on MS, (very short to set up) but both results in the…
I am hoping someone has got this to work. I am the trying to connect RabbitMQ shovel to Azure Event hub or Service Bus. I found two tutorials on MS, (very short to set up) but both results in the…
May I confirm with you, when we have an Event Hub with multiple partitions, is there any possibility that you can have more than one instances of Azure Function that process the event on same partition? For example (assuming we…
I have the following pattern, Http Trigger Function App -> Event Hub -> Event Hub Listener Function App Unfortunately, the sender to the HTTP Trigger app sends many individual requests, meaning that the execution of the send to event hub…
When configuring a diagnostic settings for a resource in Azure, and configuring that diagnostic setting to an event hub, what is the partition key used when messages are published to the event hub? Or is no partition key used (resulting…
At first I upgraded the package "Microsoft.Azure.Functions.Worker.Extensions.EventHubs" from version 4.3.0 to 5.1.0. and I upgraded from the deprecated Microsoft.Azure.EventHubs package to Azure.Messaging.EventHubs. Then I run the C# function that return the error: 'Azure.Messaging.EventHubs: The path to an Event Hub may…
I'm trying to create an Azure Event Hub using json config and Bicep. The Event Hub namespace deploys fine, but when I try to extend the code to namespaces/eventhubs and namespaces/eventhubs/authorizationRules then I encounter an issue as I have nested…
I have a working Azure Functions app, with an Event Hub trigger. It's using Microsoft.Azure.Functions.Worker 1.10, functions runtime 4, .Net 6 and running as Isolated (not in-process). The current function signature looks like: Function("MyFunction")] public async Task Run([EventHubTrigger("my-eventhub", ConsumerGroup =…
Currently, I have a EventHub trigger function that triggers for every event and now my requirement has changed as I need to monitor 2 mins data that we receive and remove any noise from the data. So, Can we create…
When it comes to Apache Kafka, on the consumer side I know it's a pull model. What about Azure EventHubs? Are they pull or push? From what I've gathered so far unlike kafka event hubs "push" events to the listeners.…
I read that event hub has retention period up to 60days. So is it possible to query the historical data from event hub? Will it delete the processed events automatically? Assuming yes - If not so - what is the…