Node.js
Arresto grazioso
Ricerca…
Graceful Shutdown - SIGTERM
Usando server.close () e process.exit () , possiamo catturare l'eccezione del server e fare un arresto regolare.
var http = require('http');
var server = http.createServer(function (req, res) {
setTimeout(function () { //simulate a long request
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}, 4000);
}).listen(9090, function (err) {
console.log('listening http://localhost:9090/');
console.log('pid is ' + process.pid);
});
process.on('SIGTERM', function () {
server.close(function () {
process.exit(0);
});
});
Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow