Jmeter测试MQ性能

一、测试环境

服务器:

1.OS:win7

2.MQ:ActiveMQ 5.14.5

3.Intel i7 2.8GHz 4核 32G内存

测试客户端:

1.OS:win7

2.Jmeter3.2

3.JDK1.8(jconsole)

二、环境设置

1.服务器环境配置:打开JMX服务

修改activeMQ的启动文件:activemq.bat

首先放开注释

REM  set ACTIVEMQ_SUNJMX_START=-Dcom.sun.management.jmxremote.port=1099 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false

其次追加ActiveMQ服务器地址

 set ACTIVEMQ_SUNJMX_START=-Dcom.sun.management.jmxremote.port=1099 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false  -Djava.rmi.server.hostname=192.168.1.105

2.测试客户端Jmeter设置

首先配置Jmeter所需的ActiveMQ的相关jar包

将activemq-all-5.14.5.jar 

lib\optional\log4j-1.2.17.jar

lib\slf4j-api-1.7.13.jar

lib\optional\slf4j-log4j12-1.7.13.jar

放到Jmeter的lib目录下

其次将如下jndi.properties打包到bin\ApacheJMeter.jar

java.naming.factory.initial =org.apache.activemq.jndi.ActiveMQInitialContextFactory java.naming.provider.url= tcp://192.168.1.105:61616
connectionFactoryNames= connectionFactory
queue.GxQueue =gxzk.GxQueue
topic.GxTopic = gxzk.GxTopic
三、测试实施

1.ActiveMQ启动:ActiveMQ.bat  start

可供测试的服务器启动

2.录制Jmeter脚本

首先创建一个测试计划:topic

其次追加线程组:GxGroup

此时追加第一个JMS Publisher线程:选择使用jndi.properties;连接工厂:connectionFactory;JMS目的队列:GxTopic;text Message:GXZK

再追加一个JMS Subscriber线程:选择使用jndi.properties;连接工厂:connectionFactory;JMS目的队列:GxTopic;作为client消息消费接收

最后追加一个JMS的point-to-point线程:选择使用jndi.properties;连接工厂:connectionFactory;收费队列GxQueue;初始上下文工厂:org.apache.activemq.jndi.ActiveMQInitialContextFactory;provider URL:tcp://192.168.1.105:61616

3.运行jconsole:jdk\bin\jconsole.exe

可查看服务器资源使用情况

4.从浏览器查看MQ队列收发情况

http://192.168.1.105:8161/admin/topics.jsp

四、测试结果



你可能感兴趣的:(测试)