Node.js 中出现未捕获异常如何处理? - 图1

Node.js 程序运行在单进程上,应用开发时一个难免遇到的问题就是异常处理,对于一些未捕获的异常处理起来,也不是一件容易的事情。

未捕获异常的程序

下面展示了一段简单的应用程序,如下所示:

  1. const http = require('http');
  2. const PORT = 3000;
  3. const server = http.createServer((req, res) => {
  4. if (req.url === '/error') {
  5. a.b;
  6. res.end('error');
  7. } else {
  8. setTimeout(() => res.end('ok!'), 1000 * 10);
  9. }
  10. });
  11. server.listen(PORT, () => console.log(`port is listening on ${PORT}.`));

运行以上程序,在右侧第二个窗口中执行了 /error 路由,因为没有定义 a 这个对象,则会引发错误。

Node.js 中出现未捕获异常如何处理? - 图2

进程崩溃退出之后导致整个应用程序也将崩溃,左侧是一个延迟的响应,也将无法正常工作。

这是一个头疼的问题,不要紧,下文我们将会学到一个优雅退出的方案。

进程崩溃优雅退出

关于错误捕获,Node.js 官网曾提供了一个模块 domain 来实现,但是现在已废弃了所以就不再考虑了。

之前在看 CNPM 这个项目时看到了以下关于错误退出的一段代码:

  1. // https://github.com/cnpm/cnpmjs.org/blob/master/worker.js#L18
  2. graceful({
  3. server: [registry, web],
  4. error: function (err, throwErrorCount) {
  5. if (err.message) {
  6. err.message += ' (uncaughtException throw ' + throwErrorCount + ' times on pid:' + process.pid + ')';
  7. }
  8. console.error(err);
  9. console.error(err.stack);
  10. logger.error(err);
  11. }
  12. });

上述使用的是 graceful 这个模块,在 NPM 上可以找到。

实现一个 graceful.js

实现一个 graceful 函数,初始化加载时注册 uncaughtException、unhandledRejection 两个错误事件,分别监听未捕获的错误信息和未捕获的 Promise 错误信息。

  1. const http = require('http');
  2. /**
  3. * graceful
  4. * @param { Number } options.killTimeout 超时时间
  5. * @param { Function } options.onError 产生错误信息会执行该回调函数
  6. * @param { Array } options.servers Http Server
  7. * @returns
  8. */
  9. function graceful(options = {}) {
  10. options.killTimeout = options.killTimeout || 1000 * 30;
  11. options.onError = options.onError || function () {};
  12. options.servers= options.servers || [];
  13. process.on('uncaughtException', error => handleUncaughtException(error, options));
  14. process.on('unhandledRejection', error => handleUnhandledRejection(error, options));
  15. }

handleUncaughtException、handleUnhandledRejection 分别接收相应的错误事件,执行应用传入的 onError() 将错误信息进行回传,最后调用 handleError()。

  1. const throwCount = {
  2. uncaughtException: 0,
  3. unhandledRejection: 0
  4. };
  5. function handleUncaughtException(error, options) {
  6. throwCount.uncaughtException += 1;
  7. options.onError(error, 'uncaughtException', throwCount.uncaughtException);
  8. if (throwCount.uncaughtException > 1) return;
  9. handleError(options);
  10. };
  11. function handleUnhandledRejection(error, options) {
  12. throwCount.unhandledRejection += 1;
  13. options.onError(error, 'unhandledRejection', throwCount.unhandledRejection);
  14. if (throwCount.unhandledRejection > 1) return;
  15. handleError(options);
  16. }

HandleError 方法为核心实现,首先遍历应用传入的 servers,监听 request 事件,在未捕获错误触发之后,如果还有请求链接,则关闭当前请求的链接。

之后,执行 setTimeout 延迟退出,也就是最大可能的等待之前链接处理完成。

  1. function handleError(options) {
  2. const { servers, killTimeout } = options;
  3. // 关闭当前请求的链接
  4. for (const server of servers) {
  5. console.log('server instanceof http.Server: ', server instanceof http.Server);
  6. if (server instanceof http.Server) {
  7. server.on('request', (req, res) => {
  8. req.shouldKeepAlive = false;
  9. res.shouldKeepAlive = false;
  10. if (!res._header) {
  11. res.setHeader('Connection', 'close');
  12. }
  13. });
  14. }
  15. }
  16. // 延迟退出
  17. const timer = setTimeout(() => {
  18. process.exit(1);
  19. }, killTimeout);
  20. if (timer && timer.unref) {
  21. timer.unref();
  22. }
  23. }
  24. module.exports = graceful;

应用程序中使用上述实现

加载上述 graceful.js 使用起来很简单只需要在文件尾部,加载 graceful 函数并传入相应参数即可。

  1. const graceful = require('./graceful.js');
  2. ...
  3. server.listen(PORT, () => console.log(`port is listening on ${PORT}.`));
  4. graceful({
  5. servers: [server],
  6. onError: (error, type, throwErrorCount) => {
  7. console.log('[%s] [pid: %s] [throwErrorCount: %s] %s: %s', new Date(), process.pid, throwErrorCount, type, error.stack || error);
  8. }
  9. });

再次运行应用程序,看看效果:

Node.js 中出现未捕获异常如何处理? - 图3

这一次,即使右侧 /error 路由产生未捕获异常,也将不会引起左侧请求无法正常响应。

Graceful 模块

最后推荐一个 NPM 模块 graceful,引用文档中的一句话:“It’s the best way to handle uncaughtException on current situations.”

该模块还提供了对于 Node.js 中 Cluster 模块的支持。

安装

  1. $ npm install graceful -S

应用

如果一个进程中有多个 Server,将它们添加到 servers 中即可。

  1. const graceful = require('graceful');
  2. ...
  3. graceful({
  4. servers: [server1, server2, restapi],
  5. killTimeout: '15s',
  6. });

总结

如果你正在使用 Node.js 对于异常你需要有些了解,上述讲解的两个异常事件可以做为你的最后补救措施,但是不应该当作 On Error Resume Next(出了错误就恢复让它继续)的等价机制。

如果你有不错的建议欢迎和我一起讨论!

Reference