Forum Discussion
hichamveo hichamveo
Jul 01, 2026Tin Contributor
Azure Event Grid with ASB
Hi, we need to push Event Grid events for blob creation to an Azure Service Bis queue to deduplicate as the EG guarantee "At least one delivery" pattern, but the problem is that we need to deduplica...
Jamony
Jul 02, 2026MCT
Hi, for deduplication with Service Bus, the important part is controlling the MessageId. Event Grid can deliver at least once, so I would route the event through an Azure Function or Logic App and set the Service Bus MessageId to something stable, such as storage account, container, blob path, and eTag. Then enable duplicate detection on the queue or topic with a window that matches your retry pattern.