Need help to configure Azure AI Search Index and Indexer to get the Azure blob continer file's Tag details
Hi Team,
I am receiving all the necessary details as per my requirements. However, I am facing an issue when trying to retrieve the tag created at the top of the file in the Azure Blob container. The AI search response does not include these details.
I understand that some configurations might need to be adjusted either in the index or the indexer, but I am not sure about the exact settings required. Could you please provide some assistance?
AI search index:
{
"name": "patientid",
"type": "Edm.String",
"searchable": true,
"filterable": true,
"retrievable": true,
"stored": true,
"sortable": true,
"facetable": true,
"key": false,
"indexAnalyzer": null,
"searchAnalyzer": null,
"analyzer": null,
"normalizer": null,
"dimensions": null,
"vectorSearchProfile": null,
"vectorEncoding": null,
"synonymMaps": []
},
AI Search Indexer:
{
"sourceFieldName": "/document/@search.blobTags.patientid",
"targetFieldName": "patientid",
"mappingFunction": null
}
Screenshot of the Azure tag that is configured in blob file via Azure file explorer is attached for the reference
Thank you.