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
commit 007269ff454a12d1d4a6d621e13a8f6c1a0cface Author: Andrea Cosentino <[email protected]> AuthorDate: Thu Sep 9 15:31:13 2021 +0200 Fixed README --- profiling/kafka-minio/README.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/profiling/kafka-minio/README.md b/profiling/kafka-minio/README.md index bcc9d7a..790bebd 100644 --- a/profiling/kafka-minio/README.md +++ b/profiling/kafka-minio/README.md @@ -50,9 +50,18 @@ and check the status docker exec -it <container_id> jcmd 1 JFR.check ``` -You'll need also kafkacat to be able to inject the filename header: +You'll need also kafkacat to be able to inject the filename header and use the burst script +```shell script +export KAFKACAT_PATH=<path_to_your_kafkacat> ``` -echo "payload" | ./kafkacat -b localhost:9092 -t testtopic -H "file=$(cat /dev/urandom | tr -dc '[:alpha:]' | fold -w ${1:-20} | head -n 1)" + +And now run the burst script + +```shell script +cd script/ +> ./burst.sh ``` + +
