RE: Distributed queries hang in a non-SolrCloud environment, Solr 4.10.4

2015-07-02 Thread Ryan, Michael F. (LNG-DAY)
Try running jstack on the aggregator - that will show you where the threads are hanging. -Michael -Original Message- From: Ronald Wood [mailto:rw...@smarsh.com] Sent: Thursday, July 02, 2015 3:37 PM To: solr-user@lucene.apache.org Subject: Distributed queries hang in a non-SolrCloud

TokenStream contract violation: close() call missing error in 4.9.0

2015-06-09 Thread Ryan, Michael F. (LNG-DAY)
I'm using Solr 4.9.0. I'm trying to figure out what would cause an error like this to occur a rare, non-deterministic manner: java.lang.IllegalStateException: TokenStream contract violation: close() call missing at org.apache.lucene.analysis.Tokenizer.setReader(Tokenizer.java:90)

RE: Upgraded to 4.10.3, highlighting performance unusably slow

2015-05-02 Thread Ryan, Michael F. (LNG-DAY)
Are you able to identify if there is a particular part of the code that is slow? A simple way to do this is to use the jstack command (assuming your server has the full JDK installed). You can run it like this: /path/to/java/bin/jstack PID If you run that a bunch of times while your highlight

RE: How to start an optimize in SolrJ without waiting for it to complete?

2015-05-01 Thread Ryan, Michael F. (LNG-DAY)
If I recall correctly, waitSearcher only affects the opening of the new Searcher, and not the part of the optimize where the segments are being merged together (the long part). I took a quick look at DirectUpdateHandler2, and I don't see anything to allow the request to return immediately. I

RE: Are there known issues with Java 8 in older versions of Solr?

2015-04-06 Thread Ryan, Michael F. (LNG-DAY)
I can at least say that Solr 3.x works fine with Java 7. -Michael -Original Message- From: Shawn Heisey [mailto:apa...@elyograg.org] Sent: Monday, April 06, 2015 5:26 PM To: solr-user@lucene.apache.org Subject: Re: Are there known issues with Java 8 in older versions of Solr? On

RE: Invalid Date String:'1992-07-10T17'

2015-03-10 Thread Ryan, Michael F. (LNG-DAY)
You'll need to wrap the date in quotes, since it contains a colon: String a = speechDate:\1992-07-10T17:33:18Z\; -Michael -Original Message- From: Mirko Torrisi [mailto:mirko.torr...@ucdconnect.ie] Sent: Tuesday, March 10, 2015 3:34 PM To: solr-user@lucene.apache.org Subject: Invalid

RE: Performance on faceting using docValues

2015-03-05 Thread Ryan, Michael F. (LNG-DAY)
This is consistent with my experience. DocValues is faster for the first call (compared to UnInvertedField, which is what is used when there are no DocValues), but is slower on subsequent calls. I'm curious as to this as well, since I haven't heard anyone else before you also mention this. I

RE: Avoiding wildcard queries using edismax query parser

2015-01-23 Thread Ryan, Michael F. (LNG-DAY)
Here's a Jira for this: https://issues.apache.org/jira/browse/SOLR-3031 I've attached a patch there that might be useful for you. -Michael -Original Message- From: Jorge Luis Betancourt González [mailto:jlbetanco...@uci.cu] Sent: Thursday, January 22, 2015 4:34 PM To: