Fine-Tuning Tomcat 8 JDBC Connection Pool


๐ง 1. Right-Size maxActive
Description: Maximum number of active connections in the pool.
๐ Issue: Too low = connection starvation. Too high = DB overload.
โ Recommendation:
maxActive="100"
๐ Tomcat 8 Docs - maxActive
โฑ 2. Set a Sensible maxWait
Description: How long (in ms) to wait for a connection before throwing an exception.
๐ Issue: Low value = frequent timeouts under load.
โ Recommendation:
maxWait="10000"
โ
3. Avoid Stale Connections with validationQuery
, testOnBorrow
, and validationInterval
Description: Checks that a DB connection is valid before returning it to the app.
๐ Issue: Stale connections lead to failed transactions.
โ Recommendation:
testOnBorrow="true"
validationQuery="SELECT 1"
validationInterval="30000"
๐ Tomcat 8 Docs - validationQuery & testOnBorrow
๐ค 4. Manage Idle Connections with minIdle
, maxIdle
, timeBetweenEvictionRunsMillis
, minEvictableIdleTimeMillis
Description: Controls idle connection cleanup to avoid leaks and unnecessary DB usage.
โ Recommendation:
minIdle="10"
maxIdle="30"
timeBetweenEvictionRunsMillis="30000"
minEvictableIdleTimeMillis="60000"
๐ Tomcat 8 Docs - Idle Connection Settings
Subscribe to my newsletter
Read articles from DataOps Labs directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by

DataOps Labs
DataOps Labs
I'm Ayyanar Jeyakrishnan ; aka AJ. With over 18 years in IT, I'm a passionate Multi-Cloud Architect specialising in crafting scalable and efficient cloud solutions. I've successfully designed and implemented multi-cloud architectures for diverse organisations, harnessing AWS, Azure, and GCP. My track record includes delivering Machine Learning and Data Platform projects with a focus on high availability, security, and scalability. I'm a proponent of DevOps and MLOps methodologies, accelerating development and deployment. I actively engage with the tech community, sharing knowledge in sessions, conferences, and mentoring programs. Constantly learning and pursuing certifications, I provide cutting-edge solutions to drive success in the evolving cloud and AI/ML landscape.