nats-bench
NATS is fast and lightweight and places a priority on performance. NATS provides tools for measuring performance. In this tutorial you learn how to benchmark and tune NATS on your systems and environment.
Prerequisites
Start the NATS server with monitoring enabled
Verify that the NATS server starts successfully, as well as the HTTP monitor:
Installing and running the benchmark utility
The NATS benchmark can be installed and run via Go. Ensure your golang environment is setup.
There are two approaches; you can either install the nats-bench
utility in the directory specified in your GOBIN
environment variable:
... or you can simply run it via go run
:
On windows use the % environment variable syntax, replacing $GOPATH
with %GOPATH%
.
For the purpose of this tutorial, we'll assume that you chose the first option, and that you've added the GOBIN
environment variable to your PATH
.
The nats-bench
utility is straightforward to use. The options are as follows:
The options are self-explanatory. Each publisher or subscriber runs in its own go routine with its own NATS connection.
Run a publisher throughput test
Let's run a test to see how fast a single publisher can publish one million 16 byte messages to the NATS server.
The output tells you the number of messages and the number of payload bytes that the client was able to publish per second:
Now increase the number of messages published:
Run a publish/subscribe throughput test
When using both publishers and subscribers, nats-bench
reports aggregate, as well as individual publish and subscribe throughput performance.
Let's look at throughput for a single publisher with a single subscriber:
Note that the output shows the aggregate throughput as well as the individual publisher and subscriber performance:
Run a 1:N throughput test
When specifying multiple publishers, or multiple subscribers, nats-bench
will also report statistics for each publisher and subscriber individually, along with min/max/avg and standard deviation.
Let's increase both the number of messages, and the number of subscribers.:
Output:
Run a N:M throughput test
When more than 1 publisher is specified, nats-bench
evenly distributes the total number of messages (-n
) across the number of publishers (-np
).
Now let's increase the number of publishers and examine the output:
The output:
最后更新于
这有帮助吗?