Re: URI is too long

2018-09-04 Thread vlspavan
Hi Salman, I have the same issue that URI is too long. Did you try implementing the post method ? If so, can you please post the code from your end on post requests. This will help greatly. Thank you Pavan -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: URI is too long

2016-02-06 Thread Jack Krupansky
And you're sure that you can't use the terms query parser, which was explicitly designed for handling a very long list of terms to be implicitly ORed? -- Jack Krupansky On Sat, Feb 6, 2016 at 2:26 PM, Salman Ansari wrote: > It looked like there was another issue with

Re: URI is too long

2016-02-06 Thread Maciej Lisiewski
GET request length is limited by URL length. RFCs defining HTTP recommend you keep it under 8KB but put no hard limit in place. Because of no hard limit it boils down to the implementation - both on the server side and client side: - On client side Internet Explorer is limited to about 2KB for

Re: URI is too long

2016-02-06 Thread Salman Ansari
It looked like there was another issue with my query. I had too many boolean operators (I believe maxBooleanClause property in SolrConfig.xml). I just looped in batch of 1000 to get all the docs. Not sure if there is a better way of handling this. Regards, Salman On Wed, Feb 3, 2016 at 12:29

Re: URI is too long

2016-02-06 Thread Shawn Heisey
On 2/6/2016 2:47 PM, Maciej Lisiewski wrote: > GET request length is limited by URL length. RFCs defining HTTP recommend > you keep it under 8KB but put no hard limit in place. > Because of no hard limit it boils down to the implementation - both on the > server side and client side: > - On client

Re: URI is too long

2016-02-02 Thread Salman Ansari
gt; > wrote: >> > >> > > On 1/31/2016 7:20 AM, Salman Ansari wrote: >> > > > I am building a long query containing multiple ORs between query >> > terms. I >> > > > started to receive the following exception: >> > > > >&

Re: URI is too long

2016-02-02 Thread Shawn Heisey
On 2/2/2016 1:46 PM, Salman Ansari wrote: > OK then, if there is no way around this problem, can someone tell me the > maximum size a POST body can handle in Solr? It is configurable in solrconfig.xml. Look for the formdataUploadLimitInKB setting in the 5.x configsets. This setting defaults to

Re: URI is too long

2016-02-01 Thread Salman Ansari
> I am building a long query containing multiple ORs between query > > terms. I > > > > started to receive the following exception: > > > > > > > > The remote server returned an error: (414) Request-URI Too Long. Any > > idea > > > > w

Re: URI is too long

2016-02-01 Thread Midas A
t; terms. I > > > started to receive the following exception: > > > > > > The remote server returned an error: (414) Request-URI Too Long. Any > idea > > > what is the limit of the URL in Solr? Moreover, as a solution I was > > > thinking of chunking the query

Re: URI is too long

2016-02-01 Thread Upayavira
> > > > > On 1/31/2016 7:20 AM, Salman Ansari wrote: > > > > I am building a long query containing multiple ORs between query > > terms. I > > > > started to receive the following exception: > > > > > > > > The remote server re

Re: URI is too long

2016-02-01 Thread Salman Ansari
y <apa...@elyograg.org> > > > wrote: > > > > > > > On 1/31/2016 7:20 AM, Salman Ansari wrote: > > > > > I am building a long query containing multiple ORs between query > > > terms. I > > > > > started to receive the fo

Re: URI is too long

2016-02-01 Thread Susheel Kumar
ption: > > > > > > The remote server returned an error: (414) Request-URI Too Long. Any > idea > > > what is the limit of the URL in Solr? Moreover, as a solution I was > > > thinking of chunking the query into multiple requests but I was > wondering

Re: URI is too long

2016-01-31 Thread Shawn Heisey
On 1/31/2016 7:20 AM, Salman Ansari wrote: > I am building a long query containing multiple ORs between query terms. I > started to receive the following exception: > > The remote server returned an error: (414) Request-URI Too Long. Any idea > what is the limit of the URL in

Re: URI is too long

2016-01-31 Thread Jack Krupansky
> > paul > > > Salman Ansari <mailto:salman.rah...@gmail.com> > > 31 January 2016 at 15:20 > > Hi, > > > > I am building a long query containing multiple ORs between query terms. I > > started to receive the following exception: > > > &

Re: URI is too long

2016-01-31 Thread Salman Ansari
te: > > I am building a long query containing multiple ORs between query terms. I > > started to receive the following exception: > > > > The remote server returned an error: (414) Request-URI Too Long. Any idea > > what is the limit of the URL in Solr? Moreover, as a

URI is too long

2016-01-31 Thread Salman Ansari
Hi, I am building a long query containing multiple ORs between query terms. I started to receive the following exception: The remote server returned an error: (414) Request-URI Too Long. Any idea what is the limit of the URL in Solr? Moreover, as a solution I was thinking of chunking the query

Re: URI is too long

2016-01-31 Thread Paul Libbrecht
How about using POST? paul > Salman Ansari <mailto:salman.rah...@gmail.com> > 31 January 2016 at 15:20 > Hi, > > I am building a long query containing multiple ORs between query terms. I > started to receive the following exception: > > The remote server returned a