-
Hi
Is this something normal to ignore or is there any configuration that needs to be done ? Thanks for the help in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
It suggests that you have something that is blocking up a Vert.x event loop thread for a very long time. This is extremely bad for performance as Vert.x is based on the reactor model, and locking an event loop thread will block that reactor's entire handler queue until whatever is doing the blocking releases it. Effectively taking an entire core out of action for a while. It looks like you're doing something blocking with JMX in your policy perhaps? |
Beta Was this translation helpful? Give feedback.
It suggests that you have something that is blocking up a Vert.x event loop thread for a very long time.
This is extremely bad for performance as Vert.x is based on the reactor model, and locking an event loop thread will block that reactor's entire handler queue until whatever is doing the blocking releases it. Effectively taking an entire core out of action for a while.
It looks like you're doing something blocking with JMX in your policy perhaps?