Re: Solr 4.3: Recovering from "Too many values for UnInvertedField faceting on field"

2013-09-05 Thread Dmitry Kan
We had a similar case for multivalued fields with a lot of unique values per field in some cases. Using facet.method=enum instead of facet.method=fc fixed the problem. Can run slower though. Dmitry On Tue, Sep 3, 2013 at 5:04 PM, Dennis Schafroth wrote: > We are harvesting and indexing bibliogr

Re: Solr 4.3: Recovering from "Too many values for UnInvertedField faceting on field"

2013-09-03 Thread Greg Preston
Our index is too large to uninvert on the fly, so we've been looking into using DocValues to keep a particular field uninverted at index time. See http://wiki.apache.org/solr/DocValues I don't know if this will solve your problem, but it might be worth trying it out. -Greg On Tue, Sep 3, 2013

Solr 4.3: Recovering from "Too many values for UnInvertedField faceting on field"

2013-09-03 Thread Dennis Schafroth
We are harvesting and indexing bibliographic data, thus having many distinct author names in our index. While testing Solr 4 I believe I had pushed a single core to 100 million records (91GB of data) and everything was working fine and fast. After adding a little more to the index, then followin