This is an automated email from the ASF dual-hosted git repository.
acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-performance-tests.git
The following commit(s) were added to refs/heads/main by this push:
new 53714c7 Explained the usage of multiburst script
53714c7 is described below
commit 53714c7bff03f8c90703b4821737acce31df7277
Author: Andrea Cosentino <[email protected]>
AuthorDate: Mon Sep 20 14:36:38 2021 +0200
Explained the usage of multiburst script
---
profiling/kafka-minio/README.md | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/profiling/kafka-minio/README.md b/profiling/kafka-minio/README.md
index 53fa8c0..4c20628 100644
--- a/profiling/kafka-minio/README.md
+++ b/profiling/kafka-minio/README.md
@@ -110,5 +110,14 @@ cd script/
> ./burst.sh -b localhost:9092 -n 1000 -t testtopic -p "payload"
```
+You could also tests this approach with multiple producers, through the
multiburst script
+
+```shell script
+cd script/
+> ./multiburst.sh -s 5 -b localhost:9092 -n 1000 -t testtopic -p "payload"
+```
+
+This command will run 5 burst script with 1000 messages each one with payload
"payload" to the Kafka instance running on localhost9092 and the topic
"testtopic"
+