Skip to content

Commit 4f53c71

Browse files
Merge pull request #285444 from gmndrg/main
Removing base64EncodeKeys property since retired
2 parents 0d80d42 + 421dda8 commit 4f53c71

File tree

4 files changed

+11
-17
lines changed

4 files changed

+11
-17
lines changed

articles/search/search-file-storage-integration.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
title: Azure Files indexer (preview)
33
titleSuffix: Azure AI Search
44
description: Set up an Azure Files indexer to automate indexing of file shares in Azure AI Search.
5-
manager: nitinme
5+
manager: vinodva
66
author: mattgotteiner
77
ms.author: magottei
88
ms.service: cognitive-search
99
ms.custom:
1010
- ignite-2023
1111
ms.topic: how-to
12-
ms.date: 06/25/2024
12+
ms.date: 08/23/2024
1313
---
1414

1515
# Index data from Azure Files
@@ -105,7 +105,7 @@ In the [search index](search-what-is-an-index.md), add fields to accept the cont
105105
}
106106
```
107107
108-
1. Create a document key field ("key": true). For blob content, the best candidates are metadata properties. Metadata properties often include characters, such as `/` and `-`, that are invalid for document keys. Because the indexer has a "base64EncodeKeys" property (true by default), it automatically encodes the metadata property, with no configuration or field mapping required.
108+
1. Create a document key field ("key": true). For blob content, the best candidates are metadata properties. Metadata properties often include characters, such as `/` and `-`, that are invalid for document keys. The indexer automatically encodes the key metadata property, with no configuration or field mapping required.
109109
110110
+ **`metadata_storage_path`** (default) full path to the object or file
111111
@@ -141,7 +141,6 @@ Once the index and data source have been created, you're ready to create the ind
141141
"batchSize": null,
142142
"maxFailedItems": null,
143143
"maxFailedItemsPerBatch": null,
144-
"base64EncodeKeys": null,
145144
"configuration": {
146145
"indexedFileNameExtensions" : ".pdf,.docx",
147146
"excludedFileNameExtensions" : ".png,.jpeg"

articles/search/search-howto-index-azure-data-lake-storage.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ titleSuffix: Azure AI Search
44
description: Set up an Azure Data Lake Storage (ADLS) Gen2 indexer to automate indexing of content and metadata for full text search in Azure AI Search.
55
author: gmndrg
66
ms.author: gimondra
7-
manager: nitinme
7+
manager: vinodva
88
ms.service: cognitive-search
99
ms.custom:
1010
- ignite-2023
1111
ms.topic: how-to
12-
ms.date: 02/19/2024
12+
ms.date: 08/23/2024
1313
---
1414

1515
# Index data from Azure Data Lake Storage Gen2
@@ -166,7 +166,7 @@ In a [search index](search-what-is-an-index.md), add fields to accept the conten
166166

167167
+ A custom metadata property that you add to blobs. This option requires that your blob upload process adds that metadata property to all blobs. Since the key is a required property, any blobs that are missing a value will fail to be indexed. If you use a custom metadata property as a key, avoid making changes to that property. Indexers will add duplicate documents for the same blob if the key property changes.
168168

169-
Metadata properties often include characters, such as `/` and `-`, that are invalid for document keys. Because the indexer has a "base64EncodeKeys" property (true by default), it automatically encodes the metadata property, with no configuration or field mapping required.
169+
Metadata properties often include characters, such as `/` and `-`, that are invalid for document keys. The indexer automatically encodes the key metadata property, with no configuration or field mapping required.
170170

171171
1. Add a "content" field to store extracted text from each file through the blob's "content" property. You aren't required to use this name, but doing so lets you take advantage of implicit field mappings.
172172

@@ -189,7 +189,6 @@ Once the index and data source have been created, you're ready to create the ind
189189
"batchSize": null,
190190
"maxFailedItems": null,
191191
"maxFailedItemsPerBatch": null,
192-
"base64EncodeKeys": null,
193192
"configuration": {
194193
"indexedFileNameExtensions" : ".pdf,.docx",
195194
"excludedFileNameExtensions" : ".png,.jpeg",

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

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ titleSuffix: Azure AI Search
44
description: Set up an Azure blob indexer to automate indexing of blob content for full text search operations and knowledge mining in Azure AI Search.
55
author: gmndrg
66
ms.author: gimondra
7-
manager: nitinme
7+
manager: vinodva
88

99
ms.service: cognitive-search
1010
ms.custom:
1111
- ignite-2023
1212
ms.topic: how-to
13-
ms.date: 06/25/2024
13+
ms.date: 08/23/2024
1414
---
1515

1616
# Index data from Azure Blob Storage
@@ -179,7 +179,7 @@ In a [search index](search-what-is-an-index.md), add fields to accept the conten
179179

180180
+ A custom metadata property that you add to blobs. This option requires that your blob upload process adds that metadata property to all blobs. Since the key is a required property, any blobs that are missing a value will fail to be indexed. If you use a custom metadata property as a key, avoid making changes to that property. Indexers will add duplicate documents for the same blob if the key property changes.
181181

182-
Metadata properties often include characters, such as `/` and `-`, which are invalid for document keys. Because the indexer has a "base64EncodeKeys" property (true by default), it automatically encodes the metadata property, with no configuration or field mapping required.
182+
Metadata properties often include characters, such as `/` and `-`, which are invalid for document keys. However, the indexer automatically encodes the key metadata property, with no configuration or field mapping required.
183183

184184
1. Add a "content" field to store extracted text from each file through the blob's "content" property. You aren't required to use this name, but doing so lets you take advantage of implicit field mappings.
185185

@@ -203,7 +203,6 @@ Once the index and data source have been created, you're ready to create the ind
203203
"batchSize": null,
204204
"maxFailedItems": null,
205205
"maxFailedItemsPerBatch": null,
206-
"base64EncodeKeys": null,
207206
"configuration": {
208207
"indexedFileNameExtensions" : ".pdf,.docx",
209208
"excludedFileNameExtensions" : ".png,.jpeg",
@@ -261,7 +260,6 @@ POST https://[service name].search.windows.net/indexers?api-version=2024-07-01
261260
"batchSize": null,
262261
"maxFailedItems": null,
263262
"maxFailedItemsPerBatch": null,
264-
"base64EncodeKeys": null,
265263
"configuration": {
266264
"indexedFileNameExtensions" : ".pdf,.docx",
267265
"excludedFileNameExtensions" : ".png,.jpeg",
@@ -285,7 +283,6 @@ POST https://[service name].search.windows.net/indexers?api-version=2024-07-01
285283
"batchSize": null,
286284
"maxFailedItems": null,
287285
"maxFailedItemsPerBatch": null,
288-
"base64EncodeKeys": null,
289286
"configuration": {
290287
"indexedFileNameExtensions" : ".pdf,.docx",
291288
"excludedFileNameExtensions" : ".png,.jpeg",

articles/search/search-howto-indexing-azure-tables.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ title: Azure table indexer
33
titleSuffix: Azure AI Search
44
description: Set up a search indexer to index data stored in Azure Table Storage for full text search in Azure AI Search.
55

6-
manager: nitinme
6+
manager: vinodva
77
author: mgottein
88
ms.author: magottei
99

1010
ms.service: cognitive-search
1111
ms.custom:
1212
- ignite-2023
1313
ms.topic: how-to
14-
ms.date: 02/22/2024
14+
ms.date: 08/23/2024
1515
---
1616

1717
# Index data from Azure Table Storage
@@ -174,7 +174,6 @@ Once you have an index and data source, you're ready to create the indexer. Inde
174174
"batchSize" : null,
175175
"maxFailedItems" : null,
176176
"maxFailedItemsPerBatch" : null,
177-
"base64EncodeKeys" : null,
178177
"configuration" : { }
179178
},
180179
"fieldMappings" : [ ],

0 commit comments

Comments
 (0)