Skip to content

Commit 15922b3

Browse files
Merge pull request #231761 from tamram/tamram23-0321
clarify change feed, virtual directories for github issues
2 parents 76b2dac + 602bddd commit 15922b3

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

articles/storage/blobs/storage-blob-change-feed.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn about change feed logs in Azure Blob Storage and how to use t
55
author: normesta
66

77
ms.author: normesta
8-
ms.date: 02/13/2023
8+
ms.date: 03/22/2023
99
ms.topic: how-to
1010
ms.service: storage
1111
ms.subservice: blobs
@@ -17,6 +17,8 @@ ms.custom: engagement-fy23
1717

1818
The purpose of the change feed is to provide transaction logs of all the changes that occur to the blobs and the blob metadata in your storage account. The change feed provides **ordered**, **guaranteed**, **durable**, **immutable**, **read-only** log of these changes. Client applications can read these logs at any time, either in streaming or in batch mode. The change feed enables you to build efficient and scalable solutions that process change events that occur in your Blob Storage account at a low cost.
1919

20+
To learn how to process records in the change feed, see [Process change feed in Azure Blob Storage](storage-blob-change-feed-how-to.md).
21+
2022
## How the change feed works
2123

2224
Change feed records are stored as [blobs](/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs) in a special container in your storage account at standard [blob pricing](https://azure.microsoft.com/pricing/details/storage/blobs/) cost. You can control the retention period of these files based on your requirements (See the [conditions](#conditions) of the current release). Change events are appended to the change feed as records in the [Apache Avro](https://avro.apache.org/docs/1.8.2/spec.html) format specification: a compact, fast, binary format that provides rich data structures with inline schema. This format is widely used in the Hadoop ecosystem, Stream Analytics, and Azure Data Factory.
@@ -145,9 +147,7 @@ Use an Azure Resource Manager template to enable Change feed on your existing st
145147

146148
The change feed produces several metadata and log files. These files are located in the **$blobchangefeed** container of the storage account. The **$blobchangefeed** container can be viewed either via the Azure portal or via Azure Storage Explorer.
147149

148-
Your client applications can consume the change feed by using the blob change feed processor library that is provided with the change feed processor SDK.
149-
150-
See [Process change feed logs in Azure Blob Storage](storage-blob-change-feed-how-to.md).
150+
Your client applications can consume the change feed by using the blob change feed processor library that is provided with the change feed processor SDK. To learn how to process records in the change feed, see [Process change feed logs in Azure Blob Storage](storage-blob-change-feed-how-to.md).
151151

152152
<a id="segment-index"></a>
153153

articles/vs-azure-tools-storage-explorer-blobs.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The following steps illustrate how to create a blob container within Storage Exp
4747

4848
## View a blob container's contents
4949

50-
Blob containers contain blobs and folders (that can also contain blobs).
50+
Blob containers contain blobs and virtual directories (that can also contain blobs).
5151

5252
The following steps illustrate how to view the contents of a blob container within Storage Explorer:
5353

@@ -165,7 +165,7 @@ The following steps illustrate how to specify a public access level for a blob c
165165
Once you've created a blob container, you can upload a blob to that blob container, download a blob to your local computer, open a blob on your local computer,
166166
and much more.
167167

168-
The following steps illustrate how to manage the blobs (and folders) within a blob container.
168+
The following steps illustrate how to manage the blobs (and virtual directories) within a blob container.
169169

170170
1. Open Storage Explorer.
171171
2. In the left pane, expand the storage account containing the blob container you wish to manage.
@@ -186,7 +186,7 @@ The following steps illustrate how to manage the blobs (and folders) within a bl
186186

187187
![Upload files options][16]
188188
3. Specify the type of **Blob type**. See [Create a container](storage/blobs/storage-quickstart-blobs-dotnet.md#create-a-container) for more information.
189-
4. Optionally, specify a target folder into which the selected file(s) will be uploaded. If the target folder doesn’t exist, it will be created.
189+
4. Optionally, specify a target virtual directory into which the selected file(s) will be uploaded. If the target virtual directory doesn’t exist, it will be created.
190190
5. Select **Upload**.
191191
* **Upload a folder to a blob container**
192192

@@ -197,7 +197,7 @@ The following steps illustrate how to manage the blobs (and folders) within a bl
197197

198198
![Upload folder options][18]
199199
3. Specify the type of **Blob type**. See [Create a container](storage/blobs/storage-quickstart-blobs-dotnet.md#create-a-container) for more information.
200-
4. Optionally, specify a target folder into which the selected folder's contents will be uploaded. If the target folder doesn’t exist, it will be created.
200+
4. Optionally, specify a target virtual directory into which the selected folder's contents will be uploaded. If the target virtual directory doesn’t exist, it will be created.
201201
5. Select **Upload**.
202202
* **Download a blob to your local computer**
203203

0 commit comments

Comments
 (0)