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/cognitive-search-concept-intro.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -114,23 +114,23 @@ Billing follows a pay-as-you-go pricing model. The costs of using built-in skill
114
114
115
115
## Checklist: A typical workflow
116
116
117
-
An enrichment pipeline consists of [*indexers*](search-indexer-overview.md) that have [*skillsets*](cognitive-search-working-with-skillsets.md). Post-indexing, you can access content via search requests through all [query types supported by Azure Cognitive Search](search-query-overview.md).
117
+
An enrichment pipeline consists of [*indexers*](search-indexer-overview.md) that have [*skillsets*](cognitive-search-working-with-skillsets.md). Post-indexing, you can query an index to validate your results.
118
118
119
119
Start with a subset of data in a [supported data source](search-indexer-overview.md#supported-data-sources). Indexer and skillset design is an iterative process. The work goes faster with a small representative data set.
120
120
121
121
1. Create a [data source](/rest/api/searchservice/create-data-source) that specifies a connection to your data.
122
122
123
-
1.[Create a skillset](cognitive-search-defining-skillset.md) to add enrichment steps. Unless your project is small, you'll want to [attach a Cognitive Services resource](cognitive-search-attach-cognitive-services.md). If you're [creating a knowledge store](knowledge-store-create-rest.md), define it within the skillset.
123
+
1.[Create a skillset](cognitive-search-defining-skillset.md). Unless your project is small, you'll want to [attach a Cognitive Services resource](cognitive-search-attach-cognitive-services.md). If you're [creating a knowledge store](knowledge-store-create-rest.md), define it within the skillset.
124
124
125
125
1.[Create an index schema](search-how-to-create-search-index.md) that defines a search index.
126
126
127
127
1.[Create and run the indexer](search-howto-create-indexers.md) to bring all of the above components together. This step retrieves the data, runs the skillset, and loads the index.
128
128
129
129
An indexer is also where you specify field mappings and output field mappings that set up the data path to a search index.
130
130
131
-
If possible, [enable enrichment caching](cognitive-search-incremental-indexing-conceptual.md) in the indexer configuration. This step allows you to reuse existing enrichments later on.
131
+
Optionally, [enable enrichment caching](cognitive-search-incremental-indexing-conceptual.md) in the indexer configuration. This step allows you to reuse existing enrichments later on.
132
132
133
-
1.[Run queries](search-query-create.md)against the search index to evaluate results. [Start a debug session](cognitive-search-how-to-debug-skillset.md) to work through any skillset issues.
133
+
1.[Run queries](search-query-create.md) to evaluate results or [start a debug session](cognitive-search-how-to-debug-skillset.md) to work through any skillset issues.
134
134
135
135
To repeat any of the above steps, [reset the indexer](search-howto-reindex.md) before you run it. Or, delete and recreate the objects on each run (recommended if you’re using the free tier). If you enabled caching the indexer will pull from the cache if data is unchanged at the source, and if your edits to the pipeline don't invalidate the cache.
0 commit comments