Azure AI Search Solution: Understand Indexing Process
Understand The Indexing Process For every indexed entity, a document is created as part of the indexing process. An enrichment pipeline produces the documents repeatedly during indexing, combining enriched fields retrieved by cognitive skills with metadata from the data source. You can think of each indexed document as a JSON structure, which initially consists of a document with the index fields you have mapped to fields extracted directly from the source data. You can set up the indexer to extract image data from documents in the data source and add each image to a collection called normalized_images. You can use the collection of photographs as an input for skills that extract information from image data by normalizing the image data in this manner. Every talent adds fields to the document. For instance, a skill that determines the language used in a document may store its result in a language field. The document is structured hierarchically, and the skills are applied to a sp...