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/knowledge-store-concept-intro.md
+16-17Lines changed: 16 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ manager: nitinme
7
7
ms.author: heidist
8
8
ms.service: cognitive-search
9
9
ms.topic: conceptual
10
-
ms.date: 05/31/2022
10
+
ms.date: 01/31/2023
11
11
---
12
12
13
13
# Knowledge store in Azure Cognitive Search
@@ -16,7 +16,7 @@ Knowledge store is a data sink created by a [Cognitive Search enrichment pipelin
16
16
17
17
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.
18
18
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.
20
20
21
21
:::image type="content" source="media/knowledge-store-concept-intro/knowledge-store-concept-intro.svg" alt-text="Pipeline with skillset" border="false":::
22
22
@@ -44,23 +44,22 @@ A knowledge store is defined inside a skillset definition and it has two compone
44
44
45
45
+ A connection string to Azure Storage
46
46
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.
+[**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.
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.
64
63
65
64
+`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.
Copy file name to clipboardExpand all lines: articles/search/search-howto-complex-data-types.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ tags: complex data types; compound data types; aggregate data types
10
10
ms.custom: ignite-2022
11
11
ms.service: cognitive-search
12
12
ms.topic: how-to
13
-
ms.date: 11/17/2021
13
+
ms.date: 01/30/2023
14
14
---
15
15
16
16
# Model complex data types in Azure Cognitive Search
@@ -23,7 +23,7 @@ Azure Cognitive Search natively supports complex types and collections. These ty
23
23
24
24
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.
25
25
26
-
> [!Note]
26
+
> [!NOTE]
27
27
> Support for complex types became generally available starting in `api-version=2019-05-06`.
28
28
>
29
29
> 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).
0 commit comments