Replies: 1 comment
-
May I add to the question: Is it possible to have the Virtual Thread logged in logging statements? Currently log output shows empty
|
Beta Was this translation helpful? Give feedback.
0 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.
-
I've been doing some research and analysis of various scenarios on Quarkus 2.14 with JDK 19 and virtual threads. I've come across the fact that a RestEasy Reactive endpoint with @RunOnVirtualThread uses a virtual thread, whereas if it also has @transactional then a platform thread is used. Is this intentional due to the assumption there will be pinning or a bug? I don't see this mentioned anywhere.
Then a second question - I assume that Netty (and VertX) are still using normal platform threads for the event loops and the RestEasy Reactive Loom support is more around whether the executor pool for blocking calls uses virtual or platform threads? Is that right?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions