Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the difference between pm2 and pm2-runtime?

I've been transferring some projects that have been executing on the same machine to individual dockers each. I've tried to use pm2 on one of these docker projects to make sure the service would restart if something go wrong (it's a volatile project) and some of the examples demands the Dockerfile to use pm2-runtime instead of pm2. I've been searching for the differences of these two but I couldn't find something specific, could someone help?

like image 442
Ruan Kotovich Avatar asked Dec 28 '18 18:12

Ruan Kotovich


People also ask

What is pm2 runtime?

PM2 Runtime is a Production Process Manager for Node. js applications with a built-in Load Balancer. It allows you to keep applications alive forever, to reload them without downtime and facilitate common Devops tasks. Starting an application in production mode is as easy as: $ pm2 start app.js.

Should I use pm2 in Docker?

you may not be in favour of using pm2 inside Docker but sometimes the application requirements are different and you may need to run two nodejs application in one docker container, so in case if you want to run frontend and backend application in the same container then in the case pm2 work well then other workarounds.

What is pm2 for?

PM2: A production process manager for Node. js applications that has a built-in load balancer. PM2 enables you to keep applications alive forever, reloads them without downtime, helps you to manage application logging, monitoring, and clustering.

What is pm2 and how it works?

PM2 is a production process manager for Node. js applications with a built-in load balancer. It allows you to keep applications alive forever, to reload them without downtime and to facilitate common system admin tasks. Starting an application in production mode is as easy as: $ pm2 start app.js.


1 Answers

The main difference between pm2 and pm2-runtime is

  • pm2-runtime designed for Docker container which keeps an application in the foreground which keep the container running,
  • pm2 is designed for normal usage where you send or run the application in the background.

In simple words, the life of the container is the life of CMD or entrypoint.

For example

Dockerfile

FROM node:alpine RUN npm install pm2 -g COPY . /app WORKDIR /app CMD [ "pm2", "start","/app/server.js"] 

In this case, the container will die as soon as it run the process.

To deal with this, you have pm2-runtime

FROM node:alpine RUN npm install pm2 -g COPY . /app WORKDIR /app ENV NODE_ENV=development CMD [ "pm2-runtime", "start","/app/bin/www"] 

enter image description here

As the container keeps running and it allocates tty session.

From the documentation

The goal of pm2-runtime is to wrap your applications into a proper Node.js production environment. It solves major issues when running Node.js applications inside a container like:

Second Process Fallback for High Application Reliability Process Flow Control Automatic Application Monitoring to keep it always sane and high performing Automatic Source Map Discovery and Resolving Support Further than that, using PM2 as a layer between the container and the application brings PM2 powerful features like application declaration file, customizable log system and other great features to manage your Node.js application in production environment.

docker-pm2-nodejs

like image 65
Adiii Avatar answered Sep 19 '22 14:09

Adiii