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
and the errors all point to the EventThread class.
The root cause is that the single-thread pool in the EventThread class closes every time after completing a task, and a new thread pool needs to be created again when executing tasks next time.
Is this code reasonable? It seems that the purpose of the thread pool has been lost, as threads are not being reused and are instead being constantly recreated, leading to the OOM problem.
Is there any special logic here? What issues might arise if we remove the logic that closes the thread pool?
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
In our project, there is a large number of OOM issues @nkzawa @darrachequesne . relate oom issue
and the errors all point to the EventThread class.
The root cause is that the single-thread pool in the EventThread class closes every time after completing a task, and a new thread pool needs to be created again when executing tasks next time.
Is this code reasonable? It seems that the purpose of the thread pool has been lost, as threads are not being reused and are instead being constantly recreated, leading to the OOM problem.
Is there any special logic here? What issues might arise if we remove the logic that closes the thread pool?
The text was updated successfully, but these errors were encountered: