Setup & Installation
What This Skill Does
Rust client library for Azure Event Hubs. Provides producer and consumer clients for sending and receiving events on Azure's managed event streaming platform. Supports batched sends, partition-level consumption, and distributed checkpointing.
Using the native Rust SDK avoids the overhead of wrapping REST calls or using an FFI shim, and gives direct access to batching and partition APIs with async/await support.
When to use it
- Sending telemetry batches from a Rust service to an Event Hub
- Reading events off a specific partition in sequence order
- Checking partition lag by querying last enqueued sequence numbers
- Building a multi-consumer pipeline where each app uses its own consumer group
- Distributing event processing across workers with blob-backed checkpoints