On 1/22/2016 1:14 AM, Midas A wrote: > Please anybody tell me what these request are doing . Is it application > generated error or part of solr master -slave? > > > > b) > 10.20.73.169 - - [22/Jan/2016:08:07:38 +0000] "POST > /solr/shopclue_prod/select HTTP/1.1" 200 7002
This appears to be the servlet container request log. All of the requests were made to the /select handler, so chances are that they are queries. All of the requests returned a 200 response, so they all succeeded. Because it's a POST request and the important parameters were not in the URL, those parameters are not visible in the request log. The Solr log (which is a different file) will have full details about every request. Thanks, Shawn