I am running Drupal 8 Beta 15(waiting for RC1) and I have downloaded the latest dev release of the module. I had to re-create indexes since viewing index resulted in WSOD and unknown index message(even though editing works just fine).

After that I wanted to re-index my content but for some reason the module says that there are no tracked entities and I cannot add any. Has some change been implemented that would require a manual action from my side, like updating entity annotation with search api flag or something?

Comments

Anonymous’s picture

ivanjaros created an issue. See original summary.

drunken monkey’s picture

Status: Active » Fixed

Yes, due to #2253831: Make sure adding items to the tracking table for new indexes is scalable (and D8's weird system regarding updated default configuration) it's necessary to run this code (or add the config value some other way) after updating to a recent module version:

\Drupal::configFactory()->getEditable('search_api.settings')->set('tracking_page_size', 100)->save();

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.