mysql连接丢失错误nodejs

时间:2017-09-17 02:52:00

标签: mysql node.js

我使用下面的代码将我的节点连接到mysql,我正在我的项目中使用我的所有其他api; 我把它作为我所有查询请求的公共数据库连接文件。

var mysql = require('mysql');
var db_connect = (function () {
    function db_connect() {
        mysqlConnConfig = {
            host: "localhost",
            user: "username",
            password: "password",
            database: "db_name"
        };
    }
    db_connect.prototype.unitOfWork = function (sql) {
    mysqlConn = mysql.createConnection(mysqlConnConfig);
        try {
            sql(mysqlConn);
        } catch (ex) {

            console.error(ex);
        } finally {
            mysqlConn.end();
        }
    };
    return db_connect;
})();
exports.db_connect = db_connect;

上面的代码工作正常,我将使用我的查询在下面的所有其他API中使用'sql'执行,如下所示。

var query1 = "SELECT * FROM table1";
 sql.query(query1,function(error,response){
if(error){
    console.log(error);
}
else{
    console.log(response);
    }
 })
到目前为止一切顺利,但问题是我得到了sql协议连接错误 运行我的永久模块8-12小时后

forever start app.js

我正在使用上面的永久模块开始我的项目。 8-12小时后,我收到以下错误,我所有的休息api都无法正常工作或停机。

"stack": ["Error: Connection lost: The server closed the connection.", "    at Protocol.end (/path/to/my/file/node_modules/mysql/lib/protocol/Protocol.js:109:13)", "    at Socket.<anonymous> (/path/to/my/file/node_modules/mysql/lib/Connection.js:102:28)", "    at emitNone (events.js:72:20)", "    at Socket.emit (events.js:166:7)", "    at endReadableNT (_stream_readable.js:913:12)", "    at nextTickCallbackWith2Args (node.js:442:9)", "    at process._tickDomainCallback (node.js:397:17)"],
"level": "error",
"message": "uncaughtException: Connection lost: The server closed the connection.",
"timestamp": "2017-09-13T21:22:25.271Z"

然后我在我的研究中得到了一个解决方案来配置句柄断开,如下所示。 但我正在努力用我的代码配置我的sql连接,如下所示。

var db_config = {
  host: 'localhost',
    user: 'root',
    password: '',
    database: 'example'
};

var connection;

function handleDisconnect() {
  connection = mysql.createConnection(db_config); // Recreate the connection, since
                                                  // the old one cannot be reused.

  connection.connect(function(err) {              // The server is either down
    if(err) {                                     // or restarting (takes a while sometimes).
      console.log('error when connecting to db:', err);
      setTimeout(handleDisconnect, 2000); // We introduce a delay before attempting to reconnect,
    }                                     // to avoid a hot loop, and to allow our node script to
  });                                     // process asynchronous requests in the meantime.
                                          // If you're also serving http, display a 503 error.
  connection.on('error', function(err) {
    console.log('db error', err);
    if(err.code === 'PROTOCOL_CONNECTION_LOST') { // Connection to the MySQL server is usually
      handleDisconnect();                         // lost due to either server restart, or a
    } else {                                      // connnection idle timeout (the wait_timeout
      throw err;                                  // server variable configures this)
    }
  });
}

handleDisconnect();

有人可以帮助我用上面的代码改变我的代码吗?

2 个答案:

答案 0 :(得分:1)

SHOW SESSION VARIABLES LIKE '%wait_timeout';
SHOW GLOBAL  VARIABLES LIKE '%wait_timeout';

其中一个设定为28800(8小时)。增加它。

或者......抓住错误并重新连接。

或者......检查&#34;连接池&#34;在你的框架中处理。

但是......请注意,网络故障可能会发生。因此,简单地增加超时不会处理这样的故障。

或者......不要长时间挂在连接上。它不是很好玩。 可能导致超过max_connections

(抱歉,我不太了解您的应用程序,以便更明确地了解这些中要追求的那些。

<强> MAX_CONNECTIONS

...wait_timeoutmax_connections以笨拙的方式聚在一起。如果超时时间太长&#34;,则连接数量可能会持续增长,从而威胁到连接太多&#34;错误。在典型的设计中,最好降低超时时间,以防止客户端浪费地挂在连接上太长时间。

如果您的情况如此:&#34;固定数量的客户希望永远保持连接&#34;,然后增加超时,但 max_connections(至少不是远远超出固定数量的客户。)

但是,如果网络出现问题,连接可能会中断。所以,你仍然可以得到&#34;连接丢失&#34;。 (但是,如果一切都在同一台机器上,这是不太可能的。)

答案 1 :(得分:1)

我通过使用池连接解决了这个问题。以这种方式试试https://www.npmjs.com/package/mysql

&#13;
&#13;
var mysql = require('mysql');
var pool  = mysql.createPool(...);
 
pool.getConnection(function(err, connection) {
  // Use the connection 
  connection.query('SELECT something FROM sometable', function (error, results, fields) {
    // And done with the connection. 
    connection.release();
 
    // Handle error after the release. 
    if (error) throw error;
 
    // Don't use the connection here, it has been returned to the pool. 
  });
});
&#13;
&#13;
&#13;