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
Quote from the documentation:
With publisher confirms on the synchronous publish method will slow down significantly. If performance is a concern, you should consider using the PublishAsync method.
The text was updated successfully, but these errors were encountered:
When called IMessagingComponentFactory with SendMessageAsync
A call was made inside the library ViennaNET
which calls the method in the inside EeasyMQ
which makes this call
All this leads to the following result and suspending working the app:
Currently there is no way to call pure async method (PublishAsync) from the ViennaNET, what leads to starvation thread pool.
(https://docs.microsoft.com/en-us/archive/blogs/vancem/diagnosing-net-core-threadpool-starvation-with-perfview-why-my-service-is-not-saturating-all-cores-or-seems-to-stall)
Quote from the documentation:
With publisher confirms on the synchronous publish method will slow down significantly. If performance is a concern, you should consider using the PublishAsync method.
The text was updated successfully, but these errors were encountered: