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
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,19 +32,19 @@ Check the service overview page to find out how many indexes, indexers, and data
32
32
33
33
## Create and load an index
34
34
35
-
Search queries iterate over an [*index*](search-what-is-an-index.md) that contains searchable data, metadata, and additional constructs that optimize certain search behaviors.
35
+
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.
36
36
37
37
For this tutorial, we use 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). An indexer is a source-specific crawler that can read metadata and content from supported Azure data sources. Normally, indexers are used programmatically, but in the portal, you can access them through the **Import data** wizard.
38
38
39
39
### Step 1 - Start the Import data wizard and create a data source
40
40
41
41
1. Sign in to the [Azure portal](https://portal.azure.com/) with your Azure account.
42
42
43
-
1.[Find your search service](https://portal.azure.com/#blade/HubsExtension/BrowseResourceBlade/resourceType/Microsoft.Storage%2storageAccounts/) and on the Overview page, click**Import data** on the command bar to create and populate a search index.
43
+
1.[Find your search service](https://portal.azure.com/#blade/HubsExtension/BrowseResourceBlade/resourceType/Microsoft.Storage%2storageAccounts/) and on the Overview page, select**Import data** on the command bar to create and populate a search index.
44
44
45
45
:::image type="content" source="media/search-import-data-portal/import-data-cmd.png" alt-text="Screenshot of the Import data command in the command bar." border="true":::
46
46
47
-
1. In the wizard, click**Connect to your data** > **Samples** > **hotels-sample**. This data source is built-in. If you were creating your own data source, you would need to specify a name, type, and connection information. Once created, it becomes an "existing data source" that can be reused in other import operations.
47
+
1. In the wizard, select**Connect to your data** > **Samples** > **hotels-sample**. This data source is built-in. If you were creating your own data source, you would need to specify a name, type, and connection information. Once created, it becomes an "existing data source" that can be reused in other import operations.
48
48
49
49
:::image type="content" source="media/search-get-started-portal/import-datasource-sample.png" alt-text="Screenshot of the select sample dataset page in the wizard.":::
50
50
@@ -63,7 +63,7 @@ We'll skip this step for now, and move directly on to **Customize target index**
63
63
64
64
### Step 3 - Configure index
65
65
66
-
For the built-in hotels sample index, a default index schema is defined for you. With the exception of a few advanced filter examples, queries in the documentation and samples that target the hotel-samples index will run on this index definition:
66
+
For the built-in hotels sample index, a default index schema is defined for you. Except for a few advanced filter examples, queries in the documentation and samples that target the hotel-samples index will run on this index definition:
67
67
68
68
:::image type="content" source="media/search-get-started-portal/hotelsindex.png" alt-text="Screenshot of the generated hotels index definition in the wizard.":::
69
69
@@ -88,31 +88,31 @@ By default, the wizard scans the data source for unique identifiers as the basis
88
88
89
89
### Step 4 - Configure indexer
90
90
91
-
Still in the **Import data** wizard, click**Indexer** > **Name**, and type a name for the indexer.
91
+
Still in the **Import data** wizard, select**Indexer** > **Name**, and type a name for the indexer.
92
92
93
93
This object defines an executable process. You could put it on recurring schedule, but for now use the default option to run the indexer once, immediately.
94
94
95
-
Click**Submit** to create and simultaneously run the indexer.
95
+
Select**Submit** to create and simultaneously run the indexer.
96
96
97
97
:::image type="content" source="media/search-get-started-portal/hotels-indexer.png" alt-text="Screenshot of the hotels indexer definition in the wizard.":::
98
98
99
99
## Monitor progress
100
100
101
-
The wizard should take you to the Indexers list where you can monitor progress. For self-navigation, go to the Overview page and click the **Indexers** tab.
101
+
The wizard should take you to the Indexers list where you can monitor progress. For self-navigation, go to the Overview page and select the **Indexers** tab.
102
102
103
103
It can take a few minutes for the portal to update the page, but you should see the newly created indexer in the list, with status indicating "in progress" or success, along with the number of documents indexed.
104
104
105
105
:::image type="content" source="media/search-get-started-portal/indexers-inprogress.png" alt-text="Screenshot of the indexer progress message in the wizard.":::
106
106
107
107
## Check results
108
108
109
-
The service overview page provides links to the resources created in your Azure Cognitive Search service. To view the index you just created, click**Indexes** from the list of links.
109
+
The service overview page provides links to the resources created in your Azure Cognitive Search service. To view the index you just created, select**Indexes** from the list of links.
110
110
111
111
Wait for the portal page to refresh. After a few minutes, you should see the index with a document count and storage size.
112
112
113
113
:::image type="content" source="media/search-get-started-portal/indexes-list.png" alt-text="Screenshot of the Indexes list on the service dashboard.":::
114
114
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.
115
+
From this list, you can select on the *hotels-sample* index that you just created, view the index schema. and optionally add new fields.
116
116
117
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
@@ -175,7 +175,7 @@ If you're using a free service, remember that the limit is three indexes, indexe
175
175
176
176
## Next steps
177
177
178
-
Use a portal wizard to generate a ready-to-use web app that runs in a browser. You can try this wizard out on the small index you just created, or use one of the built-in sample data sets for a richer search experience.
178
+
Use a portal wizard to generate a ready-to-use web app that runs in a browser. You can try out this wizard on the small index you just created, or use one of the built-in sample data sets for a richer search experience.
179
179
180
180
> [!div class="nextstepaction"]
181
181
> [Create a demo app in the portal](search-create-app-portal.md)
0 commit comments