WL#7195: Offload connection authentication and thd/net initialization from accept thread to tp worker threads for thread pool plugin

Affects: Server-8.0   —   Status: Complete

THD Creation, vio/net initialization and connection authentication happens in the acceptor thread which accepts the connection. THD creation, vio/net initialization and connection authentication involves acquiring locks, memory allocation of various structures, network i/o. These tasks are both compute-bound and blocking.The acceptor thread is an event loop which waits for new connection events from clients.

To maximize the number of connections which can be handled per unit of time, the acceptor thread should spend as much of it's time listening for new connections. This means that the thd creation and other tasks should not be handled as part of accept event loop. Instead these tasks delegated to thread pool worker threads that handle the client connections. It is to be noted that connection authentication should be done as quickly as possible so that connect latency is not increased and it should happen within the default connect timeout settings in the server.