Re: Max length of solr query

2017-01-12 Thread Erick Erickson
n a POST request is 2MB, since about version >> >> >> 4.1. Before that version, it was controlled by the container config, >> >> >> not Solr. This can be adjusted with the formdataUploadLimitInKB setting >> >> >> in solrconfig.xml. The default value for this is 2048, resulting in the >&g

Re: Max length of solr query

2017-01-12 Thread Noriyuki TAKEI
; > > > > https://cwiki.apache.org/confluence/display/solr/RequestDispatcher+in+SolrConfig > > Thanks, > > > Shawn > > > > > > > > > > > > > > > > > > > > -- > > > > > If yo

Re: Max length of solr query

2017-01-12 Thread Shawn Heisey
On 1/12/2017 9:36 AM, 武井宜行 wrote: > My Application throws too large query to solr server with solrj > client.(Http Method is Post) > > I have two questions. > > At first,I would like to know the limit of clauses of Boolean Query.I Know > the number is restricted to 1024 by default, and I can incre

Re: Max length of solr query

2017-01-12 Thread Scott Stults
That doesn't seem like an efficient use of a search engine. Maybe what you want to do is use streaming expressions to process some data: https://cwiki.apache.org/confluence/display/solr/Streaming+Expressions k/r, Scott On Thu, Jan 12, 2017 at 11:36 AM, 武井宜行 wrote: > Hi,all > > My Application

Max length of solr query

2017-01-12 Thread 武井宜行
Hi,all My Application throws too large query to solr server with solrj client.(Http Method is Post) I have two questions. At first,I would like to know the limit of clauses of Boolean Query.I Know the number is restricted to 1024 by default, and I can increase the limit by setting setMaxClauseC