0
votes

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.

1
What platform you are working with? Pure REST APIs, or using SDKs in C#, JAVA, or node.js?Gary Liu

1 Answers

0
votes

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!