Azure Event Hubs Flashcards

1
Q

What is Azure Event Hub?

A

Azure Event Hubs is a cloud native data streaming service that can stream millions of events per second, with low latency, from any source to any destination. Event Hubs is compatible with Apache Kafka, and it enables you to run existing Kafka workloads without any code changes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are Partitions in Azure Event Hub?

A

Partitionsare used to scale an event hub. They are like lanes in a freeway. If you need more streaming throughput, you need to add more partitions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is Azure Schema Registry in Azure Event Hub?

A

Azure Schema Registry is a feature of Event Hubs, which provides a central repository for schemas for event-driven and messaging-centric applications. It provides the flexibility for your producer and consumer applications to exchange data without having to manage and share the schema.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is Event Hubs Capture in Azure Event Hub?

A

Event Hubs Capture enables you to automatically capture the streaming data in Event Hubs and save it to your choice of either a Blob storage account, or an Azure Data Lake Storage account.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is EventProcessorClient in Azure Event Hub?

A

Event processor clients can work cooperatively within the context of a consumer group for a given event hub. Clients will automatically manage distribution and balancing of work as instances become available or unavailable for the group.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is Checkpointing in Azure Event Hub?

A

Checkpointing is a process by which an event processor marks or commits the position of the last successfully processed event within a partition. Marking a checkpoint is typically done within the function that processes the events and occurs on a per-partition basis within a consumer group.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly