Does Quarkus support running GRPC on virtual threads? #32327
-
I noticed that Quarkus provides documentation and support for virtual threads in HTTP handlers, but I haven't been able to find any information on gRPC. Does Quarkus currently support running gRPC on virtual threads? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
/cc @alesj (grpc), @cescoffier (grpc) |
Beta Was this translation helpful? Give feedback.
-
Let me add more details. We needed to wait for the new server and client so we have more control on how calls are handled. With the original one we would have pinned the carrier thread. So, we can now make progress on the subject. |
Beta Was this translation helpful? Give feedback.
Let me add more details. We needed to wait for the new server and client so we have more control on how calls are handled. With the original one we would have pinned the carrier thread.
So, we can now make progress on the subject.