kocolosk commented on issue #3939:
URL: https://github.com/apache/couchdb/issues/3939#issuecomment-1049172876


   > I guess with n>1 it would happen as well, if all the nodes have the 
revision already because we would never pull the data bytes off the socket.
   
   Yes, I think so, although I'm now realizing that "pulling bytes off the 
socket" is not necessarily the issue in either the n=1 or n>1 case (with or 
without concurrent data races). The parser might well consume all the request 
data (and for small requests it probably does, even if no worker ever requests 
it), but the `HTTPD` process will still be stuck in `WaitFun()` _after_ sending 
the response to the client. The connection stays open, and the client sends a 
new request on that connection, but `HTTPD` won't act on it until that 5 minute 
timeout fires.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to