All Projects → rabbitmq → Rabbitmq Perf Test

rabbitmq / Rabbitmq Perf Test

Licence: other
A load testing tool

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Rabbitmq Perf Test

awesome-locust
A collection of resources covering different aspects of Locust load testing tool usage.
Stars: ✭ 40 (-79.7%)
Mutual labels:  benchmarking, load-testing
grandma
👵 fully programmable stress testing framework
Stars: ✭ 20 (-89.85%)
Mutual labels:  benchmarking, load-testing
ezab
A suite of tools for benchmarking (load testing) web servers and databases
Stars: ✭ 16 (-91.88%)
Mutual labels:  benchmarking, load-testing
Bombardier
Fast cross-platform HTTP benchmarking tool written in Go
Stars: ✭ 2,952 (+1398.48%)
Mutual labels:  benchmarking, load-testing
Goben
goben is a golang tool to measure TCP/UDP transport layer throughput between hosts.
Stars: ✭ 391 (+98.48%)
Mutual labels:  tool, benchmarking
benchmark-thrift
An open source application designed to load test Thrift applications
Stars: ✭ 41 (-79.19%)
Mutual labels:  benchmarking, load-testing
load-testing-toolkit
Collection of open-source tools for debugging, benchmarking, load and stress testing your code or services.
Stars: ✭ 65 (-67.01%)
Mutual labels:  benchmarking, load-testing
esperf
ElasticSearch Performance Testing tool
Stars: ✭ 50 (-74.62%)
Mutual labels:  benchmarking, load-testing
Vegeta
HTTP load testing tool and library. It's over 9000!
Stars: ✭ 18,780 (+9432.99%)
Mutual labels:  benchmarking, load-testing
Locust
Scalable user load testing tool written in Python
Stars: ✭ 17,763 (+8916.75%)
Mutual labels:  benchmarking, load-testing
Ali
Generate HTTP load and plot the results in real-time
Stars: ✭ 3,055 (+1450.76%)
Mutual labels:  benchmarking, load-testing
Gatling Dubbo
A gatling plugin for running load tests on Apache Dubbo(https://github.com/apache/incubator-dubbo) and other java ecosystem.
Stars: ✭ 131 (-33.5%)
Mutual labels:  benchmarking, load-testing
mzbench
Distributed Benchmarking
Stars: ✭ 39 (-80.2%)
Mutual labels:  benchmarking, load-testing
blockchain-load-testing
Code for load testing the Stellar network.
Stars: ✭ 36 (-81.73%)
Mutual labels:  benchmarking, load-testing
Hzdtf.foundation.framework
基础框架系统,支持.NET和.NET Core平台,语言:C#,DB支持MySql和SqlServer,主要功能有抽象持久化、服务层,将业务基本的增删改查抽离复用;提供代码生成器从DB生成实体、持久化、服务以及MVC控制器,每层依赖接口,并需要在客户端将对应实现层用Autofac程序集依赖注入,用AOP提供日志跟踪、事务、模型验证等。对Autofac、Redis、RabbitMQ封装扩展;DB访问提供自动主从访问,Redis客户端分区。特别适合管理系统。
Stars: ✭ 22 (-88.83%)
Mutual labels:  rabbitmq, tool
Shadowreader
Serverless load testing for replaying website traffic. Powered by AWS Lambda.
Stars: ✭ 138 (-29.95%)
Mutual labels:  benchmarking, load-testing
Kubernetes Rabbitmq Cluster
Deploy-ready rabbitmq cluster for kubernetes
Stars: ✭ 187 (-5.08%)
Mutual labels:  rabbitmq
Bridge.
Minecraft Add-on Editor | We strive to provide the best development experience possible
Stars: ✭ 193 (-2.03%)
Mutual labels:  tool
Php To Zephir
Convert PHP to Zephir
Stars: ✭ 186 (-5.58%)
Mutual labels:  tool
Ebook Chat App Spring Websocket Cassandra Redis Rabbitmq
Pro Java Clustering and Scalability: Building Real-Time Apps with Spring, Cassandra, Redis, WebSocket and RabbitMQ
Stars: ✭ 186 (-5.58%)
Mutual labels:  rabbitmq

RabbitMQ Performance Testing Tool

Build Status

This repository contains source code of the RabbitMQ Performance Testing Tool. The client is maintained by the RabbitMQ team at VMware.

Installation

This is a standalone tool that is distributed in binary form using GitHub releases and as a JAR file on Maven Central (see below). A Docker image is available as well.

Documentation

Usage

Running Performance Tests

Assuming the current directory is the root directory of the binary distribution, to launch a performance test with 1 producer and 1 consumer:

bin/runjava com.rabbitmq.perf.PerfTest

Use

bin/runjava com.rabbitmq.perf.PerfTest --help

to see all supported options.

Producing HTML Output of Runs

The HTML Performance Tools are a set of tools that can help you run automated benchmarks by wrapping around the PerfTest benchmarking framework. You can provide benchmark specs, and the tool will take care of running the benchmark, collecting results and displaying them in an HTML page. Learn more here.

Contributing

See CONTRIBUTING.md for an overview of the development process.

Building from Source

To build the JAR file:

./mvnw clean package -Dmaven.test.skip

Files are then in the target directory.

To build the JAR file, source and binary distributions:

./mvnw clean package -P assemblies -Dgpg.skip=true -Dmaven.test.skip

Running tests

The test suite needs to execute rabbitmqctl to test connection recovery. You can specify the path to rabbitmqctl like the following:

./mvnw clean verify -Drabbitmqctl.bin=/path/to/rabbitmqctl

You need a local running RabbitMQ instance.

Running tests with Docker

Start a RabbitMQ container:

docker run -it --rm --name rabbitmq -p 5672:5672 rabbitmq:3.8

Run the test suite:

./mvnw clean verify -Drabbitmqctl.bin=DOCKER:rabbitmq

Files are then in the target directory.

Maven Artifact

Maven Central

perf-test search.maven.org

Logging

PerfTest depends transitively on SLF4J for logging (through RabbitMQ Java Client). PerfTest binary distribution ships with Logback as a SLF4J binding and uses Logback default configuration (printing logs to the console). If for any reason you need to use a specific Logback configuration file, you can do it this way:

bin/runjava -Dlogback.configurationFile=/path/to/logback.xml com.rabbitmq.perf.PerfTest

As of PerfTest 2.11.0, it is possible to define loggers directly from the command line. This is less powerful than using a configuration file, yet simpler to use and useful for quick debugging. Use the rabbitmq.perftest.loggers system property with name=level pairs, e.g.:

bin/runjava -Drabbitmq.perftest.loggers=com.rabbitmq.perf=debug com.rabbitmq.perf.PerfTest

It is possible to define several loggers by separating them with commas, e.g. -Drabbitmq.perftest.loggers=com.rabbitmq.perf=debug,com.rabbitmq.perf.Producer=info.

It is also possible to use an environment variable:

export RABBITMQ_PERF_TEST_LOGGERS=com.rabbitmq.perf=info

The system property takes precedence over the environment variable.

Use the environment variable with the Docker image:

docker run -it --rm --network perf-test \
  --env RABBITMQ_PERF_TEST_LOGGERS=com.rabbitmq.perf=debug,com.rabbitmq.perf.Producer=debug \
  pivotalrabbitmq/perf-test:latest --uri amqp://rabbitmq

If you use PerfTest as a standalone JAR in your project, please note it doesn't depend on any SLF4J binding, you can use your favorite one.

Versioning

This tool uses semantic versioning.

Support

See the RabbitMQ Java libraries support page for the support timeline of this library.

License

This package, the RabbitMQ Performance Testing Tool library, is triple-licensed under the Mozilla Public License 2.0 ("MPL"), the GNU General Public License version 2 ("GPL") and the Apache License version 2 ("ASL").

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].