Bug #16192 | Deadlock | ||
---|---|---|---|
Submitted: | 4 Jan 2006 16:04 | Modified: | 31 Mar 2014 10:46 |
Reporter: | Arnaud de La Sudrie | Email Updates: | |
Status: | Duplicate | Impact on me: | |
Category: | Connector / J | Severity: | S1 (Critical) |
Version: | mysql-connector-java-5.0-nightly-200512 | OS: | Linux (linux) |
Assigned to: | Assigned Account | CPU Architecture: | Any |
[4 Jan 2006 16:04]
Arnaud de La Sudrie
[12 Jan 2006 15:27]
Mark Matthews
From your stack trace, it looks like your application (or the container) is trying to close a result set (by closing the connection) that it is also reading from (via .getInt()) at the same time. Those methods on ResultSet are synchronized, so there's a chance the deadlock _might_ be happening in your container. Other than the low max_active_time, can you determine if there's another reason the container would be attempting to close the connection before your application is done using it?
[13 Feb 2006 0:01]
Bugs System
No feedback was provided for this bug for over a month, so it is being suspended automatically. If you are able to provide the information that was originally requested, please do so and change the status of the bug back to "Open".
[31 Mar 2014 10:46]
Alexander Soklakov
Duplicate of Bug#18719.