tomcat - Connection Pool Empty Hibernate 4, but Unable to Find the Culprit -


i'm monitoring sql database connections every 5 minutes. days it'll hover around 5 connections (my idle) i'm @ 50. recursive issue because can't see why jump 5 50 within 5 minutes 0 traffic.

i'm using hibernate 4 , tomcat , know of issue in hibernate patched in 4.3.2, i'm on 4.3.5

more details: pool empty event happens every day @ 7:13:20pm... sounds automatic. using quartz , runs every 1 minute, can't see how they're related.

my properties:

jmxenabled = true initialsize = 5 maxactive = 50 minidle = 5 maxidle = 25 maxwait = 10000 maxage = 10 * 60000 timebetweenevictionrunsmillis = 5000 minevictableidletimemillis = 60000 validationquery = "select 1" validationquerytimeout = 3 validationinterval = 15000 testonborrow = true testwhileidle = true testonreturn = false jdbcinterceptors = "connectionstate" defaulttransactionisolation = java.sql.connection.transaction_read_committed 

environment:

  • tomcat 7.0.59
  • java 1.7.0 update 76
  • sql server 2012

more information: reduced quartz job frequency every 5 minutes. event still took place when loaded page/view in application. @ 7:14 pm. i'm on verge of downgrading hibernate 3.

update today reloaded application in tomcat manager @ 6:50 pm, event still took place. thread dump

ah kind of bugs fun. there no way can point exact culprint (except when digs bug in libs mentioned), lets see how can debug this. approximatly easy hard do, although details depend on environment.

  1. you have helpful information: problem happens @ same time. hints @ 2 options: either 1 of jobs run quartz eats connections, or (possible external) happening @ time causing code eat connections. should check job configurations , cron jobs or jobs configured inside database or similar potential culprits. note might start quite time earlier , arrive @ critical state later on, job might start 2hours earlier know.

  2. check logs , system logs , database logs happens @ time or time earlier.

  3. double check gets connection if returns connection. when exceptions thrown. 1 classical way fail @ construction (java pseudo code):

    connection con;  try {     con = getconnection();     statement = stmnt = con.createstatement();     .... } (exception ex){     if (stmnt != null) stmnt.close();     if (con != null) con.close(); // never happen if stmnt.close throws exceptions  } 
  4. establish logging let see when connection don't returned. start in application should go through kind of wrapper (aop around aspect, servlet filter or similar). wrapper should following: create unique id action (uuid) , put in mdc of logging framework. @ end of action id gets removed again. other logging should include id. wrap connection pool well. keep track on when requested connection, including timestamp, id , possibly stacktrace (by creating , storing exception). log that. every time connection gets returned log time used. every time connection gets requested check if connection used longer threshold.

  5. isolate things: set second server, run application. have same problem? run parts on 1 of 2 servers, still both have problem? continue exclude candidates until 1 left.


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -