-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thread blocked on JBossLoggingAccessLogReceiver #44779
Comments
There is also this stacktrace from time to time:
|
/cc @dmlloyd (logging) |
While logging does appear in this stack trace, it's not very likely that the thread itself is blocked in logging; more likely, it is logging as a part of some kind of operation that is blocking and should not be. Also the latter one seems like a real problem. Maybe the Vert.x context is getting messed up somehow? Is there any chance of providing a reproducer? |
@dmlloyd it would be very hard to extract a reproduce but I will try. In the meantime: our code is not using Vert.x directly. |
Ah, well it's possible then that the thread is blocking in GC and thus exceeding the max time threshold. The warning doesn't mean "blocked" per se, rather that too much time elapsed since an asynchronous task was submitted without it returning. |
My guess is that the machine is approaching its capacity under the given load so pretty much anything that is on the event loop could start causing these messages |
ok, I'm going to close this one then! |
👌 |
Describe the bug
From time to time, we have this exception in quarkus 3.15.1
with the following message:
and stacktrace:
I don't see anything pointing to our code in the stacktrace. I opened this issue to see if someone is already aware of the issue or root cause.
Expected behavior
No thread blocked
Actual behavior
The above stacktrace from time to time, especially under heavy load.
How to Reproduce?
It happens from time to time, especially during heavy load.
Output of
uname -a
orver
Linux api-blue-5f89f4b44f-pdtf2 5.14.0-284.88.1.el9_2.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Oct 4 11:09:23 EDT 2024 x86_64 x86_64 x86_64 GNU/Linux
Output of
java -version
OpenJDK 17.0.13
Quarkus version or git rev
3.15.1
Build tool (ie. output of
mvnw --version
orgradlew --version
)maven 3.3.2
Additional information
No response
The text was updated successfully, but these errors were encountered: