On 9/20/2013 12:34 PM, Erick Erickson wrote: > You're probably exceeding the size that your servlet container allows. > This assumes you're using curl or some such. You can change it. > How big is the document and how are you sending it to Solr?
The maximum form size is configurable in Solr, not sure whether that change went in for 4.1 or 4.2. Solr will override what the servlet container itself has configured. In the requestDispatcher section of solrconfig.xml, you can have a requestParsers tag. One of the attributes for that tag can be formdataUploadLimitInKB. The default value for that setting is 2048, for a maximum POST size of 2MB. This should be described in the example solrconfig.xml file. Thanks, Shawn