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/search/search-howto-index-sharepoint-online.md
+10-8Lines changed: 10 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ manager: liamca
9
9
10
10
ms.service: cognitive-search
11
11
ms.topic: how-to
12
-
ms.date: 08/25/2022
12
+
ms.date: 09/08/2022
13
13
---
14
14
15
15
# Index data from SharePoint document libraries
@@ -215,7 +215,7 @@ api-key: [admin key]
215
215
216
216
An indexer connects a data source with a target search index and provides a schedule to automate the data refresh. Once the index and data source have been created, you're ready to create the indexer.
217
217
218
-
During this section you’ll be asked to sign in with your organization credentials that have access to the SharePoint site. If possible, we recommend creating a new organizational user account and giving that new user the exact permissions that you want the indexer to have.
218
+
During this section you’ll be asked to sign in with your organization credentials that have access to the SharePoint site. If possible, we recommend creating a new organizational user account and giving that new user the exact permissions that you want the indexer to have.
219
219
220
220
There are a few steps to creating the indexer:
221
221
@@ -249,7 +249,8 @@ There are a few steps to creating the indexer:
249
249
"mappingFunction" : {
250
250
"name" : "base64Encode"
251
251
}
252
-
}
252
+
}
253
+
]
253
254
}
254
255
```
255
256
@@ -293,9 +294,9 @@ There are a few steps to creating the indexer:
293
294
"maxFailedItemsPerBatch": null,
294
295
"base64EncodeKeys": null,
295
296
"configuration:" {
296
-
"indexedFileNameExtensions" : null,
297
-
"excludedFileNameExtensions" : null,
298
-
"dataToExtract": "contentAndMetadata"
297
+
"dataToExtract": "contentAndMetadata",
298
+
"indexedFileNameExtensions" : ".pdf, .docx",
299
+
"excludedFileNameExtensions" : ".png, .jpg"
299
300
}
300
301
},
301
302
"schedule" : { },
@@ -306,7 +307,8 @@ There are a few steps to creating the indexer:
306
307
"mappingFunction" : {
307
308
"name" : "base64Encode"
308
309
}
309
-
}
310
+
}
311
+
]
310
312
}
311
313
```
312
314
@@ -467,4 +469,4 @@ You can also continue indexing if errors happen at any point of processing, eith
467
469
## See also
468
470
469
471
+[Indexers in Azure Cognitive Search](search-indexer-overview.md)
470
-
+[Content metadata properties used in Azure Cognitive Search](search-blob-metadata-properties.md)
472
+
+[Content metadata properties used in Azure Cognitive Search](search-blob-metadata-properties.md)
0 commit comments