A manufacturing company is implementing an Azure Event Grid custom topic to process telemetry reports from IoT sensors. Individual telemetry payloads can reach up to in size. You plan to configure an Event Grid subscription that routes these events directly to an Azure Queue Storage queue for processing by a background service. Which statement correctly identifies the limitation of this design and the appropriate solution?
- Queue Storage has a maximum message size limit of . You must store the telemetry payload in Azure Blob Storage and route only the blob URL reference via Event Grid.Cevap
- BQueue Storage endpoints require a manual webhook validation handshake. You must implement endpoint validation on the queue using a dedicated Event Grid validation endpoint URL.
- CQueue Storage requires a Shared Access Signature (SAS) token configured with write permissions scoped strictly to a single queue message. You must configure a SAS token with message-level scope.
- DQueue Storage endpoints only support user-assigned managed identities for authorization. You must replace the system-assigned managed identity on the Event Grid topic with a user-assigned identity.
Cevap
Queue Storage has a maximum message size limit of . You must store the telemetry payload in Azure Blob Storage and route only the blob URL reference via Event Grid.
The correct answer states that Queue Storage has a maximum message size limit of , and that the telemetry payload must be stored in Azure Blob Storage while routing only the blob URL reference. This correctly addresses the physical constraints of Azure Queue Storage and follows the Azure integration architecture guidelines.
Adım Adım Çözüm
Anahtar Kavram
Handling large message payloads in Event Grid subscriptions using the Claim-Check pattern.
Tahmini Süre:1m 30s