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/cognitive-search-quickstart-blob.md
+11-7Lines changed: 11 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ In the following steps, set up a blob container in Azure Storage to store hetero
49
49
50
50
1. In Azure portal, open your Azure Storage page and create a container. You can use the default public access level.
51
51
52
-
1. In Container, click**Upload** to upload the sample files you downloaded in the first step. Notice that you have a wide range of content types, including images and application files that are not full text searchable in their native formats.
52
+
1. In Container, select**Upload** to upload the sample files you downloaded in the first step. Notice that you have a wide range of content types, including images and application files that are not full text searchable in their native formats.
53
53
54
54
:::image type="content" source="media/cognitive-search-quickstart-blob/sample-data.png" alt-text="Source files in Azure Blob Storage" border="false":::
55
55
@@ -59,7 +59,7 @@ You are now ready to move on the Import data wizard.
59
59
60
60
1. Sign in to the [Azure portal](https://portal.azure.com/) with your Azure account.
61
61
62
-
1.[Find your search service](https://ms.portal.azure.com/#blade/HubsExtension/BrowseResourceBlade/resourceType/Microsoft.Storage%2storageAccounts/) and on the Overview page, click**Import data** on the command bar to set up cognitive enrichment in four steps.
62
+
1.[Find your search service](https://ms.portal.azure.com/#blade/HubsExtension/BrowseResourceBlade/resourceType/Microsoft.Storage%2storageAccounts/) and on the Overview page, select**Import data** on the command bar to set up cognitive enrichment in four steps.
63
63
64
64
:::image type="content" source="media/search-import-data-portal/import-data-cmd.png" alt-text="Screenshot of the Import data command" border="true":::
65
65
@@ -115,29 +115,33 @@ Continue to the next page.
115
115
116
116
The indexer drives the indexing process. It specifies the data source name, a target index, and frequency of execution. The **Import data** wizard creates several objects, including an indexer that you can reset and run repeatedly.
117
117
118
-
1. In the **Indexer** page, you can accept the default name and click the **Once** schedule option to run it immediately.
118
+
1. In the **Indexer** page, you can accept the default name and select **Once** to run it immediately.
1. Click **Submit** to create and simultaneously run the indexer.
123
123
124
124
## Monitor status
125
125
126
-
Cognitive skills indexing takes longer to complete than typical text-based indexing, especially OCR and image analysis. To monitor progress, go to the Overview page and click**Indexers** in the middle of page.
126
+
Cognitive skills indexing takes longer to complete than typical text-based indexing, especially OCR and image analysis. To monitor progress, go to the Overview page and select**Indexers** in the middle of page.
To check details about execution status, select an indexer from the list.
131
131
132
+
There is one warning. It tells you that the PNG file in the data source doesn't provide a text input to Entity Recognition. This warning occurs because the upstream OCR skill didn't recognize any text in the image, and thus could not provide a text input to the downstream Entity Recognition skill.
133
+
134
+
In skillset execution, warnings are common. As you become familiar with skillset execution, you'll begin to notice patterns and learn which warnings are safe to ignore.
135
+
132
136
## Query in Search explorer
133
137
134
138
After an index is created, you can run queries to return results. In the portal, use **Search explorer** for this task.
135
139
136
-
1. On the search service dashboard page, click**Search explorer** on the command bar.
140
+
1. On the search service dashboard page, select**Search explorer** on the command bar.
137
141
138
142
1. Select **Change Index** at the top to select the index you created.
139
143
140
-
1. Enter a search string to query the index, such as `search=Microsoft&$select=people,organizations,locations,imageTags`.
144
+
1. Enter a search string to query the index, such as `search=Satya Nadella&$select=people,organizations,locations&$count=true`.
141
145
142
146
Results are returned as JSON, which can be verbose and hard to read, especially in large documents originating from Azure blobs. Some tips for searching in this tool include the following techniques:
143
147
@@ -146,7 +150,7 @@ Results are returned as JSON, which can be verbose and hard to read, especially
146
150
147
151
Query strings are case-sensitive so if you get an "unknown field" message, check **Fields** or **Index Definition (JSON)** to verify name and case.
148
152
149
-
:::image type="content" source="media/cognitive-search-quickstart-blob/search-explorer.png" alt-text="Search explorer example" border="false":::
153
+
:::image type="content" source="media/cognitive-search-quickstart-blob/search-explorer.png" alt-text="Search explorer example" border="true":::
0 commit comments