use of org.apache.activemq.command.SessionInfo in project activemq-artemis by apache.
the class XARecoveryBrokerTest method testQueuePersistentCommittedMessagesNotLostOnRestart.
public void testQueuePersistentCommittedMessagesNotLostOnRestart() throws Exception {
ActiveMQDestination destination = createDestination();
// Setup the producer and send the message.
StubConnection connection = createConnection();
ConnectionInfo connectionInfo = createConnectionInfo();
SessionInfo sessionInfo = createSessionInfo(connectionInfo);
ProducerInfo producerInfo = createProducerInfo(sessionInfo);
connection.send(connectionInfo);
connection.send(sessionInfo);
connection.send(producerInfo);
// Begin the transaction.
XATransactionId txid = createXATransaction(sessionInfo);
connection.send(createBeginTransaction(connectionInfo, txid));
for (int i = 0; i < 4; i++) {
Message message = createMessage(producerInfo, destination);
message.setPersistent(true);
message.setTransactionId(txid);
connection.send(message);
}
// Commit
connection.send(createCommitTransaction1Phase(connectionInfo, txid));
connection.request(closeConnectionInfo(connectionInfo));
// restart the broker.
restartBroker();
// Setup the consumer and receive the message.
connection = createConnection();
connectionInfo = createConnectionInfo();
sessionInfo = createSessionInfo(connectionInfo);
connection.send(connectionInfo);
connection.send(sessionInfo);
ConsumerInfo consumerInfo = createConsumerInfo(sessionInfo, destination);
connection.send(consumerInfo);
for (int i = 0; i < expectedMessageCount(4, destination); i++) {
Message m = receiveMessage(connection);
assertNotNull(m);
}
assertNoMessagesLeft(connection);
}
use of org.apache.activemq.command.SessionInfo in project activemq-artemis by apache.
the class XARecoveryBrokerTest method testQueuePersistentUncommittedAcksLostOnRestart.
public void testQueuePersistentUncommittedAcksLostOnRestart() throws Exception {
ActiveMQDestination destination = createDestination();
// Setup the producer and send the message.
StubConnection connection = createConnection();
ConnectionInfo connectionInfo = createConnectionInfo();
SessionInfo sessionInfo = createSessionInfo(connectionInfo);
ProducerInfo producerInfo = createProducerInfo(sessionInfo);
connection.send(connectionInfo);
connection.send(sessionInfo);
connection.send(producerInfo);
for (int i = 0; i < 4; i++) {
Message message = createMessage(producerInfo, destination);
message.setPersistent(true);
connection.send(message);
}
// Begin the transaction.
XATransactionId txid = createXATransaction(sessionInfo);
connection.send(createBeginTransaction(connectionInfo, txid));
Message message = null;
for (ActiveMQDestination dest : destinationList(destination)) {
// Setup the consumer and receive the message.
ConsumerInfo consumerInfo = createConsumerInfo(sessionInfo, dest);
connection.send(consumerInfo);
for (int i = 0; i < 4; i++) {
message = receiveMessage(connection);
assertNotNull(message);
}
MessageAck ack = createAck(consumerInfo, message, 4, MessageAck.STANDARD_ACK_TYPE);
ack.setTransactionId(txid);
connection.request(ack);
}
// Don't commit
// restart the broker.
restartBroker();
// Setup the consumer and receive the message.
connection = createConnection();
connectionInfo = createConnectionInfo();
sessionInfo = createSessionInfo(connectionInfo);
connection.send(connectionInfo);
connection.send(sessionInfo);
for (ActiveMQDestination dest : destinationList(destination)) {
// Setup the consumer and receive the message.
ConsumerInfo consumerInfo = createConsumerInfo(sessionInfo, dest);
connection.send(consumerInfo);
for (int i = 0; i < 4; i++) {
message = receiveMessage(connection);
assertNotNull(message);
}
}
assertNoMessagesLeft(connection);
}
use of org.apache.activemq.command.SessionInfo in project activemq-artemis by apache.
the class BrokerBenchmark method testPerformance.
public void testPerformance() throws Exception {
LOG.info("Running Benchmark for destination=" + destination + ", producers=" + prodcuerCount + ", consumers=" + consumerCount + ", deliveryMode=" + deliveryMode);
final int consumeCount = destination.isTopic() ? consumerCount * produceCount : produceCount;
final Semaphore consumersStarted = new Semaphore(1 - consumerCount);
final Semaphore producersFinished = new Semaphore(1 - prodcuerCount);
final Semaphore consumersFinished = new Semaphore(1 - consumerCount);
final ProgressPrinter printer = new ProgressPrinter(produceCount + consumeCount, 10);
// Start a producer and consumer
profilerPause("Benchmark ready. Start profiler ");
long start = System.currentTimeMillis();
final AtomicInteger receiveCounter = new AtomicInteger(0);
for (int i = 0; i < consumerCount; i++) {
new Thread() {
@Override
public void run() {
try {
// Consume the messages
StubConnection connection = new StubConnection(broker);
ConnectionInfo connectionInfo = createConnectionInfo();
connection.send(connectionInfo);
SessionInfo sessionInfo = createSessionInfo(connectionInfo);
ConsumerInfo consumerInfo = createConsumerInfo(sessionInfo, destination);
consumerInfo.setPrefetchSize(1000);
connection.send(sessionInfo);
connection.send(consumerInfo);
consumersStarted.release();
while (receiveCounter.get() < consumeCount) {
int counter = 0;
// Get a least 1 message.
Message msg = receiveMessage(connection, 2000);
if (msg != null) {
printer.increment();
receiveCounter.incrementAndGet();
counter++;
// Try to piggy back a few extra message acks if
// they are ready.
Message extra = null;
while ((extra = receiveMessage(connection, 0)) != null) {
msg = extra;
printer.increment();
receiveCounter.incrementAndGet();
counter++;
}
}
if (msg != null) {
connection.send(createAck(consumerInfo, msg, counter, MessageAck.STANDARD_ACK_TYPE));
} else if (receiveCounter.get() < consumeCount) {
LOG.info("Consumer stall, waiting for message #" + receiveCounter.get() + 1);
}
}
connection.send(closeConsumerInfo(consumerInfo));
} catch (Throwable e) {
e.printStackTrace();
} finally {
consumersFinished.release();
}
}
}.start();
}
// Make sure that the consumers are started first to avoid sending
// messages
// before a topic is subscribed so that those messages are not missed.
consumersStarted.acquire();
// Send the messages in an async thread.
for (int i = 0; i < prodcuerCount; i++) {
new Thread() {
@Override
public void run() {
try {
StubConnection connection = new StubConnection(broker);
ConnectionInfo connectionInfo = createConnectionInfo();
connection.send(connectionInfo);
SessionInfo sessionInfo = createSessionInfo(connectionInfo);
ProducerInfo producerInfo = createProducerInfo(sessionInfo);
connection.send(sessionInfo);
connection.send(producerInfo);
for (int i = 0; i < produceCount / prodcuerCount; i++) {
Message message = createMessage(producerInfo, destination);
message.setPersistent(deliveryMode);
message.setResponseRequired(false);
connection.send(message);
printer.increment();
}
} catch (Throwable e) {
e.printStackTrace();
} finally {
producersFinished.release();
}
}
}.start();
}
producersFinished.acquire();
long end1 = System.currentTimeMillis();
consumersFinished.acquire();
long end2 = System.currentTimeMillis();
LOG.info("Results for destination=" + destination + ", producers=" + prodcuerCount + ", consumers=" + consumerCount + ", deliveryMode=" + deliveryMode);
LOG.info("Produced at messages/sec: " + (produceCount * 1000.0 / (end1 - start)));
LOG.info("Consumed at messages/sec: " + (consumeCount * 1000.0 / (end2 - start)));
profilerPause("Benchmark done. Stop profiler ");
}
use of org.apache.activemq.command.SessionInfo in project activemq-artemis by apache.
the class SessionInfoTest method populateObject.
@Override
protected void populateObject(Object object) throws Exception {
super.populateObject(object);
SessionInfo info = (SessionInfo) object;
info.setSessionId(createSessionId("SessionId:1"));
}
use of org.apache.activemq.command.SessionInfo in project activemq-artemis by apache.
the class SessionInfoTest method createObject.
@Override
public Object createObject() throws Exception {
SessionInfo info = new SessionInfo();
populateObject(info);
return info;
}
Aggregations