Questions tagged [azure-eventhub-client]

15 questions
1
vote
1 answer

import EventHubManagementClientOptionalParams return error

Typescript. I use "@azure/arm-eventhub": "^3.2.0", and want to import { EventHubManagementClient, EventHubManagementClientOptionalParams } from @azure/arm-eventhub; return 'Module "@azure/arm-eventhub" has no exported member…
0
votes
0 answers

Azure Event Grid Support for Swift?

I found this page: https://learn.microsoft.com/en-us/azure/event-grid/sdk-overview that illustrates client support for a few platforms. I'm wondering if Azure has client support for Event Grid or really any Azure based server eventing models that…
0
votes
0 answers

Eventhub consumer skips messages

We're using a python event hub consumer client that reads from a topic containing 32 partitions. We've enabled checkpointing as per the documentation (that seems to work). Events get consumed via a singular client. The velocity of these small json…
Havnar
  • 2,558
  • 7
  • 33
  • 62
0
votes
0 answers

Azure Event Hub Schema Registry for JSON Serialization always auto generates schema

The auto.register.schemas option for a JSON schema registry group in event hub does not seem to work. Using sample json producer project for azure-schema-registry-for-kafka, I expect a validation error (or some type of error) if I set…
bvk
  • 395
  • 4
  • 11
0
votes
0 answers

How to send logstash logs to Azure Event Hub using o Azure SPN as credentials

I have the SPN information (tenant-id, app-id, app-name and secret). I only found the INPUT plugin, but in my case I need an OUTPUT plugin (official). I tried use unofficial plugins but get some errors, so I gave up that use this solution. Has any…
0
votes
0 answers

How to resolve CredentialUnavailableError in DefaultAzureCredential?

I have written one method which creates an EventHubProducerClient using the credentials from DefaultAzureCredential. In DefaultAzureCredential, I am using options DefaultAzureCredentialResourceIdOptions with managed identity resource id. My code…
0
votes
2 answers

Data is not visible in Azure data explorer after ingestion from Event hub

I want to send the data from my code to Azure Event hub and finally to Azure Data Explorer. I sent the json data to event hub using typescript with the help of following code snippet: async function sendToEventHub(data: any) { const producerClient…
0
votes
1 answer

ReadEventsAsync EventHub Wont Stop

I am storing some application-generated messages in Azure Event Hub, which is being produced by a web app, I would like to retrieve these messages from Azure Event Hub in a Rest API call to show these in a web app. Issue When I try reading…
0
votes
0 answers

receiving error 'maximum recursion depth exceeded' on a specific partition

My eventhub has four partitions and one partition keeps having the following error while others work fine: 2023-03-21 17:50:19 WARNING [azure.eventhub._eventprocessor.event_processor][340]: EventProcessor instance '*' of eventhub '$$' partition…
derek
  • 9,358
  • 11
  • 53
  • 94
0
votes
1 answer

empty checkpoint files for azure eventhub

I am using BlobCheckpointStore to do checkpoint for azure eventhub using the official…
derek
  • 9,358
  • 11
  • 53
  • 94
0
votes
1 answer

Azure event Hub ( Event Processor Host vs Direct Receivers )

I am using Event Hub, wanted to know which one is better approach to consume events Event Processor Host or Direct Receivers. if one of it is better then why. Also Can you help me any java code sample github or java Azure SDK to write event…
0
votes
0 answers

EventHubBufferedProducerClient - can't enqueue new events after flushing

I am working with the EventHubBufferedProducerClient class of the Azure SDK for .NET (Azure.Messaging.EventHubs v. 5.7.5); I need to send two groups of messages, with the second group starting after publishing the first. No issues with the first…
Baccano
  • 1
  • 2
0
votes
1 answer

How do i send data to specific partition (let's say partition 0) in event hub

i have created 2 partitions in event hub following the same code to send data to event hub https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/eventhub/azure-eventhub/README.md#publish-events-to-an-event-hub below code i tried i was able to…
0
votes
1 answer

Facing latency issue in Azure EventHub consumer

How to avoid latency in EventHub consumer data ? My Architecture (data flow): IOTHub -> EventHub -> BlobStorage (No deviation from IOTHub packet to Blob Storage JSON packet) Deviation occurs only on consumer application side (Listener is receiving…
0
votes
0 answers

Azure EventHub, Typescript client in Angular - process is not defined error

Following the Azure documentation, I'm having a very hard time getting this to work in my Angular 14 web application: https://www.npmjs.com/package/@azure/event-hubs My error in Chrome console is: Uncaught ReferenceError: process is not defined at…
bob.mazzo
  • 5,183
  • 23
  • 80
  • 149