Any ideas?
Uncaught PHP Exception ZendSearch\Lucene\Exception\RuntimeException: "Index is under processing now" at some/path/vendor/zendsearch/library/ZendSearch/Lucene/Index.php line 154.
This is in prod mode of Symfony. This caused 500 error in my admin pages.
Thank you very much.
Please read this. I'll try to explain what happened in my case.
In my scenario, one of the reasons “Index is under processing now” occurs is not because it's literally waiting for something.
segments.genis actually not mapped correctly.There are two repositories. One is my development repository (repo A), I made a lot of changes in this repo A. Adding, editting a lot of files made the
segments.gento be updated.segments.genadds and edits files too for its mapping for indexing (searching) purposes. Now, I merged a big folder to the other repository (repo B). This caused thesegments.genin the repo B to be out of sync.What I did to solve this is issue is, I replaced the folder where the
segments.genis located along with the other files (including the ones generated bysegments.gen) of repo B from repo A. Then, it works!