io.worker thread pool creates a thread per CPU hardware thread. It looks like it's using std::thread::hardware_concurrency() to determine thread size. On a 16 Core machine (32 HW threads), it creates ...