如何检查我的应用程序的可扩展性
我开发了一个应用程序,可以创建大量 PDF 并提供这些文件。 (其正常的 Servlet 缓冲服务)。
如何确保我的应用程序能够有效处理多个请求?是否有任何工具可用于测试负载/可扩展性/效率以及我的代码在当前服务器配置下处理多少个并行请求?
I have developed an application that will create lot of PDF's and serve those file.
(Its normal Servlet-Buffering serving).
How to make sure my application works efficient with multiple request? Is there any tool available to test the load/scalability/efficiency and how many parallel request does my code handle with the current server configuration?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
您可以使用负载测试器,例如 Tsung
You can use a load tester like Tsung
您应该考虑使用负载测试工具,例如 grinder 或 jmeter. grinder 支持脚本编写,而 jmeter 可以让您将 junit 变成负载测试客户端。我个人喜欢 jmeter,因为它支持 junit 以及它良好的 GUI 控制和报告。 jmeter 开箱即用地支持http 和soap。此外,您可以编写自己的插件来满足您的自定义需求。
You should consider using load test tools like grinder or jmeter. grinder supports scripting while jmeter lets you turn junit into load test client. I personally like jmeter because of junit support and also its fine gui control and reporting. jmeter support http and soap out of the box. Additionally, you can write you own plugins to fit your custom needs.
我还推荐 JMeter。您还可以记录浏览器的页面请求以创建 JMeter 测试(HTTP 代理服务器< /a>)。
I would also recommend JMeter. You can also record the page requests of your browser to create a JMeter test (HTTP Proxy Server).
您还应该有适当的监视工具来查看应用程序在负载下的行为。
一个好的开始是 jvisualvm,它位于最新的 Sun JDK 中。
You should also have surveillance tools in place to see how the application behaves under load.
A good start is jvisualvm which is in the latest Sun JDK.
您可以做的最简单的事情是 Apache 基准测试,如果您运行的是基于 Unix 的系统,或者附带了适用于 Windows 的 Apache Webserver 2.x,则该基准测试可能已经安装。
使用示例;
给我这个输出;
The simplest thing you can do is Apache benchmark which is probably already installed if you're running a Unix based system or comes with Apache Webserver 2.x for Windows.
Example use;
Gives me this output;
Apachebench
是一个单线程工具。这意味着它将无法使 SMP 服务器(无论是多线程或多进程)饱和。您应该考虑
weighttp
,它使用 AB 语法(唯一的区别是 -t 4 表示使用 4 个工作线程而不是 4 秒测试)。Apachebench
is a single-thread tool. It means that it will not be able to saturate a SMP server (either muti-thread or multi-process).You should rather consider
weighttp
, which is using the AB syntax (the only difference is that -t 4 means use 4 worker threads instead of a 4-second test).