首页
论坛
未名存档
话题女王
小圈子
马甲追踪
版面排名
流量曲线
水枪排名
发帖量曲线
发帖版面饼图
发帖时间柱图
关于本站
帮助
boards
本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字
访问原贴
Programming版
- how to auto start node server when it crashes?
相关主题
●
baidu offers services similar to EC2 ?
●
哎。又有公司从.NET转Node了
●
node.js重启,web client有办法自动refresh吗?
●
Re: 请教一道题目
●
请问这道题怎么解决?
●
[合集] 一个链表倒转的问题
●
C++如何实现graph?
●
有人set up过 多个node的Cassandra 么? (转载)
●
C++: What is the difference between the two approaches?
●
Cassandra 里的 partition
相关话题的讨论汇总
话题: node
话题: crashes
话题: auto
话题: server
话题: start
进入Programming版参与讨论
1
(共1页)
l**********n
发帖数: 8443
1
rt
d*******r
发帖数: 3299
2
production monitoring 这些我最近研究过,
在 production 中,大家用的最多的是:
https://github.com/nodejitsu/forever
比如最新的 MeanJS 里面也是用的 forever:
https://github.com/meanjs/mean/blob/
master/package.json
新兴的一个 tool 叫: pm2, 我也玩了一下,输出信息 organize 好,而且详细。
它 cluster 自动 balance 的功能我没用过,不评价,你可以用用跟大家说说.
https://github.com/Unitech/pm2
在 development 中,推荐用 nodemon, 配置和使用都用简单:
http://nodemon.io/
你会发现很多 package.json 里面的 devDependencies 里面有它.
最后,我只是开发时候用用 nodemon, production 里面的监控代码是自己写的。
其实调用 node 的子进程监控的 lib,很容易自己想怎么搞就怎么搞.
http://nodejs.org/api/child_process.html
特别是,proc 死掉后,有很多复杂的 cleaning 工作时候,还是需要自己定制,比如
我的 distributed job queue 里面,worker process 也是 node 的,如果它反复挂的
话,我需要 worker monitoring process 把这个 EC2 worker instance 自杀掉, 这样
还是自己写监控逻辑最好.
这个答案干货够量吧,发包子谢我吧,哈哈
l**********n
发帖数: 8443
3
牛
blob/
【在 d*******r 的大作中提到】
: production monitoring 这些我最近研究过,
: 在 production 中,大家用的最多的是:
https://github.com/nodejitsu/forever
: 比如最新的 MeanJS 里面也是用的 forever:
https://github.com/meanjs/mean/blob/
: master/package.json
: 新兴的一个 tool 叫: pm2, 我也玩了一下,输出信息 organize 好,而且详细。
: 它 cluster 自动 balance 的功能我没用过,不评价,你可以用用跟大家说说.
:
https://github.com/Unitech/pm2
: 在 development 中,推荐用 nodemon, 配置和使用都用简单:
:
http://nodemon.io/
: 你会发现很多 package.json 里面的 devDependencies 里面有它.
d*******r
发帖数: 3299
4
吃了 :)
【在 l**********n 的大作中提到】
: 牛
:
: blob/
1
(共1页)
进入Programming版参与讨论
相关主题
●
Cassandra 里的 partition
●
Perl多线程的问题
●
RODBC and BLOB
●
图象处理求助
●
a c++ question
●
菜鸟问题:关于写DataBase的问题 —— CDaoDatabase
●
[合集] An interview question, what is the answer? (转载)
●
WhoCrashed v1.01 - post-mortem crashdump analysis.
●
Interview Question: System Crash
●
数据库能用来存储文件吗?
相关话题的讨论汇总
话题: node
话题: crashes
话题: auto
话题: server
话题: start