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
When sending multiple messages in a rebus transaction, it takes a lot of time to confirm each message individually. Since we are reusing the same IModel from the current transaction, it should be safe to confirm all messages in one go. The performance difference when running inside a rebus transaction is huge.
Batch confirms is also recommended from the RabbitMQ webside due to performance and latency.
I extended the current performance tests to also run in transaction to be able to compare side by side.
The text was updated successfully, but these errors were encountered:
When sending multiple messages in a rebus transaction, it takes a lot of time to confirm each message individually. Since we are reusing the same IModel from the current transaction, it should be safe to confirm all messages in one go. The performance difference when running inside a rebus transaction is huge.
Batch confirms is also recommended from the RabbitMQ webside due to performance and latency.
I extended the current performance tests to also run in transaction to be able to compare side by side.
The text was updated successfully, but these errors were encountered: