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-howto-monitor-indexers.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
@@ -28,21 +28,21 @@ You can see the current status of all of your indexers in your search service Ov
28
28
|**Failed**| The number of errors exceeded **Max failed items** and indexing has stopped. |
29
29
|**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. |
30
30
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.
32
32
33
33

34
34
35
35
The **Indexer summary** chart displays a graph of the number of documents processed in its most recent runs.
36
36
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.
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.
42
42
43
43

44
44
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.
46
46
47
47
For more information about investigating indexer errors and warnings, see [Indexer troubleshooting guidance](search-indexer-troubleshooting.md).
48
48
@@ -55,13 +55,13 @@ Metric views can be filtered or split up by a set of predefined dimensions.
55
55
| Metric Name | Description | Dimensions | Sample use cases |
56
56
|---|---|---|---|
57
57
| 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 |
59
59
60
60
The screenshot below shows the number of documents processed by indexers within a service over an hour, split up by indexer name.
@@ -107,13 +107,13 @@ The response contains overall indexer status, the last (or in-progress) indexer
107
107
108
108
Execution history contains up to the 50 most recent runs, which are sorted in reverse chronological order (most recent first).
109
109
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.
111
111
112
112
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.
113
113
114
114
When an indexer is reset to refresh its change tracking state, a separate execution history entry is added with a **Reset** status.
115
115
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).
117
117
118
118
## Monitor using .NET
119
119
@@ -163,15 +163,15 @@ Latest run
163
163
Document Errors: 0, Warnings: 0
164
164
```
165
165
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.
167
167
168
168
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.
169
169
170
170
When an indexer is reset to refresh its change tracking state, a separate history entry is added with a **Reset** status.
171
171
172
172
## Next steps
173
173
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:
Copy file name to clipboardExpand all lines: articles/search/search-modeling-multitenant-saas-applications.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,7 +74,7 @@ Azure Cognitive Search offers a few boundaries that can be used to isolate tenan
74
74
75
75
## Modeling multitenancy with Azure Cognitive Search
76
76
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:
78
78
79
79
+*One index per tenant:* Each tenant has its own index within a search service that is shared with other tenants.
0 commit comments