Search code examples
azure-table-storageazure-cognitive-search

Azure search with Storage table azure


I'm developing a web project in which I use the Azure search service for searches of records and I use to store Storage table.

I create a index with data and works correctly with the search but when entry new data the service search continues Azure previous records

how you can synchronize records new data from a storage table to azure search? is possible automatic synchronization?

Thanks.


Solution

  • Please make sure your indexer has a schedule specified - see this article for an example. The data synchronization will occur as per the schedule - it will not happen instantly. The minimal schedule interval is 5 minutes ("PT5M"). HTH!