Thread with Smallrye Messaging #34113
Unanswered
antoinechamot
asked this question in
Q&A
Replies: 2 comments 3 replies
-
/cc @Ladicek (smallrye), @jmartisk (smallrye), @phillip-kruger (smallrye), @radcortez (smallrye) |
Beta Was this translation helpful? Give feedback.
0 replies
-
Using the Vert.x worker threads allow us to do context propagation. What we can do is add a config property like |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I have a message consumer like this one in Quarkus that consume messages in a queue :
With associated configuration in application.properties :
This works well : A vertex worker thread consume my messages. But the problem occurs when my blocking process exceed 60s i get this warning :
In order to avoid that i would replace the vertex worker thread used by smallrye by a regular thread pool that has no time limitation for example something like Executors.newFixedThreadPool(3).
Is it possible to do so ? If yes how ?
Beta Was this translation helpful? Give feedback.
All reactions