节点MySQL连接池-等待数据库启动

时间:2020-01-15 20:35:48

标签: mysql node.js connection-pooling

如何检查MySQL数据库是否已准备好从Node MySQL连接池进行某些查询?

我有一个由您的容器组成的Docker环境:

  • 容器1:Web服务器
  • 容器2:api
  • 容器3:数据库

数据库容器运行一个MySQL数据库。 api容器连接到该数据库。所有三个容器同时启动。 Web服务器容器在0.5秒后启动。 api容器在2秒后启动。 20秒后数据库服务器启动。

当前,api会在数据库启动并运行之前尝试访问数据库的表。这会导致诸如连接被拒绝之类的错误。以下代码段始终以消息“错误查询数据库!”结尾。当MySQL数据库尚未启动时:

const sql: string = 'SELECT * FROM sometable;';
MySQL.createPool({
    connectionLimit: 10,
    acquireTimeout: 30000,
    waitForConnections: true,
    database: 'mydatabase',
    host: 'localhost',
    multipleStatements: true,
    password: 'mypassword',
    user: 'root',
}).query(sql, (err, result) => {
    if (result) {
        console.log('Successfully queried database.');
    } else {
        console.log('Error querying database!');
    }
});

使用的版本:

OS: Ubuntu 19.10
Node: v13.6.0
MySQL (Node API): "@types/mysql": "2.15.8" and "mysql": "2.17.1"
MySQL (Docker Database): mysql:5.7.28
TypeScript: 3.7.4

我想从api中检查(并等待)数据库的就绪状态,可能使用我用于查询的连接池。有可能吗?

3 个答案:

答案 0 :(得分:1)

尝试与setTimeout()连接:

(用Javascript而不是打字稿回答)

'use strict';

const dbpool = require('mysql').createPool({
    connectionLimit: 10,
    acquireTimeout: 30000,
    waitForConnections: true,
    database: 'mydatabase',
    host: 'localhost',
    multipleStatements: true,
    password: 'mypassword',
    user: 'root',
});

const sql = 'SELECT * FROM sometable;';

const attemptConnection = () =>
  dbpool.getConnection((err, connection) => {
  if (err) {
    console.log('error connecting. retrying in 1 sec');
    setTimeout(attemptConnection, 1000);
  } else {
    connection.query(sql, (errQuery, results) => {
      connection.release();
      if (errQuery) {
        console.log('Error querying database!');
      } else {
        console.log('Successfully queried database.');
      }
    });
  }
});

attemptConnection();

这是我的测试运行:

$ sudo service mysql stop; node test.js & sudo service mysql start
[1] 24737
error connecting. retrying in 1 sec
error connecting. retrying in 1 sec
$ Successfully queried database.

仅供参考,该程序永远不会结束,因为它需要dbpool.end();

答案 1 :(得分:0)

您的API应该尝试以超时和一定的连接尝试阈值连接到数据库。但是,有针对这种情况的现成解决方案。

尝试使用wait-for-mysql模块。

waitForMy = require 'wait-for-mysql'
config =
  username: user
  password: pass
  quiet: true
  query: 'SELECT 1'

waitForMy.wait(config)

答案 2 :(得分:0)

这里您有一个变种,但不需要mysql池。我在服务器上使用它,它确实起作用:

class MyMongoDatastore extends MongoDatastore{ 

      here the override methods and property

}