JdbcCoordinatorImpl logs excessive HHH000387 warnings when used with some connection pools
Description
Activity

Brett MeyerAugust 5, 2013 at 3:03 PM
, not positive, but ResultSets could potentially be wrapped as well. Open a new JIRA with details/context?

SarahJuly 26, 2013 at 7:05 PM
Forgive me, it appears our issue was with a near identical log but not the same issue "JdbcCoordinatorImpl - HHH000386: ResultSet had no statement associated with it, but was not yet registered". It does appear that the log issue above has been resolved in 4.2.3. Is there a chance that the log "JdbcCoordinatorImpl - HHH000386: ResultSet had no statement associated with it, but was not yet registered" will be switched to a debug level at some point? Or is it abnormal to be seeing that log repeatedly?

SarahJuly 26, 2013 at 7:00 PM
We have updated our Hibernate version to 4.2.3.Final and are still seeing this log at the WARN level in our log files. Did the fix possibly not make it into the 4.2.3 release?

Brett MeyerJuly 8, 2013 at 2:14 PM
, I understand your point and agree that under some circumstances (custom JDBC wrappers, etc.), a warning might be useful during development. But in my opinion, there are more situations where JDBC drivers and connection pools cause the excessiveness. It's the usual balancing act, and here I think DEBUG is the most appropriate. If many others think otherwise, keep up the discussion.

Sean FlaniganJuly 5, 2013 at 5:01 AM
Isn't this log message an indicator that JdbcCoordinatorImpl's HashMap "xref" may be retaining ResultSets and Statements which should have been removed (ie a memory leak)? I think this log message does deserve to be a warning, but it might be better to log it only once per session. If I am correct about the memory leak, the wording of the message should probably be more emphatic and more helpful too!
I encountered this warning when using a JDBC wrapper which returned unwrapped Statements from ResultSet.getStatement(), even though the ResultSet was created via a wrapped Statement. The fix was for the JDBC wrapper to ensure ResultSet.getStatement() returns the wrapped Statement. Without the warning message, I wouldn't have known there was a problem until much later. See http://stackoverflow.com/a/17480927/14379
Details
Assignee
Brett MeyerBrett MeyerReporter
Antti LampinenAntti LampinenFix versions
Affects versions
Priority
Minor
Details
Details
Assignee

Reporter

org.hibernate.engine.jdbc.internal.JdbcCoordinatorImpl logs "HHH000387: ResultSet's statement was not registered" warnings if it can't find the matching statement for ResultSet. This happens e.g. when connection pool wraps underlying JDBC driver's Statement class with its own Statement proxy. This results in a warning message for each ResultSet. I'm not sure if this causes any behavioral problems other than excessive logging.
At least BoneCP connection pool exhibits this behavior.