summaryrefslogtreecommitdiff
path: root/cpp/src/tests/qpid_cpp_benchmark
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2010-04-09 16:06:02 +0000
committerAlan Conway <aconway@apache.org>2010-04-09 16:06:02 +0000
commit2f7e23c2591cc632872bcfc183f0449baf9988e1 (patch)
tree7184e034bee606b0a9e6423a275cc4e0f32d0882 /cpp/src/tests/qpid_cpp_benchmark
parent0db7d33b5193a195dbd0cbda3160ed91c107247d (diff)
downloadqpid-python-2f7e23c2591cc632872bcfc183f0449baf9988e1.tar.gz
Script to run performance benchmarks using qpid_send and qpid_receive.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@932479 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/qpid_cpp_benchmark')
-rwxr-xr-xcpp/src/tests/qpid_cpp_benchmark106
1 files changed, 106 insertions, 0 deletions
diff --git a/cpp/src/tests/qpid_cpp_benchmark b/cpp/src/tests/qpid_cpp_benchmark
new file mode 100755
index 0000000000..0b940dc30a
--- /dev/null
+++ b/cpp/src/tests/qpid_cpp_benchmark
@@ -0,0 +1,106 @@
+#!/usr/bin/env python
+#
+# 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.
+#
+
+import optparse, time, qpid.messaging
+from threading import Thread
+from subprocess import Popen, PIPE, STDOUT
+
+op = optparse.OptionParser(usage="usage: %prog [options]",
+ description="simple performance benchmarks")
+op.add_option("-b", "--broker", default="127.0.0.1",
+ help="url of broker to connect to")
+op.add_option("-q", "--queues", default=1, type="int", metavar="N",
+ help="create N queues (default %default)")
+op.add_option("-s", "--senders", default=1, type="int", metavar="N",
+ help="start N senders per queue (default %default)")
+op.add_option("-r", "--receivers", default=1, type="int", metavar="N",
+ help="start N receivers per queue (default %default)")
+op.add_option("-m", "--messages", default=100000, type="int", metavar="N",
+ help="send N messages per sender (default %default)")
+op.add_option("--queue-name", default="benchmark",
+ help="base name for queues (default %default)")
+op.add_option("--send-rate", default=0, metavar="R",
+ help="send rate limited to R messages/second, 0 means no limit")
+
+def start_receive(queue, opts):
+ return Popen(["qpid_receive",
+ "-b", opts.broker,
+ "-a", "%s;{create:always}"%(queue),
+ "--forever",
+ "--print-content=no",
+ "--report-total",
+ "--rate %s"%(opts.send_rate)],
+ stdout=PIPE, stderr=STDOUT)
+
+def start_send(queue, opts):
+ return Popen(["qpid_send",
+ "-b", opts.broker,
+ "-a", queue,
+ "--count", str(opts.messages),
+ "--send-eos", str(opts.receivers),
+ "--content", "benchmark",
+ "--report-total"],
+ stdout=PIPE, stderr=STDOUT)
+
+def wait_for_output(p):
+ out,err=p.communicate()
+ if p.returncode != 0: raise Exception("ERROR:\n%s"%(out))
+ return out
+
+def delete_queues(queues, broker):
+ c = qpid.messaging.Connection(broker)
+ c.open()
+ for q in queues:
+ try: s = c.session().sender("%s;{delete:always}"%(q))
+ except qpid.messaging.exceptions.SendError:pass # Ignore "no such queue"
+ c.close()
+
+def wait_for_queues(queues, broker):
+ c = qpid.messaging.Connection(broker)
+ c.open()
+ s = c.session()
+ while True:
+ try:
+ for q in queues: s.sender(q)
+ break
+ except: pass
+ c.close()
+
+def skip_first_line(text): return "\n".join(text.split("\n")[1:])
+
+def print_output(processes):
+ print wait_for_output(processes.pop(0)),
+ for p in processes: print skip_first_line(wait_for_output(p)),
+
+def main():
+ opts, args = op.parse_args()
+ queues = ["%s-%s"%(opts.queue_name, i) for i in xrange(opts.queues)]
+ delete_queues(queues, opts.broker)
+ receivers = [start_receive(q, opts) for q in queues for i in xrange(opts.receivers)]
+ wait_for_queues(queues, opts.broker) # Wait for receivers to be ready
+ senders = [start_send(q, opts) for q in queues for i in xrange(opts.senders)]
+ print "Send"
+ print_output(senders)
+ print "\nReceive"
+ print_output(receivers)
+ delete_queues(queues, opts.broker)
+
+if __name__ == "__main__": main()
+