find documents files index using azure search

Nucas kelly 1 Reputation point
2020-08-13T09:06:19.113+00:00

Before moving to prod,I'm working with my colleague and trying to perform my first Azure Search integration, can't figure out why indexing is not working. Adding some background, created a cognitive search skillset to upload the files in blob in the East US region ( also the same as my storage account).
Trying to configure and have AI enrichment on my basic test app.

Index aswapp = CreateaswappIndex(serviceClient);
Console.WriteLine("aswapp");
Indexer aswapp = Createaswapp(serviceClient, dataSource, skillset, aswappIndex);

//
[IsSearchable]
public string Content { get; set; }
//
data source has been indexed, but a few documents are missing. I have confirmed it is part of the data source, but few items are not showing up. Let me know if anything more is required , any ways to identify why it causes an issue?

Azure AI Search
Azure AI Search
An Azure search service with built-in artificial intelligence capabilities that enrich information to help identify and explore relevant content at scale.
834 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. ajkuma 24,396 Reputation points Microsoft Employee
    2020-08-13T15:45:42.98+00:00

    Welcome to Microsoft Q&A! Thanks for posting good question.

    If I have understood you correctly, you’re expected content doesn’t appear or is missing while operational. Typically, missing content could be the result of documents getting dropped during indexing.

    1. Free and Basic tiers have low limits on document size. Any file exceeding the limit is dropped during indexing.

    Kindly examine for dropped documents in the Azure Portal> In the search service dashboard> double-click the Indexers tile. Review the ratio of successful documents indexed. If it is not 100%, you can click the ratio to get more detail.

    If the problem is related to file size, you might see an error like this:
    "The blob <file-name>" has the size of <file-size> bytes, which exceeds the maximum size for document extraction for your current service tier."