涉及多个JVM的性能测试环境搭建
我计划对我部署在 tomcat 上的一个 Web 应用程序进行基于某些 aop 框架的性能测试。这些方面适用于大多数方法调用,并且会产生一些开销。我计划在测试期间测量 CPU 和 JVM 统计数据以及响应时间和吞吐量统计数据。为了在 web 应用程序上生成负载,我计划使用 Jmeter 。我的问题是我是否应该在一台机器上安装整个设置(tomcat+jmeter),或者它们应该在不同的机器上? 。由于 tomcat 和 Jmeter 都有自己的 JVM,因此我不希望 appserver 的性能统计数据因 Jmeter 消耗的资源而受到影响。我计划使用 JMX 进行 JVM 统计测量,并使用一些专有 api 进行 CPU 测量(在进程级别)。
I am planning to conduct a performance test of certain aop framework based aspects on one of my web application deployed on tomcat . The aspects are applied on most of the method calls and will incur some overhead . I plan to measure the CPU and JVM stats during my tests along with the response time and throughput stats . For generating the load on the webapp i m planning to use Jmeter . MY question is whether i should have the entire setup (tomcat+jmeter ) on a single machine or they should be on different machines ? . Since both tomcat and Jmeter will have their own JVM's , i don't want the performance stats of appserver to get affected due to the resources consumed by Jmeter . I plan to use JMX for JVM stats measurement and some proprietary api for CPU measurement (at process level ) .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在不同的机器上安装了 tomcat 和 Jmeter,统计数据似乎在准确性方面没有太多问题。
I had tomcat and Jmeter on different machines and the stats seem to report without much issues with regards to accuracy .