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/search-get-started-portal.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ author: HeidiSteen
7
7
ms.author: heidist
8
8
ms.service: cognitive-search
9
9
ms.topic: quickstart
10
-
ms.date: 12/29/2021
10
+
ms.date: 08/24/2022
11
11
ms.custom: mode-ui
12
12
---
13
13
# Quickstart: Create an Azure Cognitive Search index in the Azure portal
@@ -72,11 +72,11 @@ Typically, in a code-based exercise, index creation is completed prior to loadin
72
72
Fields have data types and attributes. The check boxes across the top are *index attributes* controlling how the field is used.
73
73
74
74
+**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.
75
-
+**Key** is the unique document identifier. It's always a string, and it is required.
75
+
+**Key** is the unique document identifier. It's always a string, and it's required.
76
76
+**Filterable**, **Sortable**, and **Facetable** determine whether fields are used in a filter, sort, or faceted navigation structure.
77
77
+**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.
78
78
79
-
Storage requirements do not vary as a result of your selection. For example, if you set the **Retrievable** attribute on multiple fields, storage requirements do not go up.
79
+
Storage requirements don't vary as a result of your selection. For example, if you set the **Retrievable** attribute on multiple fields, storage requirements don't go up.
80
80
81
81
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**.
82
82
@@ -114,15 +114,15 @@ Wait for the portal page to refresh. After a few minutes, you should see the ind
114
114
115
115
From this list, you can click on the *hotels-sample* index that you just created, view the index schema. and optionally add new fields.
116
116
117
-
The **Fields** tab shows the index schema. If you are writing queries and need to check whether a field is filterable or sortable, this tab shows you the attributes.
117
+
The **Fields** tab shows the index schema. If you're writing queries and need to check whether a field is filterable or sortable, this tab shows you the attributes.
118
118
119
-
Scroll to the bottom of the list to enter a new field. While you can always create a new field, in most cases, you cannot change existing fields. Existing fields have a physical representation in your search service and are thus non-modifiable, not even in code. To fundamentally change an existing field, create a new index, dropping the original.
119
+
Scroll to the bottom of the list to enter a new field. While you can always create a new field, in most cases, you can't change existing fields. Existing fields have a physical representation in your search service and are thus non-modifiable, not even in code. To fundamentally change an existing field, create a new index, dropping the original.
120
120
121
121
:::image type="content" source="media/search-get-started-portal/sample-index-def.png" alt-text="sample index definition":::
122
122
123
123
Other constructs, such as scoring profiles and CORS options, can be added at any time.
124
124
125
-
To clearly understand what you can and cannot edit during index design, take a minute to view index definition options. Grayed-out options are an indicator that a value cannot be modified or deleted.
125
+
To clearly understand what you can and can't edit during index design, take a minute to view index definition options. Grayed-out options are an indicator that a value can't be modified or deleted.
126
126
127
127
## <aname="query-index"></a> Query using Search explorer
128
128
@@ -171,7 +171,7 @@ When you're working in your own subscription, it's a good idea at the end of a p
171
171
172
172
You can find and manage resources in the portal, using the **All resources** or **Resource groups** link in the left-navigation pane.
173
173
174
-
If you are using a free service, remember that you are limited to three indexes, indexers, and data sources. You can delete individual items in the portal to stay under the limit.
174
+
If you're using a free service, remember that the limit is three indexes, indexers, and data sources. You can delete individual items in the portal to stay under the limit.
0 commit comments