Skip to content

Commit 6a9f3bd

Browse files
committed
Fixed blocking issues
1 parent 0643b03 commit 6a9f3bd

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

articles/search/cognitive-search-concept-intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.custom: references_regions
1515

1616
In Azure Cognitive Search, AI enrichment refers to a pipeline process that adds machine learning to [indexer-based indexing](search-indexer-overview.md). Steps in the pipeline create new information where none previously existed: extracting information from images, detecting sentiment or key phrases from chunks of text, and recognizing entities, to name a few. All of these processes result in making previously unsearchable content available to full text search and knowledge mining scenarios.
1717

18-
[**Azure Blob Storage**(../storage/blobs/storage-blobs-overview.md) is the most commonly used input, but any indexer-supported data source can provide the initial content. A [**skillset**](cognitive-search-working-with-skillsets.md), attached to an indexer, adds the AI processing. The indexer extracts content and sets up the pipeline, while the skillset identifies, analyzes, and creates new information out of blobs, images, and raw text. Output is a [**search index**](search-what-is-an-index.md) or optional [**knowledge store**](knowledge-store-concept-intro.md).
18+
[**Azure Blob Storage**](../storage/blobs/storage-blobs-overview.md) is the most commonly used input, but any indexer-supported data source can provide the initial content. A [**skillset**](cognitive-search-working-with-skillsets.md), attached to an indexer, adds the AI processing. The indexer extracts content and sets up the pipeline, while the skillset identifies, analyzes, and creates new information out of blobs, images, and raw text. Output is a [**search index**](search-what-is-an-index.md) or optional [**knowledge store**](knowledge-store-concept-intro.md).
1919

2020
![Enrichment pipeline diagram](./media/cognitive-search-intro/cogsearch-architecture.png "enrichment pipeline overview")
2121

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

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -78,19 +78,19 @@ For more information on storage shared access signatures, see [Using shared acce
7878

7979
1. [Create or update an index](/rest/api/searchservice/create-index) to define search fields that will store content from entities:
8080

81-
```http
82-
POST https://[service name].search.windows.net/indexes?api-version=2020-06-30
83-
Content-Type: application/json
84-
api-key: [admin key]
85-
86-
{
87-
"name" : "my-target-index",
88-
"fields": [
89-
{ "name": "key", "type": "Edm.String", "key": true, "searchable": false },
90-
{ "name": "SomeColumnInMyTable", "type": "Edm.String", "searchable": true }
91-
]
92-
}
93-
```
81+
```http
82+
POST https://[service name].search.windows.net/indexes?api-version=2020-06-30
83+
Content-Type: application/json
84+
api-key: [admin key]
85+
86+
{
87+
"name" : "my-target-index",
88+
"fields": [
89+
{ "name": "key", "type": "Edm.String", "key": true, "searchable": false },
90+
{ "name": "SomeColumnInMyTable", "type": "Edm.String", "searchable": true }
91+
]
92+
}
93+
```
9494

9595
1. Check for field correspondence between entity fields and search fields. If names and types don't match, [add field mappings](search-indexer-field-mappings.md) to the indexer definition to ensure the source-to-destination path is clear.
9696

0 commit comments

Comments
 (0)