-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: change --inflight option default value to 1 (#154)
The old default value `0` means `infinity`. Which means no back-pressure from the target MQTT broker under test. With default set to 1, for each publisher client, only one message is put to the send buffer each time. In conjunction with the `--interval_of_msg` option, the 'overrun' counter report should indicate if the system uder test is overloaded or not.
- Loading branch information
Showing
3 changed files
with
20 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,4 @@ _build/ | |
/emqtt_bench | ||
libquicer_nif.so | ||
rebar3 | ||
*.crashdump |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,31 @@ | ||
# emqtt-bench changelog | ||
|
||
0.4 (2019-07-29) | ||
---------------- | ||
## 0.4.5 | ||
|
||
* Default value for `--inflight` option is changed from `0` (no back-pressure) to `1`. | ||
i.e. `max-inflight` is `1` by default for QoS 1 and 2 messages. | ||
|
||
## 0.4.4 | ||
|
||
Main changes comparing to 0.4.0 | ||
|
||
* Release on otp 24.2.1 | ||
* Multiple source IP address support (to get around the 64K source port limit) | ||
* Reports publisher overrun for QoS 1 (when the ack is received after the interval set by `--interval_of_msg` option) | ||
|
||
## 0.4 (2019-07-29) | ||
|
||
Use the new Erlang MQTT v5.0 client | ||
|
||
0.3 (2016-01-29) | ||
---------------- | ||
## 0.3 (2016-01-29) | ||
|
||
emqtt_bench_sub: support to subscribe mutiple topics (#9) | ||
|
||
0.2 (2015-10-08) | ||
---------------- | ||
## 0.2 (2015-10-08) | ||
|
||
emqtt_bench_pub, emqtt_bench_sub scripts | ||
|
||
0.1 (2015-04-23) | ||
---------------- | ||
## 0.1 (2015-04-23) | ||
|
||
first public release | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters