We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
报错: EXCEPTION:com.alibaba.dubbo.rpc.RpcException: cause: Server side(x.x.x.x:20880) threadpool is exhausted ,detail msg:Thread pool is EXHAUSTED! Thread Name: DubboServerHandler-x.x.x.x:20880, Pool Size: 300 (active: 300, core: 300, max: 300, largest: 300), Task: 365257 (completed: 364957), Executor status:(isShutdown:false, isTerminated:false, isTerminating:false), in dubbo://x.x.x.x:20880! 重现步骤: 1,下载平台证书时,网络出现问题,导致线程卡在网络请求 2,发起其他业务请求,超过一定数量 3,线程池满报错 原因: CertificatesManager 有synchronized锁, downloadAndUpdateCert方法的http请求卡住之后,putMerchant方法会阻塞 下载平台证书的时候需要设置超时时间,防止线程死掉.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
报错:
EXCEPTION:com.alibaba.dubbo.rpc.RpcException: cause: Server side(x.x.x.x:20880) threadpool is exhausted ,detail msg:Thread pool is EXHAUSTED! Thread Name: DubboServerHandler-x.x.x.x:20880, Pool Size: 300 (active: 300, core: 300, max: 300, largest: 300), Task: 365257 (completed: 364957), Executor status:(isShutdown:false, isTerminated:false, isTerminating:false), in dubbo://x.x.x.x:20880!
重现步骤:
1,下载平台证书时,网络出现问题,导致线程卡在网络请求
2,发起其他业务请求,超过一定数量
3,线程池满报错
原因:
CertificatesManager 有synchronized锁,
downloadAndUpdateCert方法的http请求卡住之后,putMerchant方法会阻塞
下载平台证书的时候需要设置超时时间,防止线程死掉.
The text was updated successfully, but these errors were encountered: