Performance drop after 5 days running web application, how to spot the bottleneck?

后端 未结 8 2143
滥情空心
滥情空心 2021-02-14 12:46

I\'ve developed a web application using the following tech stack:

  • Java
  • Mysql
  • Scala
  • Play Framework
  • DavMail integration (for cale
8条回答
  •  温柔的废话
    2021-02-14 13:18

    jconsole comes with the JDK and is an easy tool to spot bottlenecks. Connect it to your server, look into memory usage, GC times, take a look at how many threads are alive because it could be that the server creates many threads and they never exit.

提交回复
热议问题