Thread Pool Multiplexing

Hi team, does the Thread Pool implementation support Multiplexing where multiple front-end connections share the same backend connections (similar to the multiplexing supported in ProxySQL: Multiplexing - ProxySQL)?

Hey @Senthil,
I’m assuming you are referring to the thread pool plugin for Percona MySQL? If so, then no, this plugin has nothing to do with connection multiplexing. All connections to MySQL remain the same. The difference is how those connections (ie: threads) are scheduled within MySQL. The thread pool plugin creates various execution priority queues and schedules queries accordingly. I suggest reading the linked doc page for better understanding.