JBoss 属性 ActiveThreadCount 和 ActiveThreadGroupCount 是否有最大值?
在 JBoss 5 中,mbean 具有
jboss.system:type=ServerInfo
属性 ActiveThreadCount
和 ActiveThreadGroupCount
。
有谁知道这些属性中的一个或两个是否有最大值,如果有,如何找出它们?如果有必要,我很乐意解析配置文件。
查看org.jboss.system.server.ServerInfo
的源代码,getActiveThreadCount
返回的是ThreadGroup
中的活动线程数,而不是一个ThreadPoolExecutor
;因此没有最大值。
也许真正了解 JBoss 5.1.0 GA 内部结构的人会知道该 ThreadGroup
的所有成员是否都是由单个 ThreadPoolExecutor
创建的,而且显然有一个最大值?
预先感谢您的任何建议或指示!
富有的
In JBoss 5, there is the mbean
jboss.system:type=ServerInfo
Which has the properties ActiveThreadCount
and ActiveThreadGroupCount
.
Does anyone know if there are maximum values for either or both of these properties, and if there are, how to find them out? I am happy parsing configuration files if necessary.
Looking at the source code of org.jboss.system.server.ServerInfo
, getActiveThreadCount
returns the number of active threads in a ThreadGroup
, not a ThreadPoolExecutor
; therefore there is no maximum.
Perhaps someone who really knows the innards of JBoss 5.1.0 GA would know whether all members of that ThreadGroup
are created by a single ThreadPoolExecutor
which obviously does have a maximum?
Thanks in advance for any suggestions or pointers!
Rich
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论