Tomcat org.apache.catalina.connector.requestfacade.getsession()占用CPU资源超过44.7%
我构建了一个无状态 java servlet Web 应用程序,要求每秒至少接受 5000 个事务(有 150 个并发线程)。我将 ehcache 与 SQL Server 2005 一起使用,以避免写入速度较慢的硬盘。
在性能测试中(使用 Jmeter 150 个线程),我每秒只能获得大约 2800 个事务(不到预期的一半)。当我在 JVisualVM 中使用采样器时,我注意到:
org.apache.catalina.connector.requestfacade.getsession() <-- take more than 44.7% of CPU time
知道 requestfacade.getsession() 在做什么吗?有没有办法加快它的速度?虽然我必须优化我的代码,但我仍然需要弄清楚上面的行做了什么,否则每秒 5000 个实际上是不可能的。
Tomcat 配置:
-单个 Tomcat 实例 (6.0.23) - 使用 Connectir 执行器,具有 150 个 maxThread
服务器配置:
-Windows 2008
-xeon 四核
-8GB 内存
-1TB raid 5 HDD
必须感谢任何帮助!
I have built a stateless java servlet web application and the requirement is to accept at least 5000 transaction per second (with 150 concurrent thread). I am using ehcache together with SQL server 2005 to avoid writing to the slow harddisk.
In the performance test (with Jmeter 150 threads), i only manage to score roughly 2800 transactions per second (less than half of expected). When i take a sampler inside the JVisualVM, i notice that:
org.apache.catalina.connector.requestfacade.getsession() <-- take more than 44.7% of CPU time
Any idea what does the requestfacade.getsession() doing and is there a way to speed it up? while i must optimise my code, i still need to figure out what does the above line doing else 5000 per second is practically impossible.
Tomcat conf:
-single Tomcat instance (6.0.23)
-Using Connectir executor, with 150 maxThread
Server conf:
-Windows 2008
-xeon quad core
-8GB ram
-1TB raid 5 HDD
Any help is must appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的 servlet 确实是无状态的,为什么它要访问会话?
:-)
If your servlet is truly stateless, why is it accessing the session?
:-)
如果您以无状态方式进行此操作,请参阅将 tomcat 配置为默认情况下不创建会话。
另外,如果您使用 JSP,请确保将其设置为不创建会话。
If you're working this in a stateless fashion, see about configuring tomcat to not create a session by default.
Also if you are using JSP, make sure it is set to not create a session.