当我使用节点mysql时,在服务器关闭TCP连接的12:00到2:00之间会出现错误。这是完整的信息:
Error: Connection lost: The server closed the connection.
at Protocol.end (/opt/node-v0.10.20-linux-x64/IM/node_modules/mysql/lib/protocol/Protocol.js:73:13)
at Socket.onend (stream.js:79:10)
at Socket.EventEmitter.emit (events.js:117:20)
at _stream_readable.js:920:16
at process._tickCallback (node.js:415:13)
有solution。但是,在我尝试这种方式后,问题也出现了。现在我不知道该怎么做。有没有人遇到这个问题?
以下是我按照解决方案编写的方式:
var handleKFDisconnect = function() {
kfdb.on('error', function(err) {
if (!err.fatal) {
return;
}
if (err.code !== 'PROTOCOL_CONNECTION_LOST') {
console.log("PROTOCOL_CONNECTION_LOST");
throw err;
}
log.error("The database is error:" + err.stack);
kfdb = mysql.createConnection(kf_config);
console.log("kfid");
console.log(kfdb);
handleKFDisconnect();
});
};
handleKFDisconnect();
答案 0 :(得分:122)
尝试使用this code来处理服务器断开连接:
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();
在您的代码中,我错过了connection = mysql.createConnection(db_config);
答案 1 :(得分:38)
我不记得这个机制的原始用例。如今,我想不出任何有效的用例。
您的客户端应该能够检测到连接丢失的时间并允许您重新创建连接。如果使用相同的连接执行部分程序逻辑很重要,那么使用事务。
TL;博士;不要使用这种方法。
一个实用的解决方案是强制MySQL保持连接存活:
setInterval(function () {
db.query('SELECT 1');
}, 5000);
我更喜欢这种解决方案来连接池和处理断开连接,因为它不需要以了解连接存在的方式构建代码。每5秒进行一次查询可确保连接保持活动状态,并且PROTOCOL_CONNECTION_LOST
不会发生。
此外,此方法可确保保持相同的连接,而不是重新连接。这个很重要。考虑如果您的脚本依赖于LAST_INSERT_ID()
并且mysql连接已被重置而您没有意识到它会发生什么?
但是,这只能确保不会发生连接超时(wait_timeout
和interactive_timeout
)。正如所料,它将在所有其他情况下失败。因此,请务必处理其他错误。
答案 2 :(得分:4)
更好的解决方案是使用池-不适为您处理。
const pool = mysql.createPool({
host: 'localhost',
user: '--',
database: '---',
password: '----'
});
// ... later
pool.query('select 1 + 1', (err, rows) => { /* */ });
答案 3 :(得分:3)
要模拟已断开的连接,请尝试
connection.destroy();
此处提供更多信息:https://github.com/felixge/node-mysql/blob/master/Readme.md#terminating-connections
答案 4 :(得分:1)
创建和销毁每个查询中的连接可能很复杂,当我决定安装MariaDB而不是MySQL时,我对服务器迁移感到头疼。由于某种原因,在文件etc / my.cnf中,参数wait_timeout的默认值为10秒(这导致无法实现持久性)。然后,将解决方案设置为28800,即8小时。好吧,我希望能帮助这个“güevonada”的人......请原谅我的英语不好。
答案 5 :(得分:0)
该模块不是一一创建和管理连接,而是使用 mysql.createPool(config) 提供内置连接池。
var mysql = require('mysql');
var pool = mysql.createPool({
connectionLimit : 10,
host : 'example.org',
user : 'bob',
password : 'secret',
database : 'my_db'
});
pool.query('SELECT 1 + 1 AS solution', function (error, results, fields) {
if (error) throw error;
console.log('The solution is: ', results[0].solution);
});
这是 pool.getConnection() -> connection.query() -> connection.release() 代码流的快捷方式。使用 pool.getConnection() 有助于为后续查询共享连接状态。这是因为对 pool.query() 的两次调用可能使用两个不同的连接并并行运行。