This is an automated email from the ASF dual-hosted git repository.

piotr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iggy.git


The following commit(s) were added to refs/heads/master by this push:
     new b956a5d39 fix(docs): remove unsupported verbosity in benchmark command 
examples (#3114)
b956a5d39 is described below

commit b956a5d39deff9c212f4156ba2871b83540dd3b3
Author: Ryan Huang <[email protected]>
AuthorDate: Tue Apr 14 16:39:11 2026 +0800

    fix(docs): remove unsupported verbosity in benchmark command examples 
(#3114)
---
 README.md | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/README.md b/README.md
index d90f87447..7dd71daf2 100644
--- a/README.md
+++ b/README.md
@@ -421,43 +421,43 @@ Then, run the benchmarking app with the desired options:
 1. Sending (writing) benchmark
 
    ```bash
-   cargo run --bin iggy-bench -r -- -v pinned-producer tcp
+   cargo run --bin iggy-bench -r -- pinned-producer tcp
    ```
 
 2. Polling (reading) benchmark
 
    ```bash
-   cargo run --bin iggy-bench -r -- -v pinned-consumer tcp
+   cargo run --bin iggy-bench -r -- pinned-consumer tcp
    ```
 
 3. Parallel sending and polling benchmark
 
    ```bash
-   cargo run --bin iggy-bench -r -- -v pinned-producer-and-consumer tcp
+   cargo run --bin iggy-bench -r -- pinned-producer-and-consumer tcp
    ```
 
 4. Balanced sending to multiple partitions benchmark
 
    ```bash
-   cargo run --bin iggy-bench -r -- -v balanced-producer tcp
+   cargo run --bin iggy-bench -r -- balanced-producer tcp
    ```
 
 5. Consumer group polling benchmark:
 
    ```bash
-   cargo run --bin iggy-bench -r -- -v balanced-consumer-group tcp
+   cargo run --bin iggy-bench -r -- balanced-consumer-group tcp
    ```
 
 6. Parallel balanced sending and polling from consumer group benchmark:
 
    ```bash
-   cargo run --bin iggy-bench -r -- -v balanced-producer-and-consumer-group tcp
+   cargo run --bin iggy-bench -r -- balanced-producer-and-consumer-group tcp
    ```
 
 7. End to end producing and consuming benchmark (single task produces and 
consumes messages in sequence):
 
    ```bash
-   cargo run --bin iggy-bench -r -- -v end-to-end-producing-consumer tcp
+   cargo run --bin iggy-bench -r -- end-to-end-producing-consumer tcp
    ```
 
 These benchmarks would start the server with the default configuration, create 
a stream, topic and partition, and then send or poll the messages. The default 
configuration is optimized for the best performance, so you might want to tweak 
it for your needs. If you need more options, please refer to `iggy-bench` 
subcommands `help` and `examples`.

Reply via email to