What determines number of simultaneous connections

前端 未结 6 1599
予麋鹿
予麋鹿 2021-01-31 19:06

In a Java servlet environment, what are the factors that are the bottleneck for number of simultaneous users.

  1. Number of HTTP connections the server can allow per
6条回答
  •  花落未央
    2021-01-31 19:28

    Seeing point 6, you can use these tools to see if your hardware is being the bottleneck: Assuming that you're on linux, you can use VmStat to see some statistics on your RAM usage, top or atop (depending on your distro) to see processes taking a toll in your CPU and RAM, nload and iftop to see what is consuming network bandwith, and iotop to see what is reading and writing to your disk.

提交回复
热议问题