Skip to content

Commit 535479d

Browse files
committed
implemented acrolinx suggestions
1 parent 093938e commit 535479d

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,19 @@ Check the service overview page to find out how many indexes, indexers, and data
3232

3333
## Create and load an index
3434

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.
3636

3737
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.
3838

3939
### Step 1 - Start the Import data wizard and create a data source
4040

4141
1. Sign in to the [Azure portal](https://portal.azure.com/) with your Azure account.
4242

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.
4444

4545
:::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":::
4646

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.
4848

4949
:::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.":::
5050

@@ -63,7 +63,7 @@ We'll skip this step for now, and move directly on to **Customize target index**
6363
6464
### Step 3 - Configure index
6565

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:
6767

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

@@ -88,31 +88,31 @@ By default, the wizard scans the data source for unique identifiers as the basis
8888

8989
### Step 4 - Configure indexer
9090

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.
9292

9393
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.
9494

95-
Click **Submit** to create and simultaneously run the indexer.
95+
Select **Submit** to create and simultaneously run the indexer.
9696

9797
:::image type="content" source="media/search-get-started-portal/hotels-indexer.png" alt-text="Screenshot of the hotels indexer definition in the wizard.":::
9898

9999
## Monitor progress
100100

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.
102102

103103
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.
104104

105105
:::image type="content" source="media/search-get-started-portal/indexers-inprogress.png" alt-text="Screenshot of the indexer progress message in the wizard.":::
106106

107107
## Check results
108108

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.
110110

111111
Wait for the portal page to refresh. After a few minutes, you should see the index with a document count and storage size.
112112

113113
:::image type="content" source="media/search-get-started-portal/indexes-list.png" alt-text="Screenshot of the Indexes list on the service dashboard.":::
114114

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.
116116

117117
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.
118118

@@ -175,7 +175,7 @@ If you're using a free service, remember that the limit is three indexes, indexe
175175

176176
## Next steps
177177

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.
179179

180180
> [!div class="nextstepaction"]
181181
> [Create a demo app in the portal](search-create-app-portal.md)

0 commit comments

Comments
 (0)