Re: Distributed FacetComponent NullPointer Exception

2012-04-17 Thread Jamie Johnson
I tried to clean it up a little bit, but removed too much. Here is an example which more closely shows what is in the log. I changed the actual data, hopefully I didn't mess it up. facet=true&tie=0.1&ids=urn:sha256:0bea3adf1415c6c737063122d8abd343b24167bdfc7134a3efaef79b263c0a43&qf=%0a++

Re: Distributed FacetComponent NullPointer Exception

2012-04-17 Thread Yonik Seeley
facet.field={!terms=$organization__terms}organization This is referring to another request parameter that Solr should have added (organization__terms) . Did you cut-n-paste all of the parameters below? -Yonik lucenerevolution.com - Lucene/Solr Open Source Search Conference. Boston May 7-10 On

Re: Distributed FacetComponent NullPointer Exception

2012-04-17 Thread Jamie Johnson
I'm noticing that this issue seems to be occurring with facet fields which have some unexpected characters. For instance the query that I see going across the wire is as follows facet=true&tie=0.1&ids=3F2504E0-4F89-11D3-9A0C-0305E82C3301&qf=%0a++author^0.5+type^0.5+content_mvtxt^10++subje

Re: Distributed FacetComponent NullPointer Exception

2012-04-16 Thread Jamie Johnson
I created to track this. https://issues.apache.org/jira/browse/SOLR-3362 On Mon, Apr 16, 2012 at 11:18 PM, Jamie Johnson wrote: > doing some debugging this is the relevant block in FacetComponent > >          String name = shardCounts.getName(j); >          long count = ((Number)shardCounts.getV

Re: Distributed FacetComponent NullPointer Exception

2012-04-16 Thread Jamie Johnson
doing some debugging this is the relevant block in FacetComponent String name = shardCounts.getName(j); long count = ((Number)shardCounts.getVal(j)).longValue(); ShardFacetCount sfc = dff.counts.get(name); sfc.count += count; the issue is sfc is null. I d

Re: Distributed FacetComponent NullPointer Exception

2012-04-16 Thread Jamie Johnson
worth notingthe error goes away at times depending on the number of facets asked for. On Mon, Apr 16, 2012 at 10:38 PM, Jamie Johnson wrote: > I found (what appears to be) the issue I am experiencing here > http://lucene.472066.n3.nabble.com/NullPointerException-with-distributed-facets-td3528