Hello, In the released version as well as previous revisions starting at revision 74163 of the example solrconfig.xml file for Solr 4.10.2 enableRemoteStreaming is set to "true".
Released version (See line 748) http://svn.apache.org/viewvc/lucene/dev/tags/lucene_solr_4_10_2/solr/example/solr/collection1/conf/solrconfig.xml?revision=1635125&view=markup In revision 743163 of the Solr 4.10 example solrconfig.xml file enableRemoteStreaming was (accidentally?) changed from "false" to true. http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_4_10/solr/example/solr/collection1/conf/solrconfig.xml?revision=734796&view=markup Should I open a JIRA? Tom Background: There is a warning in the solrconfig.xml example file " The settings below authorize Solr to fetch remote files, You should make sure your system has some authentication before using enableRemoteStreaming="true" " The 4.10 reference guide p 204 says " For security reasons, remote streaming is disabled in the solrconfig.xml included in the example directory." However in the latest revision of 4.10.2 it appears to be enabled as the setting is http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_4_10/solr/example/solr/collection1/conf/solrconfig.xml?revision=1638496&view=markup Line 748: <requestParsers enableRemoteStreaming="true" multipartUploadLimitInKB="2048000" formdataUploadLimitInKB="2048" addHttpRequestToContext="false"/> Tom