You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Your example is single-threaded, and if you change it to multi-threaded, you will have a lock race. When executing the CachingConnectionFactory findOpenChannel method, a lock wait will occur, and the greater the concurrency, the longer the wait
The text was updated successfully, but these errors were encountered:
and
When I remove the
transaction-size
property (so we send an ack per message), I got 17,500/sec.When I used the native consumer, I got very similar results (17k/sec).
So there must be something else going on in your code.
Originally posted by @garyrussell in #644 (comment)
Your example is single-threaded, and if you change it to multi-threaded, you will have a lock race. When executing the CachingConnectionFactory findOpenChannel method, a lock wait will occur, and the greater the concurrency, the longer the wait
The text was updated successfully, but these errors were encountered: