是否可以将线程池中的线程分布在 GlassFish 3.1.1 集群的节点上?
我想将线程池中的线程分布到 GlassFish 3.1.1 集群的节点上。 是否可以 ? 如果没有,我如何使用 GlassFish 集群来分布式执行线程?
谢谢
I want to distribute threads in Thread Pool over nodes of GlassFish 3.1.1 cluster.
Is it possible ?
If not, how I can use GlassFish cluster for distributed execution of threads ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想这取决于您的应用程序的性质。我们处理这个问题的方法是将线程逻辑下推到 MDB 中。从那里您可以使用 bean 池大小控制集群中每个节点上运行的 MDB 数量。
I suppose it depends on the nature of your application. The way we handle this is to push the thread logic down into an MDB. From there you can control how many MDB's run on each node in the cluster using the bean pool size.