我有一个 node.js 服务器在生产中冻结,它似乎是由 JSONStream 内部的无限循环引起的。这是从冻结服务器的核心转储中捕获的堆栈跟踪:
1: toString [buffer.js:~392] (this=0x1e28fb6d25c9 <a Buffer>#1#,encoding=0x266ee104121 <undefined>,start=0x266ee104121 <undefined>,end=0x266ee104121 <undefined>)
2: arguments adaptor frame: 0->3
3: write [/home/deploy/node_modules/JSONStream/node_modules/jsonparse/jsonparse.js:136] (this=0x32cc8dd5a999 <a Parser>#2#,buffer=0x32cc8dd5aa49 <a Buffer>#3#)
4: /* anonymous */ [/home/deploy/node_modules/JSONStream/index.js:~17] (this=0x32cc8dd5ab11 <a Stream>#4#,chunk=0x32cc8dd5aa49 <a Buffer>#3#)
5: write [/home/deploy/node_modules/JSONStream/node_modules/through/index.js:~24] (this=0x32cc8dd5ab11 <a Stream>#4#,data=0x32cc8dd5aa49 <a Buffer>#3#)
6: write [_stream_readable.js:~582] (this=0x266ee106c91 <JS Global Object>#5#,dest=0x32cc8dd5ab11 <a Stream>#4#,i=0,list=0x266ee104101 <null>)
7: flow [_stream_readable.js:592] (this=0x266ee106c91 <JS Global Object>#5#,src=0x32cc8dd5ac69 <an IncomingMessage>#6#)
8: /* anonymous */ [_stream_readable.js:560] (this=0x266ee106c91 <JS Global Object>#5#)
9: _tickCallback [node.js:415] (this=0x29e7331bb2a1 <a process>#7#)
我怎样才能找到这个无限循环的来源?
不幸的是,服务器正在生产中运行并且正在处理数千个请求,因此很难提供任何额外的上下文。服务器的基本功能是为其他服务发出出站 HTTP 请求。
值得注意的是,我不相信这是由内存泄漏引起的。在这些冻结事件期间,服务器的内存使用率保持不变(并且很低),而 CPU 飙升至 99%
另一个关于无限循环结论的证据是事件循环本身似乎已经停止。当我将 console.log 放在 setInterval 中时,服务器一旦冻结就会停止输出。
我们通过将最大连接数设置为 Infinity(禁用它们在 node.js 中的重用)来验证问题不是由过期/损坏的套接字连接引起的
我们使用的是 JSONStream 0.7.1(包括默认的 jsonparse 版本 0.0.5)。我们在 JSONStream 存储库中发现了这个问题,并尝试分叉 JSONParse 并仅更新到最新的 jsonparse 版本。它没有解决问题。