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

后端 未结 8 2145
滥情空心
滥情空心 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 12:58

    I agree with tulskiy. On top of that you could also use JMeter if the investigations you will have made with jconsole are unconclusive.

    The probable causes of the performances degradation are threads (that are created but never exit) and also memory leaks: if you allocate more and more memory, before having the OutOfMemoryError, you may encounter some performances degradation (happened to me a few weeks ago).

提交回复
热议问题