eolivelli commented on issue #9721: URL: https://github.com/apache/pulsar/issues/9721#issuecomment-787954312
The command is `bin/pulsar-perf produce -m 0 -z NONE -time 1800 --exit-on-failure -i 20 -t 1 -r 10000 -threads 10 -u http://pulsar-proxy:8080` with the default configuration that comes with the docker image Actually I am applying this k8s manifest ``` apiVersion: batch/v1 kind: Job metadata: name: runproducer spec: template: spec: containers: - name: pulsarproducerrunner image: apachepulsar/pulsar-all:2.7.0 command: ["/bin/sh", "-c", "env && /pulsar/bin/apply-config-from-env.py /pulsar/conf/client.conf && bin/pulsar-perf produce -m 0 -z NONE -time 3600 --exit-on-failure -i 20 -t {{pulsarperf.numtopics}} -r 10000 -threads 10 -u http://pulsar-proxy:8080 persistent://public/default/test"] env: - name: webServiceUrl value: http://pulsar-proxy:8080/ - name: brokerServiceUrl value: pulsar://pulsar-proxy:6650/ restartPolicy: Never backoffLimit: 0 ``` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
