skip to Main Content

Azure – EventHub data bursty with long pauses

I'm seeing multi-second pauses in the event stream, even reading from the retention pool. Here's the main nugget of EH setup: BlobContainerClient storageClient = new BlobContainerClient(blobcon, BLOB_NAME); RTMTest.eventProcessor = new EventProcessorClient(storageClient, consumerGroup, ehubcon, EVENTHUB_NAME); And then the do nothing processor:…

VIEW QUESTION

Python Error when importing azure-eventhub on Mac Monterey

I am trying to import following: from azure.eventhub import EventData from azure.eventhub.aio import EventHubProducerClient from azure.eventhub.exceptions import EventHubError I get error: from azure.eventhub import EventData Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/azure/eventhub/__init__.py", line 5,…

VIEW QUESTION
Back To Top
Search