Azure search blob storage field mapping

Rita Prajapati 1 Reputation point
2021-10-27T17:46:14.643+00:00

how can I search the datetime data from the blob storage, and show all of them as facet navigation .I am using the template github code from Azure search knowledge mining.

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.
724 questions
Azure Blob Storage
Azure Blob Storage
An Azure service that stores unstructured data in the cloud as blobs.
2,440 questions
{count} votes

1 answer

Sort by: Most helpful
  1. SnehaAgrawal-MSFT 18,366 Reputation points
    2021-11-02T10:21:25.67+00:00

    As its mentioned here that Standard blob metadata properties can be extracted into the fields as below: The blob indexer automatically creates internal field mappings for these blob metadata properties. You still have to add the fields you want to use the index definition, but you can omit creating field mappings in the indexer.

    Use metadata_storage_last_modified (Edm.DateTimeOffset) and make it filterable and facetable: last modified timestamp for the blob. Azure Cognitive Search uses this timestamp to identify changed blobs, to avoid reindexing everything after the initial indexing.

    hope this helps, let us know.