Skip to content

Commit f30a274

Browse files
authored
Merge pull request #174739 from HeidiSteen/heidist-fresh
[azure search] Freshness pass #1 for October
2 parents fecd26f + aa829a7 commit f30a274

9 files changed

+102
-124
lines changed

articles/search/query-odata-filter-orderby-syntax.md

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,12 @@ title: OData language overview
33
titleSuffix: Azure Cognitive Search
44
description: OData language overview for filters, select, and order-by for Azure Cognitive Search queries.
55

6-
manager: nitinme
7-
author: brjohnstmsft
8-
ms.author: brjohnst
6+
author: bevloh
7+
ms.author: beloh
98
ms.service: cognitive-search
109
ms.topic: conceptual
11-
ms.date: 02/10/2020
12-
translation.priority.mt:
13-
- "de-de"
14-
- "es-es"
15-
- "fr-fr"
16-
- "it-it"
17-
- "ja-jp"
18-
- "ko-kr"
19-
- "pt-br"
20-
- "ru-ru"
21-
- "zh-cn"
22-
- "zh-tw"
10+
ms.date: 10/06/2021
11+
2312
---
2413

2514
# OData language overview for `$filter`, `$orderby`, and `$select` in Azure Cognitive Search

articles/search/search-features-list.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Feature overview
2+
title: Feature descriptions
33
titleSuffix: Azure Cognitive Search
44
description: Explore the feature categories of Azure Cognitive Search.
55

@@ -8,17 +8,19 @@ author: HeidiSteen
88
ms.author: heidist
99
ms.service: cognitive-search
1010
ms.topic: conceptual
11-
ms.date: 09/15/2020
11+
ms.date: 10/06/2021
1212
---
1313
# Features of Azure Cognitive Search
1414

15-
Azure Cognitive Search provides a full-text search engine, persistent storage of search indexes, integrated AI used during indexing to extract more text and structure, and APIs and tools. The following table summarizes features by category. For more information about how Cognitive Search compares with other search technologies, see [What is Azure Cognitive Search?](search-what-is-azure-search.md).
15+
Azure Cognitive Search provides a full-text search engine, persistent storage of search indexes, integrated AI used during indexing to extract more text and structure, and APIs and tools.
16+
17+
The following table summarizes features by category. For more information about how Cognitive Search compares with other search technologies, see [Compare search options](search-what-is-azure-search.md#compare-search-options).
1618

1719
## Indexing features
1820

1921
| Category                            | Features |
2022
|-------------------|----------|
21-
| Data sources | Search indexes can accept text from any source, provided it is submitted as a JSON document. <br/><br/> [**Indexers**](search-indexer-overview.md) are a feature that automates data import from supported data sources to extract searchable content in primary data stores. Indexers handle JSON serialization for you. You can connect to [various data sources](search-data-sources-gallery.md), including [Azure SQL Database](search-howto-connecting-azure-sql-database-to-azure-search-using-indexers.md), [Azure Cosmos DB](search-howto-index-cosmosdb.md), or [Azure Blob storage](search-howto-indexing-azure-blob-storage.md). |
23+
| Data sources | Search indexes can accept text from any source, provided it is submitted as a JSON document. <br/><br/> [**Indexers**](search-indexer-overview.md) are a feature that automates data import from supported data sources to extract searchable content in primary data stores. Indexers handle JSON serialization for you. You can connect to a [variety of data sources](search-data-sources-gallery.md), including [Azure SQL Database](search-howto-connecting-azure-sql-database-to-azure-search-using-indexers.md), [Azure Cosmos DB](search-howto-index-cosmosdb.md), or [Azure Blob storage](search-howto-indexing-azure-blob-storage.md). |
2224
| Hierarchical and nested data structures | [**Complex types**](search-howto-complex-data-types.md) and collections allow you to model virtually any type of JSON structure within a search index. One-to-many and many-to-many cardinality can be expressed natively through collections, complex types, and collections of complex types.|
2325
| Linguistic analysis | Analyzers are components used for text processing during indexing and search operations. By default, you can use the general-purpose Standard Lucene analyzer, or override the default with a language analyzer, a custom analyzer that you configure, or another predefined analyzer that produces tokens in the format you require. <br/><br/>[**Language analyzers**](index-add-language-analyzers.md) from Lucene or Microsoft are used to intelligently handle language-specific linguistics including verb tenses, gender, irregular plural nouns (for example, 'mouse' vs. 'mice'), word de-compounding, word-breaking (for languages with no spaces), and more. <br/><br/>[**Custom lexical analyzers**](index-add-custom-analyzers.md) are used for complex query forms such as phonetic matching and regular expressions.<br/><br/> |
2426

articles/search/search-howto-incremental-index.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ author: HeidiSteen
77
ms.author: heidist
88
ms.service: cognitive-search
99
ms.topic: conceptual
10-
ms.date: 01/06/2020
10+
ms.date: 10/06/2021
1111
---
1212

13-
# How to configure caching for incremental enrichment in Azure Cognitive Search
13+
# Configure caching for incremental enrichment in Azure Cognitive Search
1414

1515
> [!IMPORTANT]
1616
> This feature is in public preview under [supplemental terms of use](https://azure.microsoft.com/support/legal/preview-supplemental-terms/). The [preview REST API](/rest/api/searchservice/index-preview) supports this feature
1717
18-
This article shows you how to add caching to an enrichment pipeline so that you can incrementally modify steps without having to rebuild every time. By default, a skillset is stateless, and changing any part of its composition requires a full rerun of the indexer. With incremental enrichment, the indexer can determine which parts of the document tree need to be refreshed based on changes detected in the skillset or indexer definitions. Existing processed output is preserved and reused wherever possible.
18+
This article explains how to add caching to an enrichment pipeline so that you can incrementally modify steps without having to rebuild every time. By default, a skillset is stateless, and changing any part of its composition requires a full rerun of the indexer. With incremental enrichment, the indexer can determine which parts of the document tree need to be refreshed based on changes detected in the skillset or indexer definitions. Existing processed output is preserved and reused wherever possible.
1919

2020
Cached content is placed in Azure Storage using account information that you provide. The container, named `ms-az-search-indexercache-<alpha-numerc-string>`, is created when you run the indexer. It should be considered an internal component managed by your search service and must not be modified.
2121

@@ -25,12 +25,9 @@ If you're not familiar with setting up indexers, start with [indexer overview](s
2525

2626
If you have an existing indexer that already has a skillset, follow the steps in this section to add caching. As a one-time operation, you will have to reset and rerun the indexer in full before incremental processing can take effect.
2727

28-
> [!TIP]
29-
> As proof-of-concept, you can run through this [portal quickstart](cognitive-search-quickstart-blob.md) to create necessary objects, and then use Postman or the portal to make your updates. You might want to attach a billable Cognitive Services resource. Running the indexer multiple times will exhaust the free daily allocation before you can complete all of the steps.
30-
3128
### Step 1: Get the indexer definition
3229

33-
Start with a valid, existing indexer that has these components: data source, skillset, index. Your indexer should be runnable.
30+
Start with a valid, existing indexer that has these components: data source, skillset, index. Your indexer should be runnable.
3431

3532
Using an API client, construct a [GET Indexer request](/rest/api/searchservice/get-indexer) to get the current configuration of the indexer. When you use the preview API version to the GET the indexer, a `cache` property set to null is added to the definitions.
3633

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ ms.author: heidist
99
ms.service: cognitive-search
1010
ms.topic: how-to
1111
ms.custom: subject-moving-resources
12-
ms.date: 09/10/2020
12+
ms.date: 10/06/2021
1313
---
1414

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

17-
Occasionally, customers ask about moving a search service to another region. Currently, there is no built-in mechanism or tooling to help with that task, but this article can help you understand the manual steps for achieving the same outcome.
17+
Occasionally, customers ask about moving a search service to another region. Currently, there is no built-in mechanism or tooling to help with that task, but this article can help you understand the manual steps for recreating indexes and other objects on a new search service in a different region.
1818

1919
> [!NOTE]
2020
> In the Azure portal, all services have an **Export template** command. In the case of Azure Cognitive Search, this command produces a basic definition of a service (name, location, tier, replica, and partition count), but does not recognize the content of your service, nor does it carry over keys, roles, or logs. Although the command exists, we don't recommend using it for moving a search service.

articles/search/search-howto-reindex.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ author: HeidiSteen
88
ms.author: heidist
99
ms.service: cognitive-search
1010
ms.topic: conceptual
11-
ms.date: 06/18/2020
11+
ms.date: 10/06/2021
1212
---
1313

14-
# How to rebuild an index in Azure Cognitive Search
14+
# Rebuild an index in Azure Cognitive Search
1515

1616
This article explains how to rebuild an Azure Cognitive Search index, the circumstances under which rebuilds are required, and recommendations for mitigating the impact of rebuilds on ongoing query requests.
1717

0 commit comments

Comments
 (0)