You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our network server has the ability to drop incoming requests when it is overbooked. The decision is made by comparing the time the request has spent in the incoming queue to the server.queue.max_delay configuration parameter (server/network_server.c).
We would like to report:
the current length of the incoming request queue (g_thread_pool_unprocessed(srv->pool_tcp) may help);
the average time a request waits in the queue.
The text was updated successfully, but these errors were encountered:
Our network server has the ability to drop incoming requests when it is overbooked. The decision is made by comparing the time the request has spent in the incoming queue to the
server.queue.max_delay
configuration parameter (server/network_server.c).We would like to report:
g_thread_pool_unprocessed(srv->pool_tcp)
may help);The text was updated successfully, but these errors were encountered: