On 1/24/2017 6:15 PM, Stanislav Sandalnikov wrote:
> Thanks a lot for your valuable input. Of course you were right, the
> data was changed after reindex step, I completely forgot that
> categories are done by separate application and this application was
> pushing empty IndexDate field after update, because it couldn’t
> extract a value from it since the field was not stored. By the way is
> there any way to see if there is a index for some particular field of
> a document?

As long as the field doesn't have docValues enabled, the facet feature
can be used to drill down into what terms are in the index for that
field in a document.  If docValues are enabled, then you would only see
the originally indexed input, not the analyzed terms.  If your field
meets this requirement, do a facet on the field, and use the q/fq
parameters to search for a single document, probably by ID.

There is also a separate program called Luke that can inspect Lucene
indexes down to the individual document level.

Thanks,
Shawn

Reply via email to