野蝇性能问题

Wildfly Performance issues

我的 wildly 安装有问题。版本是8.2.0。我观察到,当连接数达到一定水平时,它会开始拒绝连接。这是我的问题:

  1. 是否只有在io子系统下的worker处设置了线程配置?
  2. 在 wildfly 中我是否需要设置其他影响性能的配置?
  3. 有什么方法可以知道当前使用的线程数,以便知道何时调整配置以适应额外的负载?
  1. Is it only at worker under io subsystem that the thread configuration is set?

你可以在undertow子系统中为你的服务器设置一个特定的worker,然后线程池设置在你提到的io子系统中。

  1. Are there other configurations in wildfly that I need to set that affect performance?

是的,有很多。除了 "connections are 'rejected'" 之外,没有任何其他元素很难说哪些是相关的。您至少应该检查虚拟主机的错误日志。

  1. Is there a way I can know the number of threads currently been used so I can know when to adjust the configurations to accommodate additional load?

是的,你可以。看看this article.