Skip to content

Commit a62215f

Browse files
Merge pull request #211411 from HeidiSteen/heidist-fresh
[azure search] Misc edits on recently revised content
2 parents 4947baa + cbc30b3 commit a62215f

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

articles/search/cognitive-search-output-field-mapping.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ In contrast with a [`fieldMappings`](search-indexer-field-mappings.md) definitio
3030

3131
Output field mappings are required if your indexer has an attached [skillset](cognitive-search-working-with-skillsets.md) that creates new information, such as text translation or key phrase extraction. During indexer execution, AI-generated information exists in memory only. To persist this information in a search index, you'll need to tell the indexer where to send the data.
3232

33-
Output field mappings can also be used to retrieve specific nodes in a source document's complex type. If you don't need the full complex structure, you can [flatten individual nodes in a nested data structures](#flattening-information-from-complex-types), and then use an output field mapping to send the output to a string collection in your search index.
33+
Output field mappings can also be used to retrieve specific nodes in a source document's complex type. For example, you might want just "FullName/LastName" in a multi-part "FullName" property. When you don't need the full complex structure, you can [flatten individual nodes in a nested data structures](#flattening-information-from-complex-types), and then use an output field mapping to send the output to a string collection in your search index.
3434

3535
Output field mappings apply to:
3636

37-
+ Content that's created by skills or extracted by an indexer. The source field is a node in an enriched document residing in memory.
37+
+ In-memory content that's created by skills or extracted by an indexer. The source field is a node in an enriched document tree.
3838

3939
+ Search indexes. If you're populating a [knowledge store](knowledge-store-concept-intro.md), use [projections](knowledge-store-projections-examples.md) for data path configuration.
4040

articles/search/search-how-to-create-search-index.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.author: heidist
99

1010
ms.service: cognitive-search
1111
ms.topic: how-to
12-
ms.date: 06/24/2022
12+
ms.date: 09/15/2022
1313
---
1414

1515
# Create an index in Azure Cognitive Search
@@ -91,7 +91,9 @@ The following screenshot highlights where **Add index** and **Import data** appe
9191
9292
### [**REST**](#tab/index-rest)
9393

94-
[**Create Index (REST)**](/rest/api/searchservice/create-index) is used to create an index. Both Postman and Visual Studio Code (with an extension for Azure Cognitive Search) can function as a search index client. Using either tool, you can connect to your search service and send requests:
94+
[**Create Index (REST API)**](/rest/api/searchservice/create-index) is used to create an index. Both Postman and Visual Studio Code (with an extension for Azure Cognitive Search) can function as a search index client. Using either tool, you can connect to your search service and send requests.
95+
96+
The following links show you how to set up the request:
9597

9698
+ [Create a search index using REST and Postman](search-get-started-rest.md)
9799
+ [Get started with Visual Studio Code and Azure Cognitive Search](search-get-started-vs-code.md)

articles/search/search-indexer-field-mappings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ms.date: 09/14/2022
1616

1717
![Indexer Stages](./media/search-indexer-field-mappings/indexer-stages-field-mappings.png "indexer stages")
1818

19-
When using an [Azure Cognitive Search indexer](search-indexer-overview.md) to pull content into a search index, the indexer can often implicitly detect and assign source-to-destination field mappings. Implicit field mappings occur when field names and data types are compatible.
19+
When an [Azure Cognitive Search indexer](search-indexer-overview.md) loads a search index, it determines the data path through source-to-destination field mappings. Implicit field mappings are internal and occur when field names and data types are compatible between the source and destination.
2020

2121
If inputs and outputs don't match, you can define explicit *field mappings* to set up the data path, as described in this article. Field mappings can also be used to introduce light-weight data conversion, such as encoding or decoding, through [mapping functions](#mappingFunctions). If more processing is required, consider [Azure Data Factory](../data-factory/index.yml) to bridge the gap.
2222

0 commit comments

Comments
 (0)