I would like to know what is meant by an event in azure event hub. I thought it's like getting some content(string) from source and process it by other services is one event. if so, what is maximum content(string) I can send at one event
Asked
Active
Viewed 84 times
1 Answers
1
From: https://learn.microsoft.com/en-us/azure/event-hubs/event-hubs-quotas
Maximum size of Event Hubs event - 1 MB
For Event Hub an event just contains binary payload. How long your string content in there can be depends on the encoding (UTF-8, UTF-16, ASCII...) you chose.

silent
- 14,494
- 4
- 46
- 86