Instructions for using the database connection pool Druid

Instructions for using the database connection pool Druid

Replace it with the optimal database connection pool based on comprehensive performance, reliability, stability, scalability, ease of use and other factors.

Druid:druid-1.0.29

Database Mysql.5.6.17

Replacement target: Replace C3P0 with druid

Replacement reason:

1. In terms of performance, hikariCP>druid>tomcat-jdbc>dbcp>c3p0. The high performance of hikariCP is due to the maximum avoidance of lock contention.

2. Druid has the most comprehensive functions, including SQL interception and other functions, and has relatively comprehensive statistical data and good scalability.

3. In terms of comprehensive performance and scalability, you can consider using druid or hikariCP connection pool, which is more convenient for monitoring and tracking jdbc interfaces.

4. You can enable prepareStatement cache, which will improve performance by about 20%.

psCache is private to the connection, so there is no thread contention problem. Enabling pscache will not cause performance loss due to contention.

The key of psCache is the SQL and catalog executed by prepare, and the value corresponds to the prepareStatement object. Enabling caching mainly reduces the overhead of parsing SQL.

5. 3p0 has a long history, and its code is extremely complex, which is not conducive to maintenance. And there is a potential risk of deadlock.

6. Druid can print SQL and slow query logs

Druid Parameters

Configuration parameters Default value Game server settings value Parameter Description
initialSize 0 4 Initialize the number of connections
minIdle 0 4 Minimum number of idle connections
maxActive 8 8 Maximum number of concurrent connections
maxWait -1L 60000 The maximum waiting time when acquiring a connection, in milliseconds. After configuring maxWait,
By default, fair locks are enabled, which will reduce the concurrency efficiency.
If necessary, you can use unfair locks by configuring the useUnfairLock property to true.
timeBetweenEvictionRunsMillis 60000 60000 Configure the interval for checking whether idle connections need to be closed, in milliseconds.
The Destroy thread will detect the connection interval
minEvictableIdleTimeMillis 1800000 1800000 Configure the minimum survival time of a connection in the pool in milliseconds
validationQuery null select 1 SQL used to detect whether the connection is valid. It is required to be a query statement
testOnBorrow FALSE FALSE When applying for a connection, execute validationQuery to check whether the connection is valid. Doing this configuration will reduce performance.
testOnReturn FALSE FALSE When returning a connection, execute validationQuery to check whether the connection is valid. Doing this configuration will reduce performance
testWhileIdle TRUE TRUE It is recommended to configure it to true, which does not affect performance and ensures security. When applying for a connection, if the idle time is greater than timeBetweenEvictionRunsMillis, execute validationQuery to check whether the connection is valid.
poolPreparedStatements FALSE TRUE false Whether to cache preparedStatement, that is, PSCache.
PSCache greatly improves the performance of databases that support cursors, such as Oracle.
There is no PSCache function in versions below MySQL 5.5, so it is recommended to turn it off.
Versions 5.5 and above have PSCache, and it is recommended to enable it.
maxPoolPreparedStatementPerConnectionSize 10 100 To enable PSCache, you must configure it to be greater than 0. When it is greater than 0,
poolPreparedStatements automatically triggers the change to true.
A single connection has its own statement cache, which means that maxOpenPreparedStatements is for a single connection.

How it works:

The database connection pool will create initialSize connections during initialization, and when there is a database operation, a connection will be taken out of the pool. If the number of connections currently in use in the pool is equal to maxActive, it will wait for a while, waiting for other operations to release a connection. If the waiting time exceeds maxWait, an error will be reported; if the number of connections currently in use does not reach maxActive, it will determine whether there is an idle connection. If there is, the idle connection will be used directly. If not, a new connection will be established. After the connection is used, instead of closing its physical connection, it is put into the pool and waits for reuse by other operations. At the same time, there is a mechanism inside the connection pool to determine if the current total number of connections is less than miniIdle, a new idle connection will be established to ensure that the number of connections is miniIdle. If a connection in the current connection pool is still not used after being idle for timeBetweenEvictionRunsMillis time, it will be physically closed. Some database connections have timeout limits (MySQL connections are disconnected after 8 hours), or the connection pool connection may become invalid due to network interruptions and other reasons. In this case, setting a testWhileIdle parameter to true can ensure that the connection pool periodically detects the availability of connections. Unavailable connections will be discarded or rebuilt, and the Connection object obtained from the connection pool is guaranteed to be available in the best case. Of course, to ensure absolute availability, you can also use testOnBorrow to be true (that is, check the availability of the Connection object when obtaining it), but this will affect performance.

If you want to perform SQL monitoring, you can add the following code:

Log4j2Filter log4j2 = new Log4j2Filter(); 
log4j2.setResultSetLogEnabled(false); 
log4j2.setStatementSqlPrettyFormat(false); 
log4j2.setStatementExecutableSqlLogEnable(true); 
 
log4j2.setDataSourceLogEnabled(false); 
log4j2.setConnectionLogEnabled(false); 
log4j2.setStatementLogEnabled(false); 
log4j2.setResultSetLogEnabled(false); 
ret.setProxyFilters(Arrays.asList(log4j2));

Idle detection, connection creation, and abandoned connection cleanup are managed by these three threads

Daemon Thread [Abandoned connection cleanup thread] 
Daemon Thread [Druid-ConnectionPool-Create-1184124073] 
Daemon Thread [Druid-ConnectionPool-Destroy-1184124073]

Summarize

The above is all the content of this article about the use of database connection pool Druid. I hope it will be helpful to everyone. Interested friends can refer to: Detailed Explanation of MySQL Prepare Principles and other related topics. If you have any questions, you can leave a message at any time and the editor will reply to you in time.

You may also be interested in:
  • Java development druid data connection pool maven simple configuration process example
  • Solution to online exceptions caused by Alibaba Druid data connection pool
  • Introduction to Java database connection pool Druid
  • Detailed configuration of database Alibaba connection pool druid
  • Spring Boot integrates Druid database connection pool
  • Example of implementing Druid data connection pool in Java

<<:  Detailed explanation of commonly used nginx rewrite rules

>>:  Detailed explanation of this pointing problem in JavaScript

Recommend

HTML 5 Reset Stylesheet

This CSS reset is modified based on Eric Meyers...

Detailed explanation of Vue's calculated properties

1. What is a calculated attribute? In plain words...

Detailed explanation of three methods of JS interception string

JS provides three methods for intercepting string...

uni-app WeChat applet authorization login implementation steps

Table of contents 1. Application and configuratio...

Detailed explanation of MySQL basic operations (Part 2)

Preface This article contains 1. Several major co...

js implements a simple calculator

Use native js to implement a simple calculator (w...

Practical record of Vue3 combined with TypeScript project development

Table of contents Overview 1. Compositon API 1. W...

MySQL 5.7.21 winx64 installation and configuration method graphic tutorial

This article summarizes the notes for installing ...

Tutorial on using the frameset tag in HTML

Frameset pages are somewhat different from ordina...

Summary of common tool functions necessary for front-end development

1. Time formatting and other methods It is recomm...

Graphic tutorial for installing MySQL 5.6.35 on Windows 10 64-bit

1. Download MySQL Community Server 5.6.35 Downloa...

CenterOS7 installation and configuration environment jdk1.8 tutorial

1. Uninstall the JDK that comes with centeros fir...

Detailed explanation of mysql deadlock checking and deadlock removal examples

1. Query process show processlist 2. Query the co...