Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在运行一个执行长时间运行的数据迁移工作的 Node 程序。一个小时后,Node 进程被 Abrt 守护进程终止并创建核心转储。
调查我看到这个的原因:
node process was killed by signal 6 (SIGABRT)
任何想法为什么节点进程被杀死以及如何处理它?
原来是我正在使用的 Strong-Oracle 模块中的 MemoryLeak 问题。我增加了 Nodejs 进程内存以使用 4G 内存运行。现在工作正常。