面试题:数据库连接池原理详解与自定义连接池实现

Posted Java技术前线

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了面试题:数据库连接池原理详解与自定义连接池实现相关的知识,希望对你有一定的参考价值。

与你一起成长~



数据库连接池在初始化时将创建一定数量的数据库连接放到连接池中,这些数据库连接的数量是由最小数据库连接数制约。无论这些数据库连接是否被使用,连接池都将一直保证至少拥有这么多的连接数量。连接池的最大数据库连接数量限定了这个连接池能占有的最大连接数,当应用程序向连接池请求的连接数超过最大连接数量时,这些请求将被加入到等待队列中。

连接池基本的思想是在系统初始化的时候,将数据库连接作为对象存储在内存中,当用户需要访问数据库时,并非建立一个新的连接,而是从连接池中取出一个已建立的空闲连接对象。使用完毕后,用户也并非将连接关闭,而是将连接放回连接池中,以供下一个请求访问使用。而连接的建立、断开都由连接池自身来管理。同时,还可以通过设置连接池的参数来控制连接池中的初始连接数、连接的上下限数以及每个连接的最大使用次数、最大空闲时间等等。也可以通过其自身的管理机制来监视数据库连接的数量、使用情况等。

注意事项

  • 1、数据库连接池的最小连接数是连接池一直保持的数据库连接,所以如果应用程序对数据库连接的使用量不大,将会有大量的数据库连接资源被浪费。

  • 2、数据库连接池的最大连接数是连接池能申请的最大连接数,如果数据库连接请求超过此数,后面的数据库连接请求将被加入到等待队列中,这会影响之后的数据库操作。

  • 3、最大连接数具体值要看系统的访问量.要经过不断测试取一个平衡值

  • 4、隔一段时间对连接池进行检测,发现小于最小连接数的则补充相应数量的新连接

  • 5、最小连接数与最大连接数差距,最小连接数与最大连接数相差太大,那么最先的连接请求将会获利,之后超过最小连接数量的连接请求等价于建立一个新的数据库连接。不过,这些大于最小连接数的数据库连接在使用完不会马上被释放,它将被放到连接池中等待重复使用或是空闲超时后被释放。

数据库连接池配置属性

目前数据库连接池种类繁多,不同种类基本的配置属性大同小异,例如c3p0、Proxool、DDConnectionBroker、DBPool、XAPool、Druid、dbcp,这里我们以dbcp为例说说主要的配置项:

 
   
   
 
  1. #最大连接数量:连接池在同一时间能够分配的最大活动连接的数量,,如果设置为非正数则表示不限制,默认值8

  2. maxActive=15

  3. #最小空闲连接:连接池中容许保持空闲状态的最小连接数量,低于这个数量将创建新的连接,如果设置为0则不创建,默认值0

  4. minIdle=5

  5. #最大空闲连接:连接池中容许保持空闲状态的最大连接数量,超过的空闲连接将被释放,如果设置为负数表示不限制,默认值8

  6. maxIdle=10

  7. #初始化连接数:连接池启动时创建的初始化连接数量,默认值0

  8. initialSize=5

  9. #连接被泄露时是否打印

  10. logAbandoned=true

  11. #是否自动回收超时连接

  12. removeAbandoned=true

  13. #超时时间(以秒数为单位)

  14. removeAbandonedTimeout=180

  15. # 最大等待时间:当没有可用连接时,连接池等待连接被归还的最大时间(以毫秒计数),超过时间则抛出异常,如果设置为-1表示无限等待,默认值无限

  16. maxWait=3000

  17. #在空闲连接回收器线程运行期间休眠的时间值(以毫秒为单位).

  18. timeBetweenEvictionRunsMillis=10000

  19. #在每次空闲连接回收器线程(如果有)运行时检查的连接数量

  20. numTestsPerEvictionRun=8

  21. #连接在池中保持空闲而不被空闲连接回收器线程

  22. minEvictableIdleTimeMillis=10000

  23. #用来验证从连接池取出的连接

  24. validationQuery=SELECT 1

  25. #指明是否在从池中取出连接前进行检验

  26. testOnBorrow=true

  27. #testOnReturn false 指明是否在归还到池中前进行检验

  28. testOnReturn=true

  29. #设置为true后如果要生效,validationQuery参数必须设置为非空字符串

  30. testWhileIdle

自定义数据库连接池示例

首先看一下连接池的定义。它通过构造函数初始化连接的最大上限,通过一个双向队列来维护连接,调用方需要先调用fetchConnection(long)方法来指定在多少毫秒内超时获取连接,当连接使用完成后,需要调用releaseConnection(Connection)方法将连接放回线程池

 
   
   
 
  1. public class ConnectionPool {

  2. private LinkedList<Connection> pool = new LinkedList<Connection>();


  3. /**

  4. * 初始化连接池的大小

  5. * @param initialSize

  6. */

  7. public ConnectionPool(int initialSize) {

  8. if (initialSize > 0) {

  9. for (int i = 0; i < initialSize; i++) {

  10. pool.addLast(ConnectionDriver.createConnection());

  11. }

  12. }

  13. }


  14. /**

  15. * 释放连接,放回到连接池

  16. * @param connection

  17. */

  18. public void releaseConnection(Connection connection){

  19. if(connection != null){

  20. synchronized (pool) {

  21. // 连接释放后需要进行通知,这样其他消费者能够感知到连接池中已经归还了一个连接

  22. pool.addLast(connection);

  23. pool.notifyAll();

  24. }

  25. }

  26. }


  27. /**

  28. * 在mills内无法获取到连接,将会返回null

  29. * @param mills

  30. * @return

  31. * @throws InterruptedException

  32. */

  33. public Connection fetchConnection(long mills) throws InterruptedException{

  34. synchronized (pool) {

  35. // 无限制等待

  36. if (mills <= 0) {

  37. while (pool.isEmpty()) {

  38. pool.wait();

  39. }

  40. return pool.removeFirst();

  41. }else{

  42. long future = System.currentTimeMillis() + mills;

  43. long remaining = mills;

  44. while (pool.isEmpty() && remaining > 0) {

  45. // 等待超时

  46. pool.wait(remaining);

  47. remaining = future - System.currentTimeMillis();

  48. }

  49. Connection result = null;

  50. if (!pool.isEmpty()) {

  51. result = pool.removeFirst();

  52. }

  53. return result;

  54. }

  55. }

  56. }

  57. }

由于java.sql.Connection是一个接口,最终的实现是由数据库驱动提供方来实现的,考虑到只是个示例,我们通过动态代理构造了一个Connection,该Connection的代理实现仅仅是在commit()方法调用时休眠100毫秒

 
   
   
 
  1. public class ConnectionDriver {

  2. static class ConnectionHandler implements InvocationHandler{

  3. @Override

  4. public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {

  5. if(method.equals("commit")){

  6. TimeUnit.MILLISECONDS.sleep(100);

  7. }

  8. return null;

  9. }

  10. }


  11. /**

  12. * 创建一个Connection的代理,在commit时休眠100毫秒

  13. * @return

  14. */

  15. public static final Connection createConnection(){

  16. return (Connection) Proxy.newProxyInstance(ConnectionDriver.class.getClassLoader(),

  17. new Class[] { Connection.class },new ConnectionHandler());

  18. }

  19. }

下面通过一个示例来测试简易数据库连接池的工作情况,模拟客户端ConnectionRunner获取、使用、最后释放连接的过程,当它使用时连接将会增加获取到连接的数量,反之,将会增加未获取到连接的数量

 
   
   
 
  1. public class ConnectionPoolTest {

  2. static ConnectionPool pool = new ConnectionPool(10);

  3. // 保证所有ConnectionRunner能够同时开始

  4. static CountDownLatch start = new CountDownLatch(1);

  5. // main线程将会等待所有ConnectionRunner结束后才能继续执行

  6. static CountDownLatch end;

  7. public static void main(String[] args) {

  8. // 线程数量,可以修改线程数量进行观察

  9. int threadCount = 10;

  10. end = new CountDownLatch(threadCount);

  11. int count = 20;

  12. AtomicInteger got = new AtomicInteger();

  13. AtomicInteger notGot = new AtomicInteger();

  14. for (int i = 0; i < threadCount; i++) {

  15. Thread thread = new Thread(new ConnetionRunner(count, got, notGot), "ConnectionRunnerThread");

  16. thread.start();

  17. }

  18. start.countDown();

  19. try {

  20. end.await();

  21. } catch (InterruptedException e) {

  22. e.printStackTrace();

  23. }

  24. System.out.println("total invoke: " + (threadCount * count));

  25. System.out.println("got connection: " + got);

  26. System.out.println("not got connection " + notGot);

  27. }


  28. static class ConnetionRunner implements Runnable {


  29. int count;

  30. AtomicInteger got;

  31. AtomicInteger notGot;

  32. public ConnetionRunner(int count, AtomicInteger got, AtomicInteger notGot) {

  33. this.count = count;

  34. this.got = got;

  35. this.notGot = notGot;

  36. }

  37. @Override

  38. public void run() {

  39. try {

  40. start.await();

  41. } catch (Exception ex) {

  42. }

  43. while (count > 0) {

  44. try {

  45. // 从线程池中获取连接,如果1000ms内无法获取到,将会返回null

  46. // 分别统计连接获取的数量got和未获取到的数量notGot

  47. Connection connection = pool.fetchConnection(1);

  48. if (connection != null) {

  49. try {

  50. connection.createStatement();

  51. connection.commit();

  52. } finally {

  53. pool.releaseConnection(connection);

  54. got.incrementAndGet();

  55. }

  56. } else {

  57. notGot.incrementAndGet();

  58. }

  59. } catch (Exception ex) {

  60. } finally {

  61. count--;

  62. }

  63. }

  64. end.countDown();

  65. }


  66. }


  67. }

CountDownLatch类是一个同步计数器,构造时传入int参数,该参数就是计数器的初始值,每调用一次countDown()方法,计数器减1,计数器大于0 时,await()方法会阻塞程序继续执行CountDownLatch如其所写,是一个倒计数的锁存器,当计数减至0时触发特定的事件。利用这种特性,可以让主线程等待子线程的结束。这这里保证让所有的ConnetionRunner 都执行完再执行main进行打印。

运行结果:20个客户端

 
   
   
 
  1. total invoke: 200

  2. got connection: 200

  3. not got connection 0

50个客户端

 
   
   
 
  1. total invoke: 1000

  2. got connection: 999

  3. not got connection 1

在资源一定的情况下(连接池中的10个连接),随着客户端线程的逐步增加,客户端出现超时无法获取连接的比率不断升高。虽然客户端线程在这种超时获取的模式下会出现连接无法获取的情况,但是它能够保证客户端线程不会一直挂在连接获取的操作上,而是“按时”返回,并告知客户端连接获取出现问题,是系统的一种自我保护机制。数据库连接池的设计也可以复用到其他的资源获取的场景,针对昂贵资源(比如数据库连接)的获取都应该加以超时限制。

- end -


用心分享面试知识,做有温度的攻城狮

每天记得对自己说:你是最棒的!



往期推荐:

888G面试资源



                     每一个“好看”,都是对我们最大的肯定!

以上是关于面试题:数据库连接池原理详解与自定义连接池实现的主要内容,如果未能解决你的问题,请参考以下文章

Java中数据库连接池原理机制详解面试+提高

JUC并发编程线程池及相关面试题 详解

JDBC连接与自定义线程池

面试官:了解数据库连接池吗?

Java开发环境!java数据库连接池面试题

连接池的基本原理? 以及使用连接池的好处?