Skip to content

Commit 416d825

Browse files
committed
Clarified that user-specified metadata requires field in index
1 parent 8a8fcc3 commit 416d825

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

articles/search/search-howto-indexing-azure-blob-storage.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ ms.devlang: rest-api
1010
ms.service: cognitive-search
1111
ms.topic: conceptual
1212
ms.date: 11/04/2019
13+
ms.custom: fasttrack-edit
1314
---
1415

1516
# How to index documents in Azure Blob Storage with Azure Cognitive Search
@@ -135,7 +136,7 @@ Depending on the [indexer configuration](#PartsOfBlobToIndex), the blob indexer
135136
> [!NOTE]
136137
> Azure Cognitive Search limits how much text it extracts depending on the pricing tier: 32,000 characters for Free tier, 64,000 for Basic, and 4 million for Standard, Standard S2 and Standard S3 tiers. A warning is included in the indexer status response for truncated documents.
137138
138-
* User-specified metadata properties present on the blob, if any, are extracted verbatim.
139+
* User-specified metadata properties present on the blob, if any, are extracted verbatim. Note that this requires a field to be defined in the index with the same name as the metadata key of the blob. For example, if your blob has a metadata key of `Sensitivity` with value `High`, you should define a field named `Sensitivity` in your search index and it will be populated with the value `High`.
139140
* Standard blob metadata properties are extracted into the following fields:
140141

141142
* **metadata\_storage\_name** (Edm.String) - the file name of the blob. For example, if you have a blob /my-container/my-folder/subfolder/resume.pdf, the value of this field is `resume.pdf`.

0 commit comments

Comments
 (0)