You have an Azure Event Grid topic with multiple event subscriptions. One subscription uses a filter to only receive events where the eventType is Contoso.Items.Created. What happens when an event with eventType Contoso.Items.Updated is published?
Think about how filters work in Event Grid subscriptions.
Event Grid delivers events only to subscriptions whose filters match the event properties. If the event type does not match the filter, the event is not delivered to that subscription.
You want to build a system where multiple services react to events from various sources in near real-time. Which feature of Azure Event Grid makes it suitable for this scenario?
Consider how Event Grid delivers events to subscribers.
Event Grid uses push-based delivery to send events to multiple subscribers quickly and supports many event sources, making it ideal for near real-time event routing.
You want to ensure that only authorized services can subscribe to your Event Grid topic. Which method provides the best security for event subscription authentication?
Think about modern Azure security best practices.
Using Azure Active Directory authentication with managed identities ensures secure, token-based authentication for event subscriptions, which is more secure than shared keys or IP filtering alone.
You want to configure an Event Grid subscription to send undeliverable events to a dead-letter destination. Which of the following is a valid dead-letter destination for Event Grid?
Dead-letter destinations must be storage services that can hold event data.
Event Grid supports Azure Blob Storage containers as dead-letter destinations to store undeliverable events for later inspection or replay.
You have an Event Grid topic receiving thousands of events per second. To optimize event routing and reduce latency, which approach is best?
Think about how filtering affects event delivery and processing load.
Using multiple subscriptions with filters reduces unnecessary event delivery and processing, improving performance and reducing latency at scale.