Hello, I am trying to understand the socket time out and connection time out in the HttpShardHandlerFactory:-
<shardHandler class="HttpShardHandlerFactory"> <int name="socketTimeOut">10</int> <int name="connTimeOut">20</int> </shardHandler> 1.Could some one please help me understand the effect of using such low values of 10 ms and 20ms as given above inside my /select handler? 2. What is the guidelines for setting these parameters? Should they be low or high 3. How can I test the effect of this chunk of code after adding it to my /select handler ie I want to make sure the above code snippet is working. That is why I gave such low values and thought when I fire a query I would get both time out errors in the logs. But did not! Or is it that within the above time frame (10 ms, 20ms) if no request comes the socket will time out and the connection will be lost. So to test this should I give a say 100 TPS load with these low values and then increase the values to maybe 1000 ms and 1500 ms respectively and see lesser time out error messages? I am trying to understand how these parameters can be put to good use. Thanks! Mark