前言
Node.js 程序运行在单进程上,应用开发时一个难免遇到的问题就是异常处理,对于一些未捕获的异常处理起来,也不是一件容易的事情。
未捕获异常的程序
下面展示了一段简单的应用程序,如下所示:
const http = require('http'); const PORT = 3000; const server = http.createServer((req, res) => { if (req.url === '/error') { a.b; res.end('error'); } else { setTimeout(() => res.end('ok!'), 1000 * 10); } }); server.listen(PORT, () => console.log(`port is listening on ${PORT}.`));
运行以上程序,在右侧第二个窗口中执行了 /error 路由,因为没有定义 a 这个对象,则会引发错误。
进程崩溃退出之后导致整个应用程序也将崩溃,左侧是一个延迟的响应,也将无法正常工作。
这是一个头疼的问题,不要紧,下文我们将会学到一个优雅退出的方案。
进程崩溃优雅退出
关于错误捕获,Node.js 官网曾提供了一个模块 domain 来实现,但是现在已废弃了所以就不再考虑了。
之前在看 CNPM 这个项目时看到了以下关于错误退出的一段代码:
// https://github.com/cnpm/cnpmjs.org/blob/master/worker.js#L18 graceful({ server: [registry, web], error: function (err, throwErrorCount) { if (err.message) { err.message += ' (uncaughtException throw ' + throwErrorCount + ' times on pid:' + process.pid + ')'; } console.error(err); console.error(err.stack); logger.error(err); } });
上述使用的是 graceful 这个模块,在 NPM 上可以找到。
实现一个 graceful.js
实现一个 graceful 函数,初始化加载时注册 uncaughtException、unhandledRejection 两个错误事件,分别监听未捕获的错误信息和未捕获的 Promise 错误信息。
const http = require('http'); /** * graceful * @param { Number } options.killTimeout 超时时间 * @param { Function } options.onError 产生错误信息会执行该回调函数 * @param { Array } options.servers Http Server * @returns */ function graceful(options = {}) { options.killTimeout = options.killTimeout || 1000 * 30; options.onError = options.onError || function () {}; options.servers= options.servers || []; process.on('uncaughtException', error => handleUncaughtException(error, options)); process.on('unhandledRejection', error => handleUnhandledRejection(error, options)); }
handleUncaughtException、handleUnhandledRejection 分别接收相应的错误事件,执行应用传入的 onError() 将错误信息进行回传,最后调用 handleError()。
const throwCount = { uncaughtException: 0, unhandledRejection: 0 }; function handleUncaughtException(error, options) { throwCount.uncaughtException += 1; options.onError(error, 'uncaughtException', throwCount.uncaughtException); if (throwCount.uncaughtException > 1) return; handleError(options); }; function handleUnhandledRejection(error, options) { throwCount.unhandledRejection += 1; options.onError(error, 'unhandledRejection', throwCount.unhandledRejection); if (throwCount.unhandledRejection > 1) return; handleError(options); }
HandleError 方法为核心实现,首先遍历应用传入的 servers,监听 request 事件,在未捕获错误触发之后,如果还有请求链接,则关闭当前请求的链接。
之后,执行 setTimeout 延迟退出,也就是最大可能的等待之前链接处理完成。
function handleError(options) { const { servers, killTimeout } = options; // 关闭当前请求的链接 for (const server of servers) { console.log('server instanceof http.Server: ', server instanceof http.Server); if (server instanceof http.Server) { server.on('request', (req, res) => { req.shouldKeepAlive = false; res.shouldKeepAlive = false; if (!res._header) { res.setHeader('Connection', 'close'); } }); } } // 延迟退出 const timer = setTimeout(() => { process.exit(1); }, killTimeout); if (timer && timer.unref) { timer.unref(); } } module.exports = graceful;
应用程序中使用上述实现
加载上述 graceful.js 使用起来很简单只需要在文件尾部,加载 graceful 函数并传入相应参数即可。
const graceful = require('./graceful.js'); ... server.listen(PORT, () => console.log(`port is listening on ${PORT}.`)); graceful({ servers: [server], onError: (error, type, throwErrorCount) => { console.log('[%s] [pid: %s] [throwErrorCount: %s] %s: %s', new Date(), process.pid, throwErrorCount, type, error.stack || error); } });
再次运行应用程序,看看效果:
这一次,即使右侧 /error 路由产生未捕获异常,也将不会引起左侧请求无法正常响应。
Graceful 模块
最后推荐一个 NPM 模块 graceful,引用文档中的一句话:“It's the best way to handle uncaughtException on current situations.”
该模块还提供了对于 Node.js 中 Cluster 模块的支持。
安装
$ npm install graceful -S
应用
如果一个进程中有多个 Server,将它们添加到 servers 中即可。
const graceful = require('graceful'); ... graceful({ servers: [server1, server2, restapi], killTimeout: '15s', });
总结
如果你正在使用 Node.js 对于异常你需要有些了解,上述讲解的两个异常事件可以做为你的最后补救措施,但是不应该当作 On Error Resume Next(出了错误就恢复让它继续)的等价机制。
Reference
- nodejs.cn/api/process.html
- www.npmjs.com/package/graceful
稳了!魔兽国服回归的3条重磅消息!官宣时间再确认!
昨天有一位朋友在大神群里分享,自己亚服账号被封号之后居然弹出了国服的封号信息对话框。
这里面让他访问的是一个国服的战网网址,com.cn和后面的zh都非常明白地表明这就是国服战网。
而他在复制这个网址并且进行登录之后,确实是网易的网址,也就是我们熟悉的停服之后国服发布的暴雪游戏产品运营到期开放退款的说明。这是一件比较奇怪的事情,因为以前都没有出现这样的情况,现在突然提示跳转到国服战网的网址,是不是说明了简体中文客户端已经开始进行更新了呢?
更新动态
- 凤飞飞《我们的主题曲》飞跃制作[正版原抓WAV+CUE]
- 刘嘉亮《亮情歌2》[WAV+CUE][1G]
- 红馆40·谭咏麟《歌者恋歌浓情30年演唱会》3CD[低速原抓WAV+CUE][1.8G]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[320K/MP3][193.25MB]
- 【轻音乐】曼托凡尼乐团《精选辑》2CD.1998[FLAC+CUE整轨]
- 邝美云《心中有爱》1989年香港DMIJP版1MTO东芝首版[WAV+CUE]
- 群星《情叹-发烧女声DSD》天籁女声发烧碟[WAV+CUE]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[FLAC/分轨][748.03MB]
- 理想混蛋《Origin Sessions》[320K/MP3][37.47MB]
- 公馆青少年《我其实一点都不酷》[320K/MP3][78.78MB]
- 群星《情叹-发烧男声DSD》最值得珍藏的完美男声[WAV+CUE]
- 群星《国韵飘香·贵妃醉酒HQCD黑胶王》2CD[WAV]
- 卫兰《DAUGHTER》【低速原抓WAV+CUE】
- 公馆青少年《我其实一点都不酷》[FLAC/分轨][398.22MB]
- ZWEI《迟暮的花 (Explicit)》[320K/MP3][57.16MB]