Solr search query returning a full chapter exception

I invoke a remote solr search hosted on another machine in a C # application. Now, since my request length is getting too long, so the search engine returns a complete header error. I can not reduce the length of the request. so I just wanted to know if I can make a request for the same? How can i do this? Please suggest me. Thanks.

+4
source share
2 answers

It looks like you are using the default GET parameter size limit. This can be edited by changing the value of headerBufferSize in the jetty.xml file.

See this link when setting up the pier - http://docs.codehaus.org/display/JETTY/Configuring+Connectors

+6
source

You may also need to increase requestBufferSize (buffer size for the entire request, including headers). The default value is 8k.

+1
source

All Articles