-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
MdcPropagationContext throwing ArrayIndexOutOfBoundsException under high TPS #11639
Comments
At least post a full stacktrace. |
Here is the stack trace of the two exceptions being thrown.
|
Looks like log4j bug. Can you try to use logback? |
Expected Behavior
No response
Actual Behaviour
We are using Micronaut
MdcPropagationContext
for our propagation context. We are initializing it and propagating it in the first server filter.We also update this by adding new key-value pairs and also update the existing ones from multiple places mentioned below.
Our application has multiple declarative API clients to make calls to integrations and we are updating only a single key in the HttpClientFilter. So, when multiple integration calls are made, the same key will be updated by multiple filters within a single server request to the API.
This works perfectly fine under low TPS. But, when the application is subjected to high TPS, we are seeing a strange behavior where in it is throwing
java.lang.ArrayIndexOutOfBoundsException: Index 21 out of bounds for length 21
.But, When we moved updating that particular key's value in the
MdcPropagationContext
from the HttpClientFilter to the HttpServerFilter, we did not see any exception thrown.We suspected this could be a race condition and also tried making the update of the key's value in the MdcPropagationContext a synchronized operation, but we still observe the same behavior.
We would definitely appreciate any help to find out what is causing the issue and how to fix it.
Steps To Reproduce
No response
Environment Information
No response
Example Application
No response
Version
4.7.5
The text was updated successfully, but these errors were encountered: