tendermint/tm-bench
Anton Kaliaev 52d3eca67c
check if block was created after timeStart
2018-05-08 16:23:00 +04:00
..
Dockerfile different way to get stats (#90) 2018-05-04 16:13:42 +04:00
Dockerfile.dev [monitor/bench] fix Dockerfile.dev 2018-04-03 13:19:21 +02:00
Gopkg.lock different way to get stats (#90) 2018-05-04 16:13:42 +04:00
Gopkg.toml different way to get stats (#90) 2018-05-04 16:13:42 +04:00
LICENSE [tm-bench] update Makefile 2017-12-07 13:25:35 -06:00
Makefile [bench] update Makefile 2018-04-03 12:39:58 +02:00
README.rst [monitor] bring back readme 2018-04-03 11:55:43 +02:00
main.go check if block was created after timeStart 2018-05-08 16:23:00 +04:00
transacter.go [tm-bench] give user ability to change rpc function (#91) 2018-05-04 16:35:39 +04:00

README.rst

Benchmarking
============

tm-bench
--------

Tendermint blockchain benchmarking tool: https://github.com/tendermint/tools/tree/master/tm-bench

For example, the following:

::

    tm-bench -T 10 -r 1000 localhost:46657

will output:

::

    Stats             Avg        Stdev      Max
    Block latency     6.18ms     3.19ms     14ms
    Blocks/sec        0.828      0.378      1
    Txs/sec           963        493        1811

Quick Start
^^^^^^^^^^^

Docker
~~~~~~

::

    docker run -it --rm -v "/tmp:/tendermint" tendermint/tendermint:0.12.1 init
    docker run -it --rm -v "/tmp:/tendermint" -p "46657:46657" --name=tm tendermint/tendermint:0.12.1

    docker run -it --rm --link=tm tendermint/bench tm:46657

Binaries
~~~~~~~~

If **Linux**, start with:

::

    curl -L https://s3-us-west-2.amazonaws.com/tendermint/0.12.1/tendermint_linux_amd64.zip && sudo unzip -d /usr/local/bin tendermint_linux_amd64.zip && sudo chmod +x tendermint

if  **Mac OS**, start with:

::

    curl -L https://s3-us-west-2.amazonaws.com/tendermint/0.12.1/tendermint_darwin_amd64.zip && sudo unzip -d /usr/local/bin tendermint_darwin_amd64.zip && sudo chmod +x tendermint

then run:

::

    tendermint init
    tendermint node --proxy_app=dummy

    tm-bench localhost:46657

with the last command being in a seperate window.

Usage
^^^^^

::

    tm-bench [-c 1] [-T 10] [-r 1000] [endpoints]

    Examples:
            tm-bench localhost:46657
    Flags:
      -T int
            Exit after the specified amount of time in seconds (default 10)
      -c int
            Connections to keep open per endpoint (default 1)
      -r int
            Txs per second to send in a connection (default 1000)
      -v    Verbose output

Development
^^^^^^^^^^^

::

    make get_vendor_deps
    make test