We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
master; hash: 08df28a
Start bin/pulsar-perf read -u pulsar://localhost:6650 -n 100 topic. Run bin/pulsar-perf produce -u pulsar://localhost:6650 -m 100 topic in parallel.
bin/pulsar-perf read -u pulsar://localhost:6650 -n 100 topic
bin/pulsar-perf produce -u pulsar://localhost:6650 -m 100 topic
pulsar-perf read quits and prints its statistics soon after the producer process finishes.
pulsar-perf read
pulsar-perf read indefinitely waits for the next message
The ReaderListener increments the counter after checking the limit. Changing the order of the two solves the problem.
The text was updated successfully, but these errors were encountered:
Cool and thanks!
Sorry, something went wrong.
andrasbeni
Successfully merging a pull request may close this issue.
Search before asking
Version
master; hash: 08df28a
Minimal reproduce step
Start
bin/pulsar-perf read -u pulsar://localhost:6650 -n 100 topic
.Run
bin/pulsar-perf produce -u pulsar://localhost:6650 -m 100 topic
in parallel.What did you expect to see?
pulsar-perf read
quits and prints its statistics soon after the producer process finishes.What did you see instead?
pulsar-perf read
indefinitely waits for the next messageAnything else?
The ReaderListener increments the counter after checking the limit. Changing the order of the two solves the problem.
Are you willing to submit a PR?
The text was updated successfully, but these errors were encountered: