Skip to content

Commit cf39b38

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into ip-concepts-freshness
2 parents f8bf2bf + 5786362 commit cf39b38

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

articles/azure-monitor/agents/agent-linux.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ The OMS Agent has limited customization and hardening support for Linux.
7373
7474
The following are currently supported:
7575
- SELinux (Marketplace images for CentOS and RHEL with their default settings)
76+
- FIPS (Marketplace images for CentOS and RHEL 6/7 with their default settings)
7677
7778
The following aren't supported:
7879
- CIS

articles/search/search-explorer.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Equivalent syntax for an empty search is `*` or `search=*`.
6161

6262
Free-form queries, with or without operators, are useful for simulating user-defined queries sent from a custom app to Azure Cognitive Search. Only those fields attributed as **Searchable** in the index definition are scanned for matches.
6363

64-
Notice that when you provide search criteria, such as query terms or expressions, search rank comes into play. The following example illustrates a free text search.
64+
Notice that when you provide search criteria, such as query terms or expressions, search rank comes into play. The following example illustrates a free text search. The "@search.score" is a relevance score computed for the match using the [default scoring algorithm](index-ranking-similarity.md#default-scoring-algorithm).
6565

6666
```http
6767
Seattle apartment "Lake Washington" miele OR thermador appliance
@@ -75,7 +75,7 @@ Notice that when you provide search criteria, such as query terms or expressions
7575

7676
## Count of matching documents
7777

78-
Add **$count=true** to get the number of matches found in an index. On an empty search, count is the total number of documents in the index. On a qualified search, it's the number of documents matching the query input. Recall that the service returns the top 50 matches by default, so you might have more matches in the index than what's included in the results.
78+
Add **$count=true** to get the number of matches found in an index. On an empty search, count is the total number of documents in the index. On a qualified search, it's the number of documents matching the query input. Recall that the service returns the top 50 matches by default, so the count might indicate more matches in the index than what's returned in the results.
7979

8080
```http
8181
$count=true
@@ -87,7 +87,7 @@ Add **$count=true** to get the number of matches found in an index. On an empty
8787

8888
## Limit fields in search results
8989

90-
Add [**$select**](search-query-odata-select.md) to limit results to the explicitly named fields for more readable output in **Search explorer**. To keep the search string and **$count=true**, prefix arguments with **&**.
90+
Add [**$select**](search-query-odata-select.md) to limit results to the explicitly named fields for more readable output in **Search explorer**. To keep the previously mentioned parameters in the query, use **&** to separate each parameter.
9191

9292
```http
9393
search=seattle condo&$select=listingId,beds,baths,description,street,city,price&$count=true

articles/search/search-get-started-portal.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: HeidiSteen
77
ms.author: heidist
88
ms.service: cognitive-search
99
ms.topic: quickstart
10-
ms.date: 09/22/2022
10+
ms.date: 11/16/2022
1111
ms.custom: mode-ui
1212
---
1313
# Quickstart: Create an Azure Cognitive Search index in the Azure portal
@@ -24,7 +24,7 @@ Although you won't use the options in this quickstart, the wizard includes a pag
2424

2525
### Check for space
2626

27-
Many customers start with the free service. The free tier is limited to three indexes, three data sources, and three indexers. Make sure you have room for extra items before you begin. This tutorial creates one of each object.
27+
Many customers start with the free service. The free tier is limited to three indexes, three data sources, and three indexers. Make sure you have room for extra items before you begin. This quickstart creates one of each object.
2828

2929
Check the service overview page to find out how many indexes, indexers, and data sources you already have.
3030

@@ -34,7 +34,7 @@ Check the service overview page to find out how many indexes, indexers, and data
3434

3535
Search queries iterate over an [*index*](search-what-is-an-index.md) that contains searchable data, metadata, and other constructs that optimize certain search behaviors.
3636

37-
For this tutorial, we'll create and load the index using a built-in sample dataset that can be crawled using an [*indexer*](search-indexer-overview.md) via the [**Import data wizard**](search-import-data-portal.md). The hotels-sample data set is hosted by Microsoft on Azure Cosmos DB and accessed over an internal connection. You don't need your own Cosmos DB account or source files to access the data.
37+
For this quickstart, we'll create and load the index using a built-in sample dataset that can be crawled using an [*indexer*](search-indexer-overview.md) via the [**Import data wizard**](search-import-data-portal.md). The hotels-sample data set is hosted on Microsoft on Azure Cosmos DB and accessed over an internal connection. You don't need your own Cosmos DB account or source files to access the data.
3838

3939
An indexer is a source-specific crawler that can read metadata and content from supported Azure data sources. Normally, indexers are created programmatically, but in the portal, you can create them through the **Import data wizard**.
4040

@@ -69,16 +69,16 @@ For the built-in hotels sample index, a default index schema is defined for you.
6969

7070
:::image type="content" source="media/search-get-started-portal/hotelsindex.png" alt-text="Screenshot of the generated hotels index definition in the wizard." border="true":::
7171

72-
Typically, in a code-based exercise, index creation is completed prior to loading data. The Import data wizard condenses these steps by generating a basic index for any data source it can crawl. Minimally, an index requires a name and a fields collection; one of the fields should be marked as the document key to uniquely identify each document. Additionally, you can specify language analyzers or suggesters if you want autocomplete or suggested queries.
72+
Typically, in a code-based exercise, index creation is completed prior to loading data. The Import data wizard condenses these steps by generating a basic index for any data source it can crawl. Minimally, an index requires a name and a fields collection. One of the fields should be marked as the document key to uniquely identify each document. Additionally, you can specify language analyzers or suggesters if you want autocomplete or suggested queries.
7373

7474
Fields have a data type and attributes. The check boxes across the top are *attributes* controlling how the field is used.
7575

76-
+ **Retrievable** means that it shows up in search results list. You can mark individual fields as off limits for search results by clearing this checkbox, for example for fields used only in filter expressions.
7776
+ **Key** is the unique document identifier. It's always a string, and it's required. Only one field can be the key.
77+
+ **Retrievable** means that field contents show up in search results list. You can mark individual fields as off limits for search results by clearing this checkbox, for example for fields used only in filter expressions.
7878
+ **Filterable**, **Sortable**, and **Facetable** determine whether fields are used in a filter, sort, or faceted navigation structure.
7979
+ **Searchable** means that a field is included in full text search. Strings are searchable. Numeric fields and Boolean fields are often marked as not searchable.
8080

81-
[Storage requirements](search-what-is-an-index.md#example-demonstrating-the-storage-implications-of-attributes-and-suggesters) can vary as a result of attribute selection. For example, **filterable** requires more storage, but **Retrievable** doesn't.
81+
[Storage requirements](search-what-is-an-index.md#example-demonstrating-the-storage-implications-of-attributes-and-suggesters) can vary as a result of attribute selection. For example, **Filterable** requires more storage, but **Retrievable** doesn't.
8282

8383
By default, the wizard scans the data source for unique identifiers as the basis for the key field. *Strings* are attributed as **Retrievable** and **Searchable**. *Integers* are attributed as **Retrievable**, **Filterable**, **Sortable**, and **Facetable**.
8484

@@ -161,7 +161,7 @@ All of the queries in this section are designed for **Search Explorer** and the
161161

162162
## Takeaways
163163

164-
This tutorial provided a quick introduction to Azure Cognitive Search using the Azure portal.
164+
This quickstart provided a quick introduction to Azure Cognitive Search using the Azure portal.
165165

166166
You learned how to create a search index using the **Import data** wizard. You created your first [indexer](search-indexer-overview.md) and learned the basic workflow for index design. See [Import data wizard in Azure Cognitive Search](search-import-data-portal.md) for more information about the wizard's benefits and limitations.
167167

0 commit comments

Comments
 (0)