负载测试期间服务器响应时间变得非常慢

时间:2014-06-16 15:45:26

标签: java performance oracle tomcat jmeter

我正在使用Jmeter(Oracle,Tomcat,Spring)分析我的网络应用程序性能。

Number of threads :20
Ramp up: 2
Loop: 500

我只使用Jmeter模拟一个简单的网站登录。

当我在上面的这些设置中开始时。前3分钟它开始非常快(av响应时间500ms)但它开始迅速减速,到15分钟响应时间下降到5秒。完成请求需要几分钟。

我不确定这是否正常,或者问题是Tomcat还是我的c3po池设置不正确。

这是我对c3po的设置:

    <property name="testConnectionOnCheckout" value="false" />  <!-- do not test connection isValid on checkout as it has bad performance result -->
    <property name="testConnectionOnCheckin" value="true" />    <!-- test connection isValid on checkin -->
    <property name="idleConnectionTestPeriod" value="60" />     <!-- test every 60 seconds -->

    <property name="checkoutTimeout" value="5000" />            <!-- The number of milliseconds a client calling getConnection() will wait for a Connection to be checked-in or acquired when the pool is exhausted. -->
    <property name="acquireRetryAttempts" value="30" />         <!-- Defines how many times c3p0 will try to acquire a new Connection from the database before giving up. -->
    <property name="acquireRetryDelay" value="1000" />          <!-- Milliseconds, time c3p0 will wait between acquire attempts. -->
    <property name="breakAfterAcquireFailure" value="true" />   <!-- If true, a pooled DataSource will declare itself broken and be permanently closed if a Connection cannot be obtained from the database after making acquireRetryAttempts to acquire one. -->

    <property name="maxIdleTime" value="180" />                 <!-- 3 minutes, then die -->
    <property name="maxConnectionAge" value="300" />            <!-- 5 minutes, then die -->
    <property name="minPoolSize" value="1" />
    <property name="initialPoolSize" value="2" />
    <property name="maxPoolSize" value="25" />
    <property name="acquireIncrement" value="1" />              <!-- ramp up the pool with 1 connection if all others are in use -->

    <property name="unreturnedConnectionTimeout" value="360" /> <!-- in seconds (6 minutes), actually this should be necessary if connections are not closed properly and thus are leaked -->
    <property name="numHelperThreads" value="10" />
    <property name="maxStatementsPerConnection" value="5" />

我还安装了VisualVm来监控Tomcat但不知道如何分析它,我应该检查内存池还是Heap或Perm gen ..?

任何想法为什么它可能变慢或我如何检查它?

Ps Old gen内存池大小图在响应时间开始变慢时达到峰值可能是任何关系? 我的Cm连接设置为

 -Xmx1024m -XX:MaxPermSize=512M

2 个答案:

答案 0 :(得分:2)

您可能正在耗尽数据库连接池,因为它只设置为25个最大值。一旦达到最大值,您的服务器将所有这些连接请求存储几分钟,然后再将它们释放回JMeter(而JMeter永远不会停止发出请求)

您可以尝试增加连接池大小,或者在将它们释放回客户端之前减少时间。

您还应该调查为什么需要这么长时间来获取登录请求的响应。

编辑:添加以下示例

我不认为这里的问题是在Tomcat内部(我假设Tomcat只是处理请求并充当客户端和数据库之间的代理),它可能在于您的测试本身。

如果JMeter重复发出相同的登录请求,它可能会备份数据库,因为它可能会在登录处理时锁定该记录。由于这种可能性,在加载测试时不应该使用相同的用户(反正这不是一个现实的情况)。更好的测试是创建许多用户,并在负载测试期间循环使用它们。

听起来是你创建许多线程来执行登录,它导致数据库排队,导致tomcat上的连接排队,这会使问题随着时间的推移而变得更糟。

答案 1 :(得分:0)

我关注@ Quinnlv的陈述。实现模拟登录并查看其执行方式。如果缩放,请检查游泳池。