nerdexam
MicrosoftMicrosoft

AI-102 · Question #14

AI-102 Question #14: Real Exam Question with Answer & Explanation

The correct answer is D: Split the data into multiple virtual folders.. Incorrect Answers: A: Need more search units to process the data in parallel. B: Run them in parallel, not sequentially. C: Need a blob indexer. Note: A blob indexer is used for ingesting content from Azure Blob storage into a Cognitive Index large datasets Indexing blobs can be

Submitted by devops_kid· Mar 30, 2026Implement knowledge mining and document intelligence

Question

You have an existing Azure AI Search service. You have an Azure Blob storage account that contains millions of scanned documents stored as images and PDFs. You need to make the scanned documents available to search as quickly as possible. What should you do?

Options

  • ASplit the data into multiple blob containers.
  • BSplit the data into multiple blob containers.
  • CCreate a Azure AI Search service for each type of document.
  • DSplit the data into multiple virtual folders.

Explanation

Incorrect Answers: A: Need more search units to process the data in parallel. B: Run them in parallel, not sequentially. C: Need a blob indexer. Note: A blob indexer is used for ingesting content from Azure Blob storage into a Cognitive Index large datasets Indexing blobs can be a time-consuming process. In cases where you have millions of blobs to index, you can speed up indexing by partitioning your data and using multiple indexers to process the data in parallel. Here's how you can set this up: - Partition your data into multiple blob containers or virtual folders - Set up several data sources, one per container or folder. - Create a corresponding indexer for each data source. All of the indexers should point to the same target search index. - One search unit in your service can run one indexer at any given time. Creating multiple indexers as described above is only useful if they actually run in parallel. https://docs.microsoft.com/en-us/azure/search/search-howto-indexing-azure-blob-storage

Topics

#Azure AI Search#Blob storage#Indexer configuration#Performance optimization

Community Discussion

No community discussion yet for this question.

Full AI-102 PracticeBrowse All AI-102 Questions