Tomcat org.apache.catalina.connector.requestfacade.getsession()占用CPU资源超过44.7%

发布于 2024-12-10 11:32:21 字数 679 浏览 0 评论 0原文

我构建了一个无状态 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

终陌 2024-12-17 11:32:22

如果您的 servlet 确实是无状态的,为什么它要访问会话?

:-)

If your servlet is truly stateless, why is it accessing the session?

:-)

半边脸i 2024-12-17 11:32:22

如果您以无状态方式进行此操作,请参阅将 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文