This is an automated email from the ASF dual-hosted git repository.
spetz pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iggy-website.git
The following commit(s) were added to refs/heads/main by this push:
new 4e05cdf9 fix(docs): remove unsupported verbosity in benchmark command
examples (#38)
4e05cdf9 is described below
commit 4e05cdf9cc99af25edf639b8aca60571cf6f0317
Author: Ryan Huang <[email protected]>
AuthorDate: Sat Apr 25 19:22:52 2026 +0800
fix(docs): remove unsupported verbosity in benchmark command examples (#38)
---
content/docs/server/benchmarking.mdx | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/content/docs/server/benchmarking.mdx
b/content/docs/server/benchmarking.mdx
index 5ca8a40a..b2bda9ff 100644
--- a/content/docs/server/benchmarking.mdx
+++ b/content/docs/server/benchmarking.mdx
@@ -23,43 +23,43 @@ Then, run the benchmarking app with the desired options:
1. Sending (writing) benchmark
```bash
- cargo r --bin iggy-bench -r -- -v pinned-producer tcp
+ cargo r --bin iggy-bench -r -- pinned-producer tcp
```
2. Polling (reading) benchmark
```bash
- cargo r --bin iggy-bench -r -- -v pinned-consumer tcp
+ cargo r --bin iggy-bench -r -- pinned-consumer tcp
```
3. Parallel sending and polling benchmark
```bash
- cargo r --bin iggy-bench -r -- -v pinned-producer-and-consumer tcp
+ cargo r --bin iggy-bench -r -- pinned-producer-and-consumer tcp
```
4. Balanced sending to multiple partitions benchmark
```bash
- cargo r --bin iggy-bench -r -- -v balanced-producer tcp
+ cargo r --bin iggy-bench -r -- balanced-producer tcp
```
5. Consumer group polling benchmark:
```bash
- cargo r --bin iggy-bench -r -- -v balanced-consumer-group tcp
+ cargo r --bin iggy-bench -r -- balanced-consumer-group tcp
```
6. Parallel balanced sending and polling from consumer group benchmark:
```bash
- cargo r --bin iggy-bench -r -- -v balanced-producer-and-consumer-group tcp
+ cargo r --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 r --bin iggy-bench -r -- -v end-to-end-producing-consumer tcp
+ cargo r --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`.