MastodonRun your node.js app on the cluster mode | Soubai's stories
Run your node.js app on the cluster mode

Run your node.js app on the cluster mode

December 13, 2018

Javascript is the future for a lot of reasons:

  1. One single language for the frontend and backend
  2. Simple learning curve
  3. Great community (packages managers / frameworks / testing tools)

In light of this great development, other technologies related to javascript are born one of them is the node.js according to Wikipedia :

Node.js is an open-source, cross-platform JavaScript run-time environment that executes JavaScript code outside of a browser.

In simple words, node.js is the technology which allows us to run javascript in server side to make a backend applications such API, Workers …

You can download it from the official website for any OS :

https://nodejs.org/en/download

let’s have our demo app :

Create index.js

console.log("Hello Medium");

Save the file and run it using this command :

node index.js

Here we launched our app as a single process and after execution, it shut down but in real cases (API server for example) we need to maintain our application executed So we use tools called process managers such forever, strongloop, PM2 to easily run, maintain, log…;

Today, I will use PM2 :

Let’s install it first :

npm install pm2 -g

Starting our application with a watch flag :

pm2 start index.js --watch

After that we preview the log file :

pm2 logs

Wow! Cool our application is re-launched every time (watched by PM2).

Returning to figure 2 we see all the processes launched by PM2 (single instance <=> single CPU).

Imagine our application is the next “1B dollar startup” API, this kind of applications should have a scalable behavior for fault tolerance and high availability.

To achieve this type of architectures we have a lot of choices: Serverless architecture, Microservices architecture, Could based solutions (AWS Load Balancer )..; In my example, I will use PM2 again to solve the problem,

I will run the applications in all available CPUs using PM2 cluster mode :

cluster mode : allows networked Node.js applications to be scaled across all CPUs available, without any code modifications.

Let’s define JSON file :

app.json

{
  "apps": [
    {
      "script": "index.js",
      "instances": "max",
      "exec_mode": "cluster"
    }
  ]
}

Let’s start the cluster :

pm2 start app.json

Yes, my machine has 4 available CPUs and PM2 has used all of them to serve the application with the same shared port, this simple edit in the execution mode give our application more performance and reliability

For more information check PM2 documentation.


Profile

Written by Abderrahim SOUBAI-ELIDRISI Homosapien with high affinity to machines. Interested in Web Technologies & Cloud