RE: NPE when faceting with MLT Query from upgrade to Solr 5.1.0

2015-05-26 Thread Jeroen Steggink
: RE: NPE when faceting with MLT Query from upgrade to Solr 5.1.0 Hi Tim, I just ran into the exact same problem. I see you created a bug in JIRA. I will check what is causing this and try and fix it. https://issues.apache.org/jira/browse/SOLR-7559 Jeroen -Original Message- From: Tim H

RE: NPE when faceting with MLT Query from upgrade to Solr 5.1.0

2015-05-26 Thread Jeroen Steggink
Hi Tim, I just ran into the exact same problem. I see you created a bug in JIRA. I will check what is causing this and try and fix it. https://issues.apache.org/jira/browse/SOLR-7559 Jeroen -Original Message- From: Tim H [mailto:th98...@gmail.com] Sent: maandag 18 mei 2015 17:28 To:

Re: NPE when faceting TEXTfield in a distributed search query

2013-04-10 Thread Jack Krupansky
Are you sure you want to facet on a text field??? That will facet on the individual terms, which isn't usually very useful. Usually, people want to facet on full phrases or entire strings, so they do a schema copyField from the text field to a string field and then facet on the string field.

Re: NPE when faceting TEXTfield in a distributed search query

2013-04-10 Thread Jack Krupansky
- From: Jack Krupansky Sent: Wednesday, April 10, 2013 6:30 PM To: solr-user@lucene.apache.org Subject: Re: NPE when faceting TEXTfield in a distributed search query Are you sure you want to facet on a text field??? That will facet on the individual terms, which isn't usually very useful. Usually

Re: NPE when faceting TEXTfield in a distributed search query

2013-04-10 Thread coolpriya5
Number of values fun_group on shard 6 = 48000 Max length of fun_group is 20 chars If I run the facet on just shard6 it doesn't error out no matter the facet.limit. Also this query returns results only from shard 6 since the my_id:4024 belongs to shard 6. -- View this message in context:

Re: NPE when faceting TEXTfield in a distributed search query

2013-04-10 Thread Jack Krupansky
@lucene.apache.org Subject: Re: NPE when faceting TEXTfield in a distributed search query Number of values fun_group on shard 6 = 48000 Max length of fun_group is 20 chars If I run the facet on just shard6 it doesn't error out no matter the facet.limit. Also this query returns results only from shard 6 since

Re: NPE when faceting TEXTfield in a distributed search query

2013-04-10 Thread coolpriya5
Solr Version is 3.4. As for stacktrace, I tried setting logger level to FINEST on the solr admin logging page and it still doesn't print the stacktrace. All I get are one liners:- 2013-04-10 17:09:59,889 [http--18] ERROR [Marker: ] org.apache.solr.core.SolrCore :

RE: NPE when faceting TEXTfield in a distributed search query

2013-04-10 Thread Michael Ryan
. Are you using Jetty, Tomcat, or something else? -Michael -Original Message- From: coolpriya5 [mailto:coolpri...@gmail.com] Sent: Wednesday, April 10, 2013 7:17 PM To: solr-user@lucene.apache.org Subject: Re: NPE when faceting TEXTfield in a distributed search query Solr Version is 3.4

RE: NPE when faceting TEXTfield in a distributed search query

2013-04-10 Thread coolpriya5
I'm using tomcat. Also in such a case, why wouldn't the same error occur when I run the same query on shard 6 alone? Is this a limitation of distributed search? Shard 6 is the only shard that has data for this query. -- View this message in context:

RE: NPE when faceting TEXTfield in a distributed search query

2013-04-10 Thread Michael Ryan
. Are you able to see the query in the shard 6 log for the working facet.limit=5000facet.offset=0 query? -Michael -Original Message- From: coolpriya5 [mailto:coolpri...@gmail.com] Sent: Wednesday, April 10, 2013 9:16 PM To: solr-user@lucene.apache.org Subject: RE: NPE when faceting TEXTfield

Re: NPE when faceting

2012-05-01 Thread Jamie Johnson
it may be related this this http://stackoverflow.com/questions/10124055/solr-faceted-search-throws-nullpointerexception-with-http-500-status we are doing deletes from our index as well so it is possible that we're running into the same issue. I hope that sheds more light on things. On Tue, May

Re: NPE when faceting

2012-05-01 Thread Yonik Seeley
Darn... looks likely that it's another bug from when part of UnInvertedField was refactored into Lucene. We really need some random tests that can catch bugs like these though - I'll see if I can reproduce. Can you open a JIRA issue for this? -Yonik lucenerevolution.com - Lucene/Solr Open Source

Re: NPE when faceting

2012-05-01 Thread Jamie Johnson
I don't have any more details than I provided here, but I created a ticket with this information. Thanks again https://issues.apache.org/jira/browse/SOLR-3427 On Tue, May 1, 2012 at 5:20 PM, Yonik Seeley yo...@lucidimagination.com wrote: Darn... looks likely that it's another bug from when