sharkleash opened a new pull request, #10098: URL: https://github.com/apache/trafficserver/pull/10098
Relevant Issue: https://github.com/apache/trafficserver/issues/9681 Remove the `accept_till_done` global variable, and introduce a replacement reloadable variable `proxy.config.net.additional_accepts` to control how many connections can be accepted per thread, per event loop. If `additional_accepts = -1`, there will be no restriction as to how many connections can be accepted per thread. This is equivalent to setting `accept_till_done = 1`. If `additional_accepts = 0`, only 1 connection will be accepted per event loop. This is equivalent to setting `accept_till_done = 0`. If `additional_accepts = x`, then a thread may accept up to x additional connections per event loop, per thread. Thus, the maximum number of connections that will be accepted is x+1. p.s. Naming suggestions for the variable are also welcome -- 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]
