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
Now, we are using the java.util.concurrent.ThreadPoolExecutor as the Biz Scheduler, and this would block the IO EventLoop in the concurrency environment at BlockingQueue#putLock, usually it will take tens of milliseconds, and the biz threads are hungry for no request task to execute.
The text was updated successfully, but these errors were encountered:
alalag1
changed the title
Considering replacing the Biz Scheduler which is implementated by ThreadPoolExecutor
Considering improving the Biz Scheduler which is implementated by ThreadPoolExecutor
Dec 14, 2020
Now, we are using the
java.util.concurrent.ThreadPoolExecutor
as theBiz Scheduler
, and this would block the IO EventLoop in the concurrency environment atBlockingQueue#putLock
, usually it will take tens of milliseconds, and the biz threads are hungry for no request task to execute.The text was updated successfully, but these errors were encountered: