Skip to content

Commit b3d1b4b

Browse files
committed
Fixed blocking errors
1 parent 13aef56 commit b3d1b4b

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

articles/search/search-howto-monitor-indexers.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,21 +28,21 @@ You can see the current status of all of your indexers in your search service Ov
2828
| **Failed** | The number of errors exceeded **Max failed items** and indexing has stopped. |
2929
| **Reset** | The indexer's internal change tracking state was reset. The indexer will run in full, refreshing all documents, and not just those with newer timestamps. |
3030

31-
You can click on an indexer in the list to see more details about the indexer's current and recent runs.
31+
You can select on an indexer in the list to see more details about the indexer's current and recent runs.
3232

3333
![Indexer summary and execution history](media/search-monitor-indexers/indexer-summary.png "Indexer summary and execution history")
3434

3535
The **Indexer summary** chart displays a graph of the number of documents processed in its most recent runs.
3636

37-
The **Execution details** list shows up to 50 of the most recent execution results. Click on an execution result in the list to see specifics about that run. This includes its start and end times, and any errors and warnings that occurred.
37+
The **Execution details** list shows up to 50 of the most recent execution results. Select on an execution result in the list to see specifics about that run. This includes its start and end times, and any errors and warnings that occurred.
3838

3939
![Indexer execution details](media/search-monitor-indexers/indexer-execution.png "Indexer execution details")
4040

41-
If there were document-specific problems during the run, they will be listed in the Errors and Warnings fields.
41+
If there were document-specific problems during the run, they'll be listed in the Errors and Warnings fields.
4242

4343
![Indexer details with errors](media/search-monitor-indexers/indexer-execution-error.png "Indexer details with errors")
4444

45-
Warnings are common with some types of indexers, and do not always indicate a problem. For example indexers that use Cognitive Services can report warnings when image or PDF files don't contain any text to process.
45+
Warnings are common with some types of indexers, and don't always indicate a problem. For example indexers that use Cognitive Services can report warnings when image or PDF files don't contain any text to process.
4646

4747
For more information about investigating indexer errors and warnings, see [Indexer troubleshooting guidance](search-indexer-troubleshooting.md).
4848

@@ -55,13 +55,13 @@ Metric views can be filtered or split up by a set of predefined dimensions.
5555
| Metric Name | Description | Dimensions | Sample use cases |
5656
|---|---|---|---|
5757
| Document processed count | Shows the number of indexer processed documents. | Data source name, failed, index name, indexer name, skillset name | <br> - Can be referenced as a rough measure of throughput (number of documents processed by indexer over time) <br> - Set up to alert on failed documents |
58-
| Skill execution invocation count | Shows the number of skill invocations. | Data source name, failed, index name, indexer name, skill name, skill type, skillset name | <br> - Reference to ensure skills are invoked as expected by comparing relative invocation numbers between skills and number of skill invocation to the number of documents. <br> - Set up to alert on failed skill invocations |
58+
| Skill execution invocation count | Shows the number of skill invocations. | Data source name, failed, index name, indexer name, skill name, skill type, skillset name | <br> - Reference to ensure skills are invoked as expected by comparing relative invocation numbers between skills and number of skill invocations to the number of documents. <br> - Set up to alert on failed skill invocations |
5959

6060
The screenshot below shows the number of documents processed by indexers within a service over an hour, split up by indexer name.
6161

6262
![Indexer documents processed metric](media/search-monitor-indexers/indexers-documents-processed-metric.png "Indexer documents processed metric")
6363

64-
You can also configure the graph to see the number of skill invocation over the same hour interval.
64+
You can also configure the graph to see the number of skill invocations over the same hour interval.
6565

6666
![Indexer skills invoked metric](media/search-monitor-indexers/indexers-skill-invocation-metric.png "Indexer skill invocation metric")
6767

@@ -107,13 +107,13 @@ The response contains overall indexer status, the last (or in-progress) indexer
107107

108108
Execution history contains up to the 50 most recent runs, which are sorted in reverse chronological order (most recent first).
109109

110-
Note there are two different status values. The top level status is for the indexer itself. A indexer status of **running** means the indexer is set up correctly and available to run, but not that it's currently running.
110+
Note there are two different status values. The top level status is for the indexer itself. An indexer status of **running** means the indexer is set up correctly and available to run, but not that it's currently running.
111111

112112
Each run of the indexer also has its own status that indicates whether that specific execution is ongoing (**running**), or already completed with a **success**, **transientFailure**, or **persistentFailure** status.
113113

114114
When an indexer is reset to refresh its change tracking state, a separate execution history entry is added with a **Reset** status.
115115

116-
For more details about status codes and indexer monitoring data, see [Get Indexer Status](/rest/api/searchservice/get-indexer-status).
116+
For more information about status codes and indexer monitoring data, see [Get Indexer Status](/rest/api/searchservice/get-indexer-status).
117117

118118
## Monitor using .NET
119119

@@ -163,15 +163,15 @@ Latest run
163163
Document Errors: 0, Warnings: 0
164164
```
165165

166-
Note there are two different status values. The top-level status is the status of the indexer itself. A indexer status of **Running** means that the indexer is set up correctly and available for execution, but not that it is currently executing.
166+
Note there are two different status values. The top-level status is the status of the indexer itself. An indexer status of **Running** means that the indexer is set up correctly and available for execution, but not that it's currently executing.
167167

168168
Each run of the indexer also has its own status for whether that specific execution is ongoing (**Running**), or was already completed with a **Success** or **TransientError** status.
169169

170170
When an indexer is reset to refresh its change tracking state, a separate history entry is added with a **Reset** status.
171171

172172
## Next steps
173173

174-
For more details about status codes and indexer monitoring information, refer to the following API reference:
174+
For more information about status codes and indexer monitoring information, see the following API reference:
175175

176176
* [GetIndexerStatus (REST API)](/rest/api/searchservice/get-indexer-status)
177177
* [IndexerStatus](/dotnet/api/azure.search.documents.indexes.models.indexerstatus)

articles/search/search-modeling-multitenant-saas-applications.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Azure Cognitive Search offers a few boundaries that can be used to isolate tenan
7474

7575
## Modeling multitenancy with Azure Cognitive Search
7676

77-
In the case of a multitenant scenario, the application developer consumes one or more search services and divide their tenants among services, indexes, or both. Azure Cognitive Search has a few common patterns when modeling a multitenant scenario:
77+
In the case of a multitenant scenario, the application developer consumes one or more search services and divides their tenants among services, indexes, or both. Azure Cognitive Search has a few common patterns when modeling a multitenant scenario:
7878

7979
+ *One index per tenant:* Each tenant has its own index within a search service that is shared with other tenants.
8080

0 commit comments

Comments
 (0)