Skip to content

Commit fdd075c

Browse files
committed
Fixing links
1 parent 2c1183c commit fdd075c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

articles/search/search-howto-run-reset-indexers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ ms.date: 12/06/2022
1515

1616
In Azure Cognitive Search, there are several ways to run an indexer:
1717

18-
+ Run when [creating or updating an indexer (default)](earch-howto-create-indexers.md), assuming it's not created in "disabled" mode.
18+
+ [Run when creating or updating an indexer](search-howto-create-indexers.md), assuming it's not created in "disabled" mode.
19+
+ [Run on a schedule](search-howto-schedule-indexers.md) to invoke execution at regular intervals.
1920
+ Run on demand, with or without a "reset".
20-
+ Run on [a schedule to invoke execution at regular intervals](search-howto-schedule-indexers.md).
2121

2222
This article explains how to run indexers on demand, with and without a reset.
2323

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,16 +38,16 @@ A schedule is part of the indexer definition. If the "schedule" property is omit
3838

3939
| Property | Description |
4040
|----------|-------------|
41-
| "interval" | (required) The amount of time between the start of two consecutive indexer executions. The smallest interval allowed is 5 minutes, and the longest is 1440 minutes (24 hours). It must be formatted as an XSD "dayTimeDuration" value (a restricted subset of an [ISO 8601 duration](https://www.w3.org/TR/xmlschema11-2/#dayTimeDuration) value). </br></br>The pattern for this is: `P(nD)(T(nH)(nM))`. </br></br>Examples: `PT15M` for every 15 minutes, `PT2H` for every 2 hours.|
41+
| "interval" | (required) The amount of time between the start of two consecutive indexer executions. The smallest interval allowed is 5 minutes, and the longest is 1440 minutes (24 hours). It must be formatted as an XSD "dayTimeDuration" value (a restricted subset of an [ISO 8601 duration](https://www.w3.org/TR/xmlschema11-2/#dayTimeDuration) value). </br></br>The pattern for this is: `P(nD)(T(nH)(nM))`. </br></br>Examples: `PT15M` for every 15 minutes, `PT2H` for every two hours.|
4242
| "startTime" | (optional) Start time is specified in coordinated universal time (UTC). If omitted, the current time is used. This time can be in the past, in which case the first execution is scheduled as if the indexer has been running continuously since the original start time.|
4343

44-
The following example is a schedule that starts on January 1 at midnight and runs every 50 minutes.
44+
The following example is a schedule that starts on January 1 at midnight and runs every two hours.
4545

4646
```json
4747
{
4848
"dataSourceName" : "hotels-ds",
4949
"targetIndexName" : "hotels-idx",
50-
"schedule" : { "interval" : "PT50M", "startTime" : "2022-01-01T00:00:00Z" }
50+
"schedule" : { "interval" : "PT2H", "startTime" : "2022-01-01T00:00:00Z" }
5151
}
5252
```
5353

0 commit comments

Comments
 (0)