Home Web Front-end JS Tutorial How to make Node.js clustering easier with PM2

How to make Node.js clustering easier with PM2

Dec 21, 2017 am 09:19 AM
javascript node.js

As we all know, Node.js runs on Chrome's JavaScript runtime platform, which we elegantly call the V8 engine. Both the V8 engine and later Node.js run in a single-threaded manner, so they cannot maximize their performance in multi-core processor systems. This article mainly introduces in detail how to use PM2 to make Node.js clustering easier. The editor thinks it is quite good, so I will share it with you now and give it as a reference. Let’s follow the editor to take a look, I hope it can help everyone.

Node.js cluster module

Fortunately, Node.js provides us with the cluster module, which can generate multiple worker threads to share the same TCP connection.

How does it work?

First, Cluster will create a master, and then replicate multiple server apps (also called worker threads) according to the number you specify. It communicates with worker threads through IPC channels and uses built-in load balancing to better handle the pressure between threads. The load balancing uses the Round-robin algorithm (also known as the round-robin algorithm).

When using the Round-robin scheduling strategy, the master accepts() all incoming connection requests, and then sends the corresponding TCP request processing to the selected worker thread (this method still communicates through IPC).

How to use it?

The following is the most basic example:

var cluster = require('cluster'); 
var http  = require('http'); 
var os   = require('os');

var numCPUs = os.cpus().length;

if (cluster.isMaster) { 
 // Master:
 // Let's fork as many workers as you have CPU cores

 for (var i = 0; i < numCPUs; ++i) {
  cluster.fork();
 }
} else {
 // Worker:
 // Let&#39;s spawn a HTTP server
 // (Workers can share any TCP connection.
 // In this case its a HTTP server)

 http.createServer(function(req, res) {
  res.writeHead(200);
  res.end("hello world");
 }).listen(8080);
}
Copy after login

Of course, you can specify any number of worker threads. The number of threads is not limited to the number of CPU cores, because it just runs as a CPU child thread on.

As you can see, to make it work properly, you need to encapsulate your code into the cluster's processing logic and add some additional code to specify what to do when a thread hangs. .

How to use PM2

Built-in cluster

PM2 contains all the above processing logic internally, so you don’t have to make any modifications to the code. We restore the above code to its original form:

var http = require(&#39;http&#39;);

http.createServer(function(req, res) { 
 res.writeHead(200);
 res.end("hello world");
}).listen(8080);
Copy after login

and then execute it on the console:

$ pm2 start app.js -i 4
Copy after login

-i The parameter is used to tell PM2 to run in cluster_mode Your app (correspondingly called fork_mode), the number after it indicates the number of worker threads to be started. If the given number is 0, PM2 will generate corresponding worker threads based on the number of your CPU cores.

Keep your apps running no matter what the situation

If any worker thread hangs up, don’t worry, PM2 will restart it immediately . Of course, you can also manually restart these threads at any time:

Real-time expansion of the cluster

At any time, if you need to increase the number of worker threads, The cluster can be expanded through pm2 scale . The parameter specifies the number of worker threads and is used to increase or decrease the number of clusters. You can also specify how many worker threads to add through pm2 scale app +3.

Achieving zero-downtime updates in a production environment

PM2’s reload function will restart all worker threads in sequence. Each thread will wait for a new thread to be created before being terminated, so when you deploy new code in a production environment, the server will keep running without interruption.

Using the gracefulReload function can achieve the same purpose. The difference is that it will not terminate the worker thread immediately. Instead, it will send a shutdown signal through IPC to close all current connections and handle some custom tasks, and then Exit gracefully. For example, the following code:

process.on('message', function(msg) { 
 if (msg === 'shutdown') {
  close_all_connections();
  delete_cache();
  server.close();
  process.exit(0);
 }
});
Copy after login

Configure PM2 to start automatically

If you want PM2 to automatically run the previous application after the server restarts, you can first start your application through pm2 start, and then execute the following Command:

pm2 save
Copy after login

This will generate a dump.pm2 file in the ~/.pm2 directory, which describes all the applications currently running on PM2. Then execute the command:

pm2 startup [platform]
Copy after login

Note that it is necessary to add the optional parameter platform to clearly inform pm2 of the current system environment. In this way, when the server restarts next time, PM2 will automatically run the previously saved application.

Conclusion

The Cluster module is very powerful and using PM2 will make it easier. In the Node 0.10.x era, cluster.js was still an experimental product, but starting from Node 0.11.x, it has gradually matured and begun to prepare for official release, including Node 0.12.x version. It is highly recommended to use the latest versions of Node.js and PM2, the contributors of these products are constantly working hard to make them better.

Related recommendations:

Full record of Redis cluster construction

Recommended 10 articles about cluster deployment

A brief introduction to mysql cluster (picture)

The above is the detailed content of How to make Node.js clustering easier with PM2. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to implement an online speech recognition system using WebSocket and JavaScript How to implement an online speech recognition system using WebSocket and JavaScript Dec 17, 2023 pm 02:54 PM

How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

WebSocket and JavaScript: key technologies for implementing real-time monitoring systems WebSocket and JavaScript: key technologies for implementing real-time monitoring systems Dec 17, 2023 pm 05:30 PM

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

How to use JavaScript and WebSocket to implement a real-time online ordering system How to use JavaScript and WebSocket to implement a real-time online ordering system Dec 17, 2023 pm 12:09 PM

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

How to implement an online reservation system using WebSocket and JavaScript How to implement an online reservation system using WebSocket and JavaScript Dec 17, 2023 am 09:39 AM

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

JavaScript and WebSocket: Building an efficient real-time weather forecasting system JavaScript and WebSocket: Building an efficient real-time weather forecasting system Dec 17, 2023 pm 05:13 PM

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

Simple JavaScript Tutorial: How to Get HTTP Status Code Simple JavaScript Tutorial: How to Get HTTP Status Code Jan 05, 2024 pm 06:08 PM

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

How to use insertBefore in javascript How to use insertBefore in javascript Nov 24, 2023 am 11:56 AM

Usage: In JavaScript, the insertBefore() method is used to insert a new node in the DOM tree. This method requires two parameters: the new node to be inserted and the reference node (that is, the node where the new node will be inserted).

JavaScript and WebSocket: Building an efficient real-time image processing system JavaScript and WebSocket: Building an efficient real-time image processing system Dec 17, 2023 am 08:41 AM

JavaScript is a programming language widely used in web development, while WebSocket is a network protocol used for real-time communication. Combining the powerful functions of the two, we can create an efficient real-time image processing system. This article will introduce how to implement this system using JavaScript and WebSocket, and provide specific code examples. First, we need to clarify the requirements and goals of the real-time image processing system. Suppose we have a camera device that can collect real-time image data

See all articles