Re: Solr Max Query length

2016-04-23 Thread Erick Erickson
I do have to ask how you're generating 4k queries. I'f certainly seen situations where this is a good thing, but that is a ginormous query Best, Erick On Sat, Apr 23, 2016 at 6:55 AM, Kelly, Frank wrote: > Yes switching to the POST saved me from having to change Jetty settings > > Thanks for

Re: Solr Max Query length

2016-04-23 Thread Kelly, Frank
Yes switching to the POST saved me from having to change Jetty settings Thanks for the pointer! -Frank Frank Kelly Principal Software Engineer Predictive Analytics Team (SCBE/HAC/CDA) HERE 5 Wayside Rd, Burlington, MA 01803, USA 42° 29' 7" N 71° 11' 32” W

Re: Solr Max Query length

2016-04-22 Thread Reth RM
I'm not sure, may be this should work : QueryResponse response = solr.query(q, METHOD.POST); Let's wait for others response. On Fri, Apr 22, 2016 at 8:51 PM, Kelly, Frank wrote: > I am using the SolrJ library - does it have a way to specify one variant > (POST) over the other (GET)? > > -Fra

Re: Solr Max Query length

2016-04-22 Thread Kelly, Frank
I am using the SolrJ library - does it have a way to specify one variant (POST) over the other (GET)? -Frank On 4/22/16, 11:13 AM, "Reth RM" wrote: >Are you using get instead of post? > >https://dzone.com/articles/solr-select-query-get-vs-post > > > >On Fri, Apr 22, 2016 at 8:12 PM, Kelly, F

Re: Solr Max Query length

2016-04-22 Thread Reth RM
Are you using get instead of post? https://dzone.com/articles/solr-select-query-get-vs-post On Fri, Apr 22, 2016 at 8:12 PM, Kelly, Frank wrote: > I used SolrJ and wrote a test to confirm that the max query length > supported by Solr (by default) was 8192 in Solr 5.3.1 > Based on the default

Solr Max Query length

2016-04-22 Thread Kelly, Frank
I used SolrJ and wrote a test to confirm that the max query length supported by Solr (by default) was 8192 in Solr 5.3.1 Based on the default Jetty settings jetty.xml: The test would not work however until I had used a max size of 4096 (so the query passes at 4095 and returns a RemoteSolr