Correct Answers: A, C and D
Option A is correct because the schedule uses interval and start time properties in the REST API call. Here is a quick example:
<pre>PUT https://myservice.search.windows.net/indexers/myindexer?api-version=2020-06-30
Content-Type: application/json
api-key: admin-key
{
"dataSourceName" : "myazuresqldatasource",
"targetIndexName" : "target index name",
"schedule" : { "interval" : "PT10M", "startTime" : "2021-01-01T00:00:00Z" }
}
</pre>
Option B is incorrect because the indexer needs a datasource and target index for the scheduler to execute the indexer. Here is a quick example:
<pre>PUT https://myservice.search.windows.net/indexers/myindexer?api-version=2020-06-30
Content-Type: application/json
api-key: admin-key
{
"dataSourceName" : "myazuresqldatasource",
"targetIndexName" : "target index name",
"schedule" : { "interval" : "PT10M", "startTime" : "2021-01-01T00:00:00Z" }
}
</pre>
Option C is correct because the maximum allowed interval for indexers with skillsets is 2 hours.
Option D is correct because only one indexer run is allowed at a given time. If the indexer is already running, the next execution will be postponed till the next scheduled time.
Option E is incorrect because the minimum allowed interval for the indexer schedule is 5 minutes, and the maximum allowed interval is 1440 minutes or 24 hours.
Reference:
To learn more about scheduling indexers in Cognitive Search, use the link given below:
https://docs.microsoft.com/en-us/azure/search/search-howto-schedule-indexers