🇺🇦Decentralized instances events
Data exchange between instances of pm2
services located on decentralized servers (virtual machines), etc.
The usual mechanism embedded in the process notification
process.on('message', async function (packet) {
})
does not include distributed virtual instances, but locally causes a pm2 instance crash under heavy load.
Install
npm i node-pm2-events
Initialize
const EventBus = require('node-pm2-events');
Using internal events
EventBus.on('channelName', (m) => {
console.log('\tinternal:', m)
})
EventBus.send('channelName', {awesome: 'data'})
EventBus.send('channelName-2', {data: 'awesome'})
For the examples below - Let's use the configuration example
const Config = {
redis: {
host: 'localhost',
username: "username",
password: "password",
keepAlive: true,
port: 6379
},
isDev: true,
}
Try using a free Redis server
Exchange events between different instances
(decentralized or not, pm2 or not - it doesn't matter)
Execute on one server and on some other(s)
- Because the server that sends the data itself does not receive it
await EventBus.transport
.initialize(Config.redis)
.filterByProcessName(false)
.waitingConnection();
EventBus.transport.on('channelName', (message) => {
console.log('\tcb :', message)
})
EventBus.transport.send('channelName', {some: 'object data'});
Use with Fastify websocket
const fastify = require('fastify')({
logger: {level: Config.isDev ? 'info' : 'warn'},
trustProxy: true,
});
fastify.register(require('@fastify/websocket'), {
options: {
maxPayload: 10000
}
});
fastify.after(async () => {
await EventBus.transport
.initialize(Config.redis)
.filterByProcessName(true)
.addIgnoredIPAddress('123.45.67.89')
.waitingConnection();
router.register(fastify);
});
Add Festify routes
(About Fastify hooks)
local events will be relayed to your websocket connections and to decentralized servers as well
const routes = [];
EventBus.websocket.registerDuplexEvents('channelName');
routes.push({
method: 'GET',
url: '/api/websocket/endpoint',
preHandler: auth,
handler: (req, reply) => {
reply.code(404).send();
},
wsHandler: (connection, req) => EventBus.websocket.wsHandler(connection, req)
});
Handle messages from clients sockets
EventBus.websocket.messagesHandler = (message, session, connection) => {
EventBus.send('toSomeWebsocketChannelHandler', message);
EventBus.websocket.sendTo(session.socket_id, {some: 'data', to: 'client'});
connection.socket.send({some: 'data', to: 'client'})
EventBus.websocket.send({some: 'data', to: 'client'});
}
Register handshakes and change decentralised master/main server
There are no replicas - no slaves - only the Primary(Main) and that's it.
He has to do something alone, in a decentralized environment of many servers and their variety of services
- including PM2 or not - it doesn't matter.
Example 1
await EventBus.transport.initialize(Config.redis)
.filterByProcessName(false)
.handshakes()
EventBus.transport.onPrimaryChange((isMain) => {
console.log('isMain', isMain)
if (isMain) {
EventBus.transport.on('Contract', (ch, msg) => {
})
} else {
EventBus.transport.off('Contract');
}
})
Example 2
await EventBus.transport.initialize(Config.redis)
.filterByProcessName(false)
.onPrimaryChange((isMain) => {
console.log('isMain', isMain)
if (isMain) {
EventBus.transport.on('Contract', (ch, msg) => {
})
} else {
EventBus.transport.off('Contract');
}
})
.handshakes()
filterByProcessName
In the case of using the same Redis server for different projects
(different databases, but there will be common alerts),
it is better to additionally use filtering by the name of the
desired process.
EventBus.transport.filterByProcessName(true)
PM2 processes list
id | name | mode | ↺ | status | cpu | memory |
---|
... | | | | | | |
11 | ym-api | cluster | 0 | online | 0% | 62.4mb |
12 | ym-api | cluster | 0 | online | 0% | 73.0mb |
13 | my-api | cluster | 0 | online | 0% | 91.3mb |
14 | my-api | cluster | 0 | online | 0% | 99.2mb |
... | | | | | | |
94 | api-bot | cluster | 2 | online | 0% | 47.7mb |
If your decentralized processes have different names, but are a single
entity of the microservices ecosystem, turn off filtering by process name:
EventBus.transport.filterByProcessName(false)
Dependencies
Read more (Recommendation)