package org.jboss.test.jbossmq.perf;
import javax.jms.BytesMessage;
import javax.jms.DeliveryMode;
import javax.jms.JMSException;
import javax.jms.Message;
import javax.jms.MessageListener;
import javax.jms.QueueConnection;
import javax.jms.QueueConnectionFactory;
import javax.jms.QueueReceiver;
import javax.jms.QueueSender;
import javax.jms.QueueSession;
import javax.jms.Session;
import javax.jms.Topic;
import javax.jms.TopicConnection;
import javax.jms.TopicConnectionFactory;
import javax.jms.TopicPublisher;
import javax.jms.TopicSession;
import javax.jms.TopicSubscriber;
import javax.jms.Queue;
import javax.naming.Context;
import org.apache.log4j.Category;
import org.jboss.test.JBossTestCase;
public class JBossMQPerfStressTestCase extends JBossTestCase
{
static String TOPIC_FACTORY = "ConnectionFactory";
static String QUEUE_FACTORY = "ConnectionFactory";
static String TEST_QUEUE = "queue/testQueue";
static String TEST_TOPIC = "topic/testTopic";
static byte[] PERFORMANCE_TEST_DATA_PAYLOAD = new byte[10 * 1024];
static int TRANS_NONE = 0;
static int TRANS_INDIVIDUAL = 1;
static int TRANS_TOTAL = 2;
static String[] TRANS_DESC = {"NOT", "individually", "totally"};
static Context context;
static QueueConnection queueConnection;
static TopicConnection topicConnection;
public JBossMQPerfStressTestCase(String name) throws Exception
{
super(name);
}
public void runAsynchQueuePerformance(final int transacted, final int persistence) throws Exception
{
{
queueConnection.start();
drainQueue();
queueConnection.stop();
}
final int iterationCount = getIterationCount();
final Category log = getLog();
Thread sendThread =
new Thread()
{
public void run()
{
try
{
QueueSession session = queueConnection.createQueueSession(transacted != TRANS_NONE, Session.AUTO_ACKNOWLEDGE);
Queue queue = (Queue)context.lookup(TEST_QUEUE);
QueueSender sender = session.createSender(queue);
BytesMessage message = session.createBytesMessage();
message.writeBytes(PERFORMANCE_TEST_DATA_PAYLOAD);
long startTime = System.currentTimeMillis();
for (int i = 0; i < iterationCount; i++)
{
sender.send(message, persistence, 4, 0);
if (transacted == TRANS_INDIVIDUAL)
{
session.commit();
}
}
if (transacted == TRANS_TOTAL)
{
session.commit();
}
long endTime = System.currentTimeMillis();
session.close();
long pTime = endTime - startTime;
log.debug(" sent all messages in " + ((double)pTime / 1000) + " seconds. ");
}
catch (Exception e)
{
log.error("error", e);
}
}
};
final QueueSession session = queueConnection.createQueueSession(transacted != TRANS_NONE, Session.AUTO_ACKNOWLEDGE);
Queue queue = (Queue)context.lookup(TEST_QUEUE);
QueueReceiver receiver = session.createReceiver(queue);
MessageListener listener =
new MessageListener()
{
long startTime = System.currentTimeMillis();
int i = 0;
public void onMessage(Message message)
{
try
{
if( transacted == TRANS_INDIVIDUAL )
session.commit();
i++;
}
catch (JMSException e)
{
getLog().error("Unable to commit", e);
synchronized (this)
{
this.notify();
}
}
if (i >= iterationCount)
{
long endTime = System.currentTimeMillis();
long pTime = endTime - startTime;
log.debug(" received all messages in " + ((double)pTime / 1000) + " seconds. ");
synchronized (this)
{
this.notify();
}
}
}
};
getLog().debug(" This test will send " + getIterationCount() + " "
+ (persistence == DeliveryMode.PERSISTENT ? "persistent" : "non-persistent") + " messages. Each with a payload of "
+ ((double)PERFORMANCE_TEST_DATA_PAYLOAD.length / 1024) + "Kb"
+ " Session is " + TRANS_DESC[transacted] + " transacted");
long startTime = System.currentTimeMillis();
sendThread.start();
receiver.setMessageListener(listener);
synchronized (listener)
{
queueConnection.start();
listener.wait();
}
if (transacted == TRANS_TOTAL)
{
session.commit();
}
session.close();
sendThread.join();
long endTime = System.currentTimeMillis();
long pTime = endTime - startTime;
getLog().debug(" All threads finished after: " + ((double)pTime / 1000) + " seconds. ");
}
public void runAsynchTopicPerformance(final int transacted, final int persistence) throws Exception
{
{
queueConnection.start();
drainQueue();
}
final int iterationCount = getIterationCount();
final Category log = getLog();
Thread sendThread =
new Thread()
{
public void run()
{
try
{
TopicSession session = topicConnection.createTopicSession(transacted != TRANS_NONE, Session.AUTO_ACKNOWLEDGE);
Topic topic = (Topic)context.lookup(TEST_TOPIC);
TopicPublisher publisher = session.createPublisher(topic);
waitForSynchMessage();
BytesMessage message = session.createBytesMessage();
message.writeBytes(PERFORMANCE_TEST_DATA_PAYLOAD);
long startTime = System.currentTimeMillis();
for (int i = 0; i < iterationCount; i++)
{
publisher.publish(message, persistence, 4, 0);
if (transacted == TRANS_INDIVIDUAL)
{
session.commit();
}
}
if (transacted == TRANS_TOTAL)
{
session.commit();
}
long endTime = System.currentTimeMillis();
session.close();
long pTime = endTime - startTime;
log.debug(" sent all messages in " + ((double)pTime / 1000) + " seconds. ");
}
catch (Exception e)
{
log.error("error", e);
}
}
};
final TopicSession session = topicConnection.createTopicSession(transacted != TRANS_NONE, Session.AUTO_ACKNOWLEDGE);
Topic topic = (Topic)context.lookup(TEST_TOPIC);
TopicSubscriber subscriber = session.createSubscriber(topic);
MessageListener listener =
new MessageListener()
{
long startTime = System.currentTimeMillis();
int i = 0;
public void onMessage(Message message)
{
try
{
if( transacted == TRANS_INDIVIDUAL )
session.commit();
i++;
}
catch (JMSException e)
{
getLog().error("Unable to commit", e);
synchronized (this)
{
this.notify();
}
}
if (i >= iterationCount)
{
long endTime = System.currentTimeMillis();
long pTime = endTime - startTime;
log.debug(" received all messages in " + ((double)pTime / 1000) + " seconds. ");
synchronized (this)
{
this.notify();
}
}
}
};
getLog().debug(" This test will send " + getIterationCount() + " "
+ (persistence == DeliveryMode.PERSISTENT ? "persistent" : "non-persistent") + " messages. Each with a payload of "
+ ((double)PERFORMANCE_TEST_DATA_PAYLOAD.length / 1024) + "Kb"
+ " Session is " + TRANS_DESC[transacted] + " transacted");
long startTime = System.currentTimeMillis();
sendThread.start();
subscriber.setMessageListener(listener);
topicConnection.start();
sendSynchMessage();
synchronized (listener)
{
listener.wait();
}
if (transacted == TRANS_TOTAL)
{
session.commit();
}
session.close();
sendThread.join();
long endTime = System.currentTimeMillis();
long pTime = endTime - startTime;
getLog().debug(" All threads finished after: " + ((double)pTime / 1000) + " seconds. ");
}
public void runSynchQueuePerformance(final int transacted, final int persistence) throws Exception
{
{
queueConnection.start();
drainQueue();
}
final int iterationCount = getIterationCount();
final Category log = getLog();
Thread sendThread =
new Thread()
{
public void run()
{
try
{
QueueSession session = queueConnection.createQueueSession(transacted != TRANS_NONE, Session.AUTO_ACKNOWLEDGE);
Queue queue = (Queue)context.lookup(TEST_QUEUE);
QueueSender sender = session.createSender(queue);
BytesMessage message = session.createBytesMessage();
message.writeBytes(PERFORMANCE_TEST_DATA_PAYLOAD);
long startTime = System.currentTimeMillis();
for (int i = 0; i < iterationCount; i++)
{
sender.send( message, persistence, 4, 0);
if (transacted == TRANS_INDIVIDUAL)
{
session.commit();
}
}
if (transacted == TRANS_TOTAL)
{
session.commit();
}
session.close();
long endTime = System.currentTimeMillis();
long pTime = endTime - startTime;
log.debug(" sent all messages in " + ((double)pTime / 1000) + " seconds. ");
}
catch (Exception e)
{
log.error("error", e);
}
}
};
Thread recvThread =
new Thread()
{
public void run()
{
try
{
QueueSession session = queueConnection.createQueueSession(transacted != TRANS_NONE, Session.AUTO_ACKNOWLEDGE);
Queue queue = (Queue)context.lookup(TEST_QUEUE);
QueueReceiver receiver = session.createReceiver(queue);
long startTime = System.currentTimeMillis();
for (int i = 0; i < iterationCount; i++)
{
receiver.receive();
if (transacted == TRANS_INDIVIDUAL)
{
session.commit();
}
}
if (transacted == TRANS_TOTAL)
{
session.commit();
}
long endTime = System.currentTimeMillis();
session.close();
long pTime = endTime - startTime;
log.debug(" received all messages in " + ((double)pTime / 1000) + " seconds. ");
}
catch (Exception e)
{
log.error("error", e);
}
}
};
getLog().debug(" This test will send " + getIterationCount() + " "
+ (persistence == DeliveryMode.PERSISTENT ? "persistent" : "non-persistent") + " messages. Each with a payload of "
+ ((double)PERFORMANCE_TEST_DATA_PAYLOAD.length / 1024) + "Kb"
+ " Session is " + TRANS_DESC[transacted] + " transacted");
long startTime = System.currentTimeMillis();
sendThread.start();
recvThread.start();
sendThread.join();
recvThread.join();
long endTime = System.currentTimeMillis();
long pTime = endTime - startTime;
getLog().debug(" All threads finished after: " + ((double)pTime / 1000) + " seconds. ");
}
public void runSynchTopicPerformance(final int transacted, final int persistence) throws Exception
{
{
queueConnection.start();
topicConnection.start();
drainQueue();
}
final int iterationCount = getIterationCount();
final Category log = getLog();
Thread sendThread =
new Thread()
{
public void run()
{
try
{
TopicSession session = topicConnection.createTopicSession(transacted != TRANS_NONE, Session.AUTO_ACKNOWLEDGE);
Topic topic = (Topic)context.lookup(TEST_TOPIC);
TopicPublisher publisher = session.createPublisher(topic);
waitForSynchMessage();
BytesMessage message = session.createBytesMessage();
message.writeBytes(PERFORMANCE_TEST_DATA_PAYLOAD);
long startTime = System.currentTimeMillis();
for (int i = 0; i < iterationCount; i++)
{
publisher.publish(message, persistence, 4, 0);
if (transacted == TRANS_INDIVIDUAL)
{
session.commit();
}
}
if (transacted == TRANS_TOTAL)
{
session.commit();
}
long endTime = System.currentTimeMillis();
session.close();
long pTime = endTime - startTime;
log.debug(" sent all messages in " + ((double)pTime / 1000) + " seconds. ");
}
catch (Exception e)
{
log.error("error", e);
}
}
};
Thread recvThread =
new Thread()
{
public void run()
{
try
{
TopicSession session = topicConnection.createTopicSession(transacted != TRANS_NONE, Session.AUTO_ACKNOWLEDGE);
Topic topic = (Topic)context.lookup(TEST_TOPIC);
TopicSubscriber subscriber = session.createSubscriber(topic);
sendSynchMessage();
long startTime = System.currentTimeMillis();
for (int i = 0; i < iterationCount; i++)
{
subscriber.receive();
if (transacted == TRANS_INDIVIDUAL)
{
session.commit();
}
}
if (transacted == TRANS_TOTAL)
{
session.commit();
}
long endTime = System.currentTimeMillis();
session.close();
long pTime = endTime - startTime;
log.debug(" received all messages in " + ((double)pTime / 1000) + " seconds. ");
}
catch (Exception e)
{
log.error("error", e);
}
}
};
getLog().debug(" This test will send " + getIterationCount() + " "
+ (persistence == DeliveryMode.PERSISTENT ? "persistent" : "non-persistent") + " messages. Each with a payload of "
+ ((double)PERFORMANCE_TEST_DATA_PAYLOAD.length / 1024) + "Kb"
+ " Session is " + TRANS_DESC[transacted] + " transacted");
long startTime = System.currentTimeMillis();
sendThread.start();
recvThread.start();
sendThread.join();
recvThread.join();
long endTime = System.currentTimeMillis();
long pTime = endTime - startTime;
getLog().debug(" All threads finished after: " + ((double)pTime / 1000) + " seconds. ");
}
public void testAsynchQueuePerformance() throws Exception
{
getLog().debug("Starting AsynchQueuePerformance test");
runAsynchQueuePerformance(TRANS_NONE, DeliveryMode.NON_PERSISTENT);
runAsynchQueuePerformance(TRANS_NONE, DeliveryMode.PERSISTENT);
runAsynchQueuePerformance(TRANS_INDIVIDUAL, DeliveryMode.NON_PERSISTENT);
runAsynchQueuePerformance(TRANS_INDIVIDUAL, DeliveryMode.PERSISTENT);
runAsynchQueuePerformance(TRANS_TOTAL, DeliveryMode.NON_PERSISTENT);
runAsynchQueuePerformance(TRANS_TOTAL, DeliveryMode.PERSISTENT);
getLog().debug("AsynchQueuePerformance passed");
}
public void testAsynchTopicPerformance() throws Exception
{
getLog().debug("Starting AsynchTopicPerformance test");
runAsynchTopicPerformance(TRANS_NONE, DeliveryMode.NON_PERSISTENT);
runAsynchTopicPerformance(TRANS_NONE, DeliveryMode.PERSISTENT);
runAsynchTopicPerformance(TRANS_INDIVIDUAL, DeliveryMode.NON_PERSISTENT);
runAsynchTopicPerformance(TRANS_INDIVIDUAL, DeliveryMode.PERSISTENT);
runAsynchTopicPerformance(TRANS_TOTAL, DeliveryMode.NON_PERSISTENT);
runAsynchTopicPerformance(TRANS_TOTAL, DeliveryMode.PERSISTENT);
getLog().debug("AsynchTopicPerformance passed");
}
public void testSynchQueuePerformance() throws Exception
{
getLog().debug("Starting SynchQueuePerformance test");
runSynchQueuePerformance(TRANS_NONE, DeliveryMode.NON_PERSISTENT);
runSynchQueuePerformance(TRANS_NONE, DeliveryMode.PERSISTENT);
runSynchQueuePerformance(TRANS_INDIVIDUAL, DeliveryMode.NON_PERSISTENT);
runSynchQueuePerformance(TRANS_INDIVIDUAL, DeliveryMode.PERSISTENT);
runSynchQueuePerformance(TRANS_TOTAL, DeliveryMode.NON_PERSISTENT);
runSynchQueuePerformance(TRANS_TOTAL, DeliveryMode.PERSISTENT);
getLog().debug("SynchQueuePerformance passed");
}
public void testSynchTopicPerformance() throws Exception
{
getLog().debug("Starting SynchTopicPerformance test");
runSynchTopicPerformance(TRANS_NONE, DeliveryMode.NON_PERSISTENT);
runSynchTopicPerformance(TRANS_NONE, DeliveryMode.PERSISTENT);
runSynchTopicPerformance(TRANS_INDIVIDUAL, DeliveryMode.NON_PERSISTENT);
runSynchTopicPerformance(TRANS_INDIVIDUAL, DeliveryMode.PERSISTENT);
runSynchTopicPerformance(TRANS_TOTAL, DeliveryMode.NON_PERSISTENT);
runSynchTopicPerformance(TRANS_TOTAL, DeliveryMode.PERSISTENT);
getLog().debug("SynchTopicPerformance passed");
}
protected void setUp() throws Exception
{
if (context == null)
{
context = getInitialContext();
QueueConnectionFactory queueFactory = (QueueConnectionFactory)context.lookup(QUEUE_FACTORY);
queueConnection = queueFactory.createQueueConnection();
TopicConnectionFactory topicFactory = (TopicConnectionFactory)context.lookup(TOPIC_FACTORY);
topicConnection = topicFactory.createTopicConnection();
getLog().debug("Connection to JBossMQ established.");
}
}
private void drainQueue() throws Exception
{
QueueSession session = queueConnection.createQueueSession(false, Session.AUTO_ACKNOWLEDGE);
Queue queue = (Queue)context.lookup(TEST_QUEUE);
QueueReceiver receiver = session.createReceiver(queue);
Message message = receiver.receive(50);
int c = 0;
while (message != null)
{
message = receiver.receive(50);
c++;
}
if (c != 0)
{
getLog().debug(" Drained " + c + " messages from the queue");
}
session.close();
}
private void waitForSynchMessage() throws Exception
{
QueueSession session = queueConnection.createQueueSession(false, Session.AUTO_ACKNOWLEDGE);
Queue queue = (Queue)context.lookup(TEST_QUEUE);
QueueReceiver receiver = session.createReceiver(queue);
receiver.receive();
session.close();
}
private void sendSynchMessage() throws Exception
{
QueueSession session = queueConnection.createQueueSession(false, Session.AUTO_ACKNOWLEDGE);
Queue queue = (Queue)context.lookup(TEST_QUEUE);
QueueSender sender = session.createSender(queue);
Message message = session.createMessage();
sender.send(message);
session.close();
}
public static void main(String[] args)
{
String newArgs[] = {"org.jboss.test.jbossmq.perf.JBossMQPerfStressTestCase"};
junit.swingui.TestRunner.main(newArgs);
}
}