Don't miss out Virtual Happy Hour this Friday (April 26).

Try our conversational search powered by Generative AI!

Content indexing seems to get stuck and is fragile (EPiServer.Find.Cms 12.2.9)

Vote:
 

Hi

Looks like in EPiServer.Find.Cms 12.2.9 the content indexing is fragile and broken. At least, we have noticed major problems never seen before :)

The main issue is that the content indexing is not very robust. For example, it will fail if a content area contains a reference to a removed page because the indexer will no longer find the page. Normally Episerver checks if the rerefences are still valid to prevent this kind of errors. The implementation is in EPiServer.Find.Cms.ContentEventIndexer in method IndexPageQueue.

The indexing queue is in database table tblFindIndexQueue. All indexable content modifications will get queued here (the Scheduled Job "EPiServer Find Content Indexing Job" doesn't seem to use this table). If an entry fails, it will be stuck on the queue and prevent other entries from getting indexed.

If you are having problems with indexing, just check if an entry is stuck:

SELECT * FROM [tblFindIndexQueue];

If the query returns rows, and they stay the same for minutes, you could just delete the top row and see if this fixes the issue. But most likely the same page will get stuck when you modify it next time. To prevent this, you can fix the old references on a content area by modifying the area and saving the page - this will remove the obsolete references and prevent the indexing from failing later.

This is of course a workaround until the content indexing is fixed :)

#172266
Edited, Nov 28, 2016 20:45
Vote:
 

Hi,

We are trying to remove all items from the queue that has been deleted. It seems like we have missed some cases. I will look into this, and create a bug when I have reproduced it.

#172332
Nov 30, 2016 11:41
Vote:
 

Bug reported and worked on: FIND-1492

#172487
Edited, Dec 05, 2016 10:49
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.