Skip to content

Commit ffcc1c9

Browse files
Merge pull request #225664 from HeidiSteen/heidist-fresh
[azure search] January freshness pass
2 parents 2ccc1cc + 49344e8 commit ffcc1c9

9 files changed

+62
-63
lines changed

articles/search/knowledge-store-concept-intro.md

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ manager: nitinme
77
ms.author: heidist
88
ms.service: cognitive-search
99
ms.topic: conceptual
10-
ms.date: 05/31/2022
10+
ms.date: 01/31/2023
1111
---
1212

1313
# Knowledge store in Azure Cognitive Search
@@ -16,7 +16,7 @@ Knowledge store is a data sink created by a [Cognitive Search enrichment pipelin
1616

1717
If you've used cognitive skills in the past, you already know that enriched content is created by *skillsets*. Skillsets move a document through a sequence of enrichments that invoke atomic transformations, such as recognizing entities or translating text.
1818

19-
Output can be a search index, or projections in a knowledge store. The two outputs, search index and knowledge store, are mutually exclusive products of the same pipeline. They are derived from the same inputs, but their content is structured, stored, and used in different applications.
19+
Output is always a search index, but it can also be projections in a knowledge store. The two outputs, search index and knowledge store, are mutually exclusive products of the same pipeline. They are derived from the same inputs, but their content is structured, stored, and used in different applications.
2020

2121
:::image type="content" source="media/knowledge-store-concept-intro/knowledge-store-concept-intro.svg" alt-text="Pipeline with skillset" border="false":::
2222

@@ -44,23 +44,22 @@ A knowledge store is defined inside a skillset definition and it has two compone
4444

4545
+ A connection string to Azure Storage
4646

47-
+ [**Projections**](knowledge-store-projection-overview.md) that determine whether the knowledge store consists of tables, objects or files.
48-
49-
The projections element is an array. You can create multiple sets of table-object-file combinations within one knowledge store.
50-
51-
```json
52-
"knowledgeStore": {
53-
"storageConnectionString":"<YOUR-AZURE-STORAGE-ACCOUNT-CONNECTION-STRING>",
54-
"projections":[
55-
{
56-
"tables":[ ],
57-
"objects":[ ],
58-
"files":[ ]
59-
}
47+
+ [**Projections**](knowledge-store-projection-overview.md) that determine whether the knowledge store consists of tables, objects or files. The projections element is an array. You can create multiple sets of table-object-file combinations within one knowledge store.
48+
49+
```json
50+
"knowledgeStore": {
51+
"storageConnectionString":"<YOUR-AZURE-STORAGE-ACCOUNT-CONNECTION-STRING>",
52+
"projections":[
53+
{
54+
"tables":[ ],
55+
"objects":[ ],
56+
"files":[ ]
57+
}
58+
]
6059
}
61-
```
60+
```
6261

63-
The type of projection you specify in this structure determines the type of storage used by knowledge store.
62+
The type of projection you specify in this structure determines the type of storage used by knowledge store, but not its structure. Fields in tables, objects, and files are determined by Shaper skill output if you're creating the knowledge store programmatically, or by the Import data wizard if you're using the portal.
6463

6564
+ `tables` project enriched content into Table Storage. Define a table projection when you need tabular reporting structures for inputs to analytical tools or export as data frames to other data stores. You can specify multiple `tables` within the same projection group to get a subset or cross section of enriched documents. Within the same projection group, table relationships are preserved so that you can work with all of them.
6665

articles/search/knowledge-store-connect-power-bi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.author: heidist
88
manager: nitinme
99
ms.service: cognitive-search
1010
ms.topic: conceptual
11-
ms.date: 10/18/2021
11+
ms.date: 01/30/2023
1212
---
1313

1414
# Connect a knowledge store with Power BI

articles/search/search-howto-complex-data-types.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ tags: complex data types; compound data types; aggregate data types
1010
ms.custom: ignite-2022
1111
ms.service: cognitive-search
1212
ms.topic: how-to
13-
ms.date: 11/17/2021
13+
ms.date: 01/30/2023
1414
---
1515

1616
# Model complex data types in Azure Cognitive Search
@@ -23,7 +23,7 @@ Azure Cognitive Search natively supports complex types and collections. These ty
2323

2424
To get started, we recommend the [Hotels data set](https://github.com/Azure-Samples/azure-search-sample-data/tree/master/hotels), which you can load in the **Import data** wizard in the Azure portal. The wizard detects complex types in the source and suggests an index schema based on the detected structures.
2525

26-
> [!Note]
26+
> [!NOTE]
2727
> Support for complex types became generally available starting in `api-version=2019-05-06`.
2828
>
2929
> If your search solution is built on earlier workarounds of flattened datasets in a collection, you should change your index to include complex types as supported in the newest API version. For more information about upgrading API versions, see [Upgrade to the newest REST API version](search-api-migration.md) or [Upgrade to the newest .NET SDK version](/previous-versions/azure/search/search-dotnet-sdk-migration-version-9).

articles/search/search-howto-move-across-regions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.author: heidist
99
ms.service: cognitive-search
1010
ms.topic: how-to
1111
ms.custom: subject-moving-resources
12-
ms.date: 10/06/2021
12+
ms.date: 01/30/2023
1313
---
1414

1515
# Move your Azure Cognitive Search service to another Azure region

0 commit comments

Comments
 (0)