You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/storage/blobs/storage-blob-change-feed.md
+9-3Lines changed: 9 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -206,6 +206,12 @@ The change feed files contain a series of change event records. Each change even
206
206
207
207
Change feed files are stored in the `$blobchangefeed/log/` virtual directory as [append blobs](https://docs.microsoft.com/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs#about-append-blobs). The first change feed file under each path will have `00000` in the file name (For example `00000.avro`). The name of each subsequent log file added to that path will increment by 1 (For example: `00001.avro`).
208
208
209
+
The following eventTypes are captured in the Change feed recods:
210
+
- BlobCreated
211
+
- BlobDeleted
212
+
- BlobPropertiesUpdated
213
+
- BlobSnapshotCreated
214
+
209
215
Here's an example of change event record from change feed file converted to Json.
210
216
211
217
```json
@@ -235,7 +241,7 @@ Here's an example of change event record from change feed file converted to Json
235
241
}
236
242
```
237
243
238
-
For a description of each property, see [Azure Event Grid event schema for Blob Storage](https://docs.microsoft.com/azure/event-grid/event-schema-blob-storage?toc=%2fazure%2fstorage%2fblobs%2ftoc.json#event-properties).
244
+
For a description of each property, see [Azure Event Grid event schema for Blob Storage](https://docs.microsoft.com/azure/event-grid/event-schema-blob-storage?toc=%2fazure%2fstorage%2fblobs%2ftoc.json#event-properties). The BlobPropertiesUpdated and BlobSnapshotCreated events are currently exclusive to Change feed and not yet supported for Blob Storage Events.
239
245
240
246
> [!NOTE]
241
247
> The change feed files for a segment don't immediately appear after a segment is created. The length of delay is within the normal interval of publishing latency of the change feed which is within a few minutes of the change.
@@ -310,10 +316,10 @@ This section describes known issues and conditions in the current public preview
310
316
- For preview, you must first [register your subscription](#register) before you can enable change feed for your storage account in the West Central US, West US 2, France Central, France South, Canada Central, and Canada East regions.
311
317
- The change feed captures only create, update, delete, and copy operations. Blob property and metadata changes are also captured. However the access tier property is not currently captured.
312
318
- Change event records for any single change might appear more than once in your change feed.
313
-
- You can't yet manage the lifetime of change feed log files by setting time-based retention policy on them and you cannot delete the blobs
319
+
- You can't yet manage the lifetime of change feed log files by setting time-based retention policy on them and you cannot delete the blobs.
314
320
- The `url` property of the log file is currently always empty.
315
321
- The `LastConsumable` property of the segments.json file does not list the very first segment that the change feed finalizes. This issue occurs only after the first segment is finalized. All subsequent segments after the first hour are accurately captured in the `LastConsumable` property.
316
-
- You currently cannot see the **$blobchangefeed** container when you call ListContainers API and the container does not show up on Azure portal or Storage Explorer
322
+
- You currently cannot see the **$blobchangefeed** container when you call ListContainers API and the container does not show up on Azure portal or Storage Explorer. You can view the contents by calling the ListBlobs API on the $blobchangefeed container directly.
317
323
- Storage accounts that have previously initiated an [account failover](../common/storage-disaster-recovery-guidance.md) may have issues with the log file not appearing. Any future account failovers may also impact the log file during preview.
0 commit comments