mirror of https://github.com/apache/activemq.git
- Change the perfharness-activemq.sh to refer to 5.0-SNAPSHOT
- Minor spelling corrections git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@548220 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4e0ee66db1
commit
0ef421d14a
|
@ -22,7 +22,7 @@
|
||||||
# Sample Usage:
|
# Sample Usage:
|
||||||
# ./perfharness-activemq.sh -d dynamicQueues/FOO -tc jms.r11.PutGet -nt 6
|
# ./perfharness-activemq.sh -d dynamicQueues/FOO -tc jms.r11.PutGet -nt 6
|
||||||
#
|
#
|
||||||
# It assumes that the apache-activemq-4.1-incubator-SNAPSHOT.jar and
|
# It assumes that the apache-activemq-5.0-SNAPSHOT.jar and
|
||||||
# perfharness.jar files are in the current directory. If they are not,
|
# perfharness.jar files are in the current directory. If they are not,
|
||||||
# set the ACTIVEMQ_HOME and PERFHARNESS_HOME env variable to the correct location.
|
# set the ACTIVEMQ_HOME and PERFHARNESS_HOME env variable to the correct location.
|
||||||
#
|
#
|
||||||
|
@ -46,4 +46,4 @@ if [ -z "$BROKER_URL" ] ; then
|
||||||
BROKER_URL='vm://(broker://()/localhost?useJmx=false)/localhost'
|
BROKER_URL='vm://(broker://()/localhost?useJmx=false)/localhost'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
java ${JAVA_OPTIONS} -cp ${ACTIVEMQ_HOME}/apache-activemq-4.1-incubator-SNAPSHOT.jar:${PERFHARNESS_HOME}/perfharness.jar JMSPerfHarness -pc JNDI -ii org.apache.activemq.jndi.ActiveMQInitialContextFactory -iu $BROKER_URL -cf ConnectionFactory -d dynamic$DESTINATION $@
|
java ${JAVA_OPTIONS} -cp ${ACTIVEMQ_HOME}/apache-activemq-5.0-SNAPSHOT.jar:${PERFHARNESS_HOME}/perfharness.jar JMSPerfHarness -pc JNDI -ii org.apache.activemq.jndi.ActiveMQInitialContextFactory -iu $BROKER_URL -cf ConnectionFactory -d dynamic$DESTINATION $@
|
||||||
|
|
|
@ -26,7 +26,7 @@ import org.apache.activemq.util.IntrospectionSupport;
|
||||||
*
|
*
|
||||||
* @author <a href="http://hiramchirino.com">Hiram Chirino</a>
|
* @author <a href="http://hiramchirino.com">Hiram Chirino</a>
|
||||||
*/
|
*/
|
||||||
public class CommnadLineSupport {
|
public class CommandLineSupport {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the properties of an object given the command line args.
|
* Sets the properties of an object given the command line args.
|
|
@ -66,9 +66,9 @@ public class ConsumerTool implements MessageListener, ExceptionListener {
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
ConsumerTool consumerTool = new ConsumerTool();
|
ConsumerTool consumerTool = new ConsumerTool();
|
||||||
String[] unknonwn = CommnadLineSupport.setOptions(consumerTool, args);
|
String[] unknown = CommandLineSupport.setOptions(consumerTool, args);
|
||||||
if (unknonwn.length > 0) {
|
if (unknown.length > 0) {
|
||||||
System.out.println("Unknown options: " + Arrays.toString(unknonwn));
|
System.out.println("Unknown options: " + Arrays.toString(unknown));
|
||||||
System.exit(-1);
|
System.exit(-1);
|
||||||
}
|
}
|
||||||
consumerTool.run();
|
consumerTool.run();
|
||||||
|
|
|
@ -31,12 +31,12 @@ public class ProducerAndConsumerTool extends ConsumerTool implements MessageList
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
|
|
||||||
ConsumerTool consumerTool = new ConsumerTool();
|
ConsumerTool consumerTool = new ConsumerTool();
|
||||||
String[] unknonwn = CommnadLineSupport.setOptions(consumerTool, args);
|
String[] unknown = CommandLineSupport.setOptions(consumerTool, args);
|
||||||
HashSet set1 = new HashSet(Arrays.asList(unknonwn));
|
HashSet set1 = new HashSet(Arrays.asList(unknown));
|
||||||
|
|
||||||
ProducerTool producerTool = new ProducerTool();
|
ProducerTool producerTool = new ProducerTool();
|
||||||
unknonwn = CommnadLineSupport.setOptions(producerTool, args);
|
unknown = CommandLineSupport.setOptions(producerTool, args);
|
||||||
HashSet set2 = new HashSet(Arrays.asList(unknonwn));
|
HashSet set2 = new HashSet(Arrays.asList(unknown));
|
||||||
|
|
||||||
set1.retainAll(set2);
|
set1.retainAll(set2);
|
||||||
if( set1.size() > 0 ) {
|
if( set1.size() > 0 ) {
|
||||||
|
|
|
@ -52,9 +52,9 @@ public class ProducerTool {
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
ProducerTool producerTool = new ProducerTool();
|
ProducerTool producerTool = new ProducerTool();
|
||||||
String[] unknonwn = CommnadLineSupport.setOptions(producerTool, args);
|
String[] unknown = CommandLineSupport.setOptions(producerTool, args);
|
||||||
if( unknonwn.length > 0 ) {
|
if( unknown.length > 0 ) {
|
||||||
System.out.println("Unknown options: "+Arrays.toString(unknonwn));
|
System.out.println("Unknown options: " + Arrays.toString(unknown));
|
||||||
System.exit(-1);
|
System.exit(-1);
|
||||||
}
|
}
|
||||||
producerTool.run();
|
producerTool.run();
|
||||||
|
|
|
@ -61,9 +61,9 @@ public class RequesterTool {
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
RequesterTool requesterTool = new RequesterTool();
|
RequesterTool requesterTool = new RequesterTool();
|
||||||
String[] unknonwn = CommnadLineSupport.setOptions(requesterTool, args);
|
String[] unknown = CommandLineSupport.setOptions(requesterTool, args);
|
||||||
if (unknonwn.length > 0) {
|
if (unknown.length > 0) {
|
||||||
System.out.println("Unknown options: " + Arrays.toString(unknonwn));
|
System.out.println("Unknown options: " + Arrays.toString(unknown));
|
||||||
System.exit(-1);
|
System.exit(-1);
|
||||||
}
|
}
|
||||||
requesterTool.run();
|
requesterTool.run();
|
||||||
|
|
|
@ -47,9 +47,9 @@ public class TopicListener implements MessageListener {
|
||||||
|
|
||||||
public static void main(String[] argv) throws Exception {
|
public static void main(String[] argv) throws Exception {
|
||||||
TopicListener l = new TopicListener();
|
TopicListener l = new TopicListener();
|
||||||
String[] unknonwn = CommnadLineSupport.setOptions(l, argv);
|
String[] unknown = CommandLineSupport.setOptions(l, argv);
|
||||||
if (unknonwn.length > 0) {
|
if (unknown.length > 0) {
|
||||||
System.out.println("Unknown options: " + Arrays.toString(unknonwn));
|
System.out.println("Unknown options: " + Arrays.toString(unknown));
|
||||||
System.exit(-1);
|
System.exit(-1);
|
||||||
}
|
}
|
||||||
l.run();
|
l.run();
|
||||||
|
|
|
@ -48,9 +48,9 @@ public class TopicPublisher implements MessageListener
|
||||||
public static void main(String[] argv) throws Exception
|
public static void main(String[] argv) throws Exception
|
||||||
{
|
{
|
||||||
TopicPublisher p = new TopicPublisher();
|
TopicPublisher p = new TopicPublisher();
|
||||||
String[] unknonwn = CommnadLineSupport.setOptions(p, argv);
|
String[] unknown = CommandLineSupport.setOptions(p, argv);
|
||||||
if (unknonwn.length > 0) {
|
if (unknown.length > 0) {
|
||||||
System.out.println("Unknown options: " + Arrays.toString(unknonwn));
|
System.out.println("Unknown options: " + Arrays.toString(unknown));
|
||||||
System.exit(-1);
|
System.exit(-1);
|
||||||
}
|
}
|
||||||
p.run();
|
p.run();
|
||||||
|
|
Loading…
Reference in New Issue