Skip to content

Commit df6463d

Browse files
authored
Merge pull request #110512 from xyh1/patch-109
Add link to event grid retry article per feedback
2 parents 5a738ea + aec339d commit df6463d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/storage/blobs/storage-blob-event-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Applications that handle Blob storage events should follow a few recommended pra
9393
> * Similarly, check that the eventType is one you are prepared to process, and do not assume that all events you receive will be the types you expect.
9494
> * As messages can arrive after some delay, use the etag fields to understand if your information about objects is still up-to-date. To learn how to use the etag field, see [Managing concurrency in Blob storage](https://docs.microsoft.com/azure/storage/common/storage-concurrency?toc=%2fazure%2fstorage%2fblobs%2ftoc.json#managing-concurrency-in-blob-storage).
9595
> * As messages can arrive out of order, use the sequencer fields to understand the order of events on any particular object. The sequencer field is a string value that represents the logical sequence of events for any particular blob name. You can use standard string comparison to understand the relative sequence of two events on the same blob name.
96-
> Storage events guarantees at-least-once delivery to subscribers, which ensures that all messages are outputted. However due to retries or availability of subscriptions, duplicate messages may occasionally occur.
96+
> * Storage events guarantees at-least-once delivery to subscribers, which ensures that all messages are outputted. However due to retries or availability of subscriptions, duplicate messages may occasionally occur. To learn more about message delivery and retry, see [Event Grid message delivery and retry](../../event-grid/delivery-and-retry.md).
9797
> * Use the blobType field to understand what type of operations are allowed on the blob, and which client library types you should use to access the blob. Valid values are either `BlockBlob` or `PageBlob`.
9898
> * Use the url field with the `CloudBlockBlob` and `CloudAppendBlob` constructors to access the blob.
9999
> * Ignore fields you don't understand. This practice will help keep you resilient to new features that might be added in the future.

0 commit comments

Comments
 (0)