Sitecore CMS/XP uses index update strategies to keep search indexes up-to-date.
Index update strategies queue index update jobs that perform the actual update:
INFO Job started: Index_Update_IndexName=sitecore_master_index
The presence of the index name in the name of the job means that:
In environments with frequent content changes, the synchronous index update strategy might not be able to keep up with the changes because it creates a separate update job for each item change.
Switching to Interval Asynchronous index update strategy allows you to optimize resource consumption and speed up index update operations.
INFO Job started: Index_Update_IndexName=sitecore_master_index
<index id="sitecore_master_index" ...> ... <strategies hint="list:AddStrategy"> <strategy ref="contentSearch/indexConfigurations/indexUpdateStrategies/syncMaster" /> </strategies> ... </index>
<strategy ref="contentSearch/indexConfigurations/indexUpdateStrategies/intervalAsyncMaster" />
<intervalAsyncMaster type="Sitecore.ContentSearch.Maintenance.Strategies.IntervalAsynchronousStrategy, Sitecore.ContentSearch" ...> <param desc="database">master</param> <param desc="interval">00:00:05</param> ... </intervalAsyncMaster>
Check the known issue about frequent rebuilds of the sitecore_suggested_test_index to see if it is applicable to your version of Sitecore XP.