在玩ExpressJS时,我发现了一些特别之处。
如果应用程序正在关闭,我正在尝试关闭所有数据库连接。 但是我注意到,即使在应用程序关闭后,端口8080也不会释放。我将不得不手动查找持有端口的进程的ID并杀死它。
很明显,我要么不放弃数据库连接,要么存在某种类型的连接泄漏。但是我不确定是什么真正导致了问题。
我的代码- index.js
const express = require('express'),
app = express(),
db = require('./db'),
port = process.env.PORT || 8080;
// Commenting out this portion of the code makes the problem go away.
// But I would Like to keep it so I can close all open database connections
// before the application is closed
process.on('SIGINT',function(){
console.log('Closing database pool');
db.pool.end();
});
routes(app);
app.listen(port);
console.log(`API Server started on localhost:${port}`);
db.js
const config = require('./config'),
mysql = require('mysql');
exports.pool = mysql.createPool(config.mysql);
使用的数据库是AWS RDS上托管的MySQL
关键问题:
即使关闭应用程序,端口也不会释放。
是否存在连接泄漏等?我是否应该做更多的事情来更有效地处理数据库连接?
是否有更好的方法来处理应用程序崩溃或关闭的情况,并处理所有打开的连接并安全地失败?
答案 0 :(得分:1)
尝试一下
// assign result of listen()
const server = app.listen(port);
// then in your SIGINT handler do this
server.close()