backstop / rabbit-mq-stress-tester

This is a fork. Official Repo: https://github.com/agocs/rabbit-mq-stress-tester
28 stars 23 forks source link

Deprecated

We're handing control of this repo over to https://github.com/agocs/rabbit-mq-stress-tester. Use that fork instead!

Below is all accurate as of 2016-Aug-17

rabbit-mq-stress-tester

Compiling

go build

That will produce the executible rabbit-mq-stress-tester

Running

$ ./rabbit-mq-stress-tester -h
NAME:
   tester - Make the rabbit cry

USAGE:
   tester [global options] command [command options] [arguments...]

VERSION:
   0.0.0

COMMANDS:
   help, h  Shows a list of commands or help for one command

GLOBAL OPTIONS:
   --server, -s 'rabbit-mq-test.cs1cloud.internal'  Hostname for RabbitMQ server
   --producer, -p '0'               Number of messages to produce, -1 to produce forever
   --port, -P                       Rabbitmq server port, default 5672
   --user, -u                       Rabbitmq username
   --password, --pass       Rabbitmq password
   --wait, -w '0'                   Number of nanoseconds to wait between publish events
   --consumer, -c '-1'              Number of messages to consume. 0 consumes forever
   --bytes, -b '0'                  number of extra bytes to add to the RabbitMQ message payload. About 50K max
   --concurrency, -n '50'           number of reader/writer Goroutines
   --quiet, -q                      Print only errors to stdout
   --wait-for-ack, -a               Wait for an ack or nack after enqueueing a message
   --version, -v                    print the version
   --help, -h                       show help

Examples

Consume messages forever:

./tester -s rabbit-mq-test.cs1cloud.internal -c 0

Produce 100,000 messages of 10KB each, using 50 concurrent goroutines, waiting 100 nanoseconds between each message. Only print to stdout if there is a nack or when you finish.

./tester -s rabbit-mq-test.cs1cloud.internal -p 100000 -b 10000 -w 100 -n 50 -q