Courseiva

AI-102

Study mode — explanations shown

1

Implement knowledge mining and information extraction solutions

medium

You have configured an Azure AI Search indexer with a Cosmos DB data source as shown in the exhibit. The indexer runs successfully, but you notice that the index is missing some documents that were recently added to Cosmos DB. What is the most likely cause?

Exhibit

Refer to the exhibit.

{
  "$schema": "https://schemas.microsoft.com/azure/cosmosdb/2019-08-01",
  "datasources": [
    {
      "name": "my-cosmosdb",
      "type": "cosmosdb",
      "credentials": { "connectionString": "AccountEndpoint=https://mycosmos.documents.azure.com:443/;AccountKey=...;" },
      "container": { "name": "mycontainer", "query": "SELECT c.id, c.title, c.content FROM c WHERE c._ts > @HighWaterMark ORDER BY c._ts" }
    }
  ]
}
0 of 25 answered