Azure search AI - connecting to the service and search our Index
Besides hooking up your search service to an AI, you might want to connect to your search service to retrieve data you already indexed. We will be creating index for our json data stored in a storage account via portal - it will automatically create index and indexer for us. Besides JSON, you can index other data such as SQL database, mark down and even Apache Spark. Index allow our document to be ' structure and define for faster search '. Indexer perform actual indexing to our data and we can specify or schedule when we wants it. Pre-requisite AI search Storage acccount with hierarchical name enabled python code First we click on " Import data " and select " Data Lake " And this is what our storage account looks like :- And then let's configure our json:- click " next " :- and then accept the default :- And then you can configure the schedule for our index to run. Use the default and configure it to run "Once". And finally provi...