On 5/3/2014 8:01 PM, eakarsu wrote: > I am using solr 4.3.1 attached solrconfig.xml file. > There is no softCommit enabled in config file but master node is receiving > continuously an update document evry minute. I could not figure it out where > this update is coming. > > Solr cloud master: > [04/May/2014:01:50:54 +0000] "GET > /solr/trcollection2/update/json?commit=true?softCommit=true HTTP/1.1" 200 > 160
Your servlet container should have a request log, or the ability to have a request log. The jetty that's included in the solr example has a commented section in etc/jetty.xml that will enable a request log to names like logs/request.2014_05_04.log ... you just have to uncomment it. If you're using something like Tomcat instead of the example, you'll need to figure out where it logs requests, or how to enable its request log. Once you enable and/or find your servlet container's request log, this should show you the IP address or hostname where the request originates. Thanks, Shawn