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
All tasks share one ThreadWorkerPool currently. It is better to separate read/write.
The queue inside ThreadWorkerPool is boundless. If the disk gets stuck, the queue might become super large; however, tasks inside the pool might get expired because of client timeout, and resend duplicate tasks. The server should drain the queue to recover.