/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.qpid.jms.bench;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.TimeUnit;
import javax.jms.DeliveryMode;
import javax.jms.Destination;
import javax.jms.MessageProducer;
import javax.jms.Queue;
import javax.jms.Session;
import javax.jms.TextMessage;
import javax.jms.Topic;
import org.apache.activemq.broker.BrokerService;
import org.apache.activemq.broker.jmx.QueueViewMBean;
import org.apache.activemq.broker.region.policy.PolicyEntry;
import org.apache.activemq.broker.region.policy.PolicyMap;
import org.apache.activemq.broker.region.policy.VMPendingQueueMessageStoragePolicy;
import org.apache.qpid.jms.support.AmqpTestSupport;
import org.junit.Ignore;
import org.junit.Test;
/**
* Collect some basic throughput data on message producer.
*/
@Ignore
public class ProduceToAMQPTest extends AmqpTestSupport {
private final int MSG_COUNT = 50 * 1000;
private final int NUM_RUNS = 20;
@Override
protected boolean isForceAsyncSends() {
return true;
}
@Override
protected boolean isForceSyncSends() {
return false;
}
@Override
protected String getAmqpTransformer() {
return "raw";
}
@Override
public String getAmqpConnectionURIOptions() {
return "jms.presettlePolicy.presettleAll=true";
}
@Test
public void singleSendProfile() throws Exception {
connection = createAmqpConnection();
Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
Topic topic = session.createTopic(getDestinationName());
MessageProducer producer = session.createProducer(topic);
producer.setDeliveryMode(DeliveryMode.NON_PERSISTENT);
TextMessage message = session.createTextMessage();
message.setText("hello");
producer.send(message);
producer.close();
}
@Test
public void testProduceRateToTopic() throws Exception {
connection = createAmqpConnection();
Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
Topic topic = session.createTopic(getDestinationName());
// Warm Up the broker.
produceMessages(topic, MSG_COUNT);
List<Long> sendTimes = new ArrayList<Long>();
long cumulative = 0;
for (int i = 0; i < NUM_RUNS; ++i) {
long result = produceMessages(topic, MSG_COUNT);
sendTimes.add(result);
cumulative += result;
LOG.info("Time to send {} topic messages: {} ms", MSG_COUNT, result);
}
long smoothed = cumulative / NUM_RUNS;
LOG.info("Smoothed send time for {} messages: {}", MSG_COUNT, smoothed);
TimeUnit.SECONDS.sleep(1);
}
@Test
public void testProduceRateToQueue() throws Exception {
connection = createAmqpConnection();
Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
Queue queue = session.createQueue(getDestinationName());
// Warm Up the broker.
produceMessages(queue, MSG_COUNT);
QueueViewMBean queueView = getProxyToQueue(getDestinationName());
queueView.purge();
List<Long> sendTimes = new ArrayList<Long>();
long cumulative = 0;
for (int i = 0; i < NUM_RUNS; ++i) {
long result = produceMessages(queue, MSG_COUNT);
sendTimes.add(result);
cumulative += result;
LOG.info("Time to send {} queue messages: {} ms", MSG_COUNT, result);
queueView.purge();
}
long smoothed = cumulative / NUM_RUNS;
LOG.info("Smoothed send time for {} messages: {}", MSG_COUNT, smoothed);
TimeUnit.SECONDS.sleep(1);
}
protected long produceMessages(Destination destination, int msgCount) throws Exception {
Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
MessageProducer producer = session.createProducer(destination);
producer.setDeliveryMode(DeliveryMode.NON_PERSISTENT);
TextMessage message = session.createTextMessage();
message.setText("hello");
long startTime = System.currentTimeMillis();
for (int i = 0; i < msgCount; ++i) {
producer.send(message);
}
long result = (System.currentTimeMillis() - startTime);
producer.close();
return result;
}
@Override
protected void configureBrokerPolicies(BrokerService broker) {
PolicyEntry policyEntry = new PolicyEntry();
policyEntry.setPendingQueuePolicy(new VMPendingQueueMessageStoragePolicy());
policyEntry.setPrioritizedMessages(false);
policyEntry.setExpireMessagesPeriod(0);
policyEntry.setEnableAudit(false);
policyEntry.setOptimizedDispatch(true);
policyEntry.setQueuePrefetch(100);
PolicyMap policyMap = new PolicyMap();
policyMap.setDefaultEntry(policyEntry);
broker.setDestinationPolicy(policyMap);
}
}