Try our conversational search powered by Generative AI!

Only sporadic indexing of content - ContentIndexer.Invisible?

Vote:
 

We've been having big problems in our multi-server environment with the Find indexer not always indexing one or all properties of a document, or not at all. It seems to be isolated to the event based indexer, the scheduled job always indexes everything correctly. Trying to re-save the page multiple times some times helps, but most often not.

It's been working OK on the production and staging servers but the testing servers and the local development servers have been more or less impossible to work with, find-wise.

Find has given us no errors in the logs, and even a custom serialization trace writer more or less says everything is OK when it's not.

I finally tried to set ContentIndexer.Invisible to false as per this answer on an old thread, and it seems to be working (still might be too early to tell but looks good so far). The docs say this setting forces the indexer to run in the shared event thread and not its own (it's true by default).

Does anybody know something about this and why it's happening and if it could be related to something else and not the thread setting? Can't seem to file a support ticket right now. Anyway it might help anyone else having weird indexing issues.

#203985
May 15, 2019 12:37
Vote:
 

Which version of Find are you using. If Invisible is false the content indexer will index the content right away, instead of saving it to the queue. It might be interesting to look into the queue in db 

#203987
May 15, 2019 13:15
Vote:
 

Sorry didn't get a notification of your reply.

We're using 13.0.5. I have previously looked in the "tblFindIndexQueue" if that's the one you mean, and it's empty. By flipping Invisible to false, our issues have gone away, and another upside (?) of this is that we get possible indexing errors immediately (since it interrupts the main event thread).

#204175
May 21, 2019 15:46
Vote:
 

Then your next step should be contacting the developer support service. Ask for Karl, he is specialized in this kind of issue ;) 

#204189
May 22, 2019 8:50
Vote:
 

Any luck with this one?, we have been experiencing the same behaviour, 98% of content appaers to index fine but that 2% causes an issue, sometimes it gets added to the index but when its published the "IsPendingPublish" flag doesnt get updated so its seen as unbublished in find, its a real pain to relicate and diagnose

#204828
Edited, Jun 19, 2019 9:39
Vote:
 

@Benjamin, something I've run into several times is having multiple applications trying to index stuff. If two applications (for example a MVC app and service API app) indexes stuff from tblFindIndexQueue, different data will be sent to Find, perhaps due to different cached values or due to different code base.

For example, in one project I saw that both a MVC app and a service API ran the evented content indexer - that is, they both raced to dequeue items from tblFindIndexQueue, and the first one to dequeue, sent data to Find. The service API had no awareness of how the products were modelled, it didn't know what properties to include in the JSON, so when the service API happened to dequeue first, it sent incomplete data to the Find index.

As a result of this, I usually include Environment.MachineName for all Find documents, it helps with debugging and finding patterns in case of errors.

#205331
Jul 05, 2019 11:44
* 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.