zeebe-node-affinity-camunda8
v1.2.1
Published
Zeebe node client and affinity service to communicate process outcome to its initiator via a web socket subscription
Downloads
162
Readme
Zeebe Node Affinity
This is a server and an enhanced Zeebe Node client (extending camunda8/sdk) to enable you to return the outcome of a Zeebe process in a synchronous REST req/res pattern.
It's a Proof-of-Concept, and not intended for production use without further testing.
You may initiate a process in Zeebe in response to a REST request, and want to return the outcome of that process in the REST response. If your REST front-end is scalable, you need some kind of session affinity.
Version Compatibility
This package is created for the latest Zeebe versions (8.4.0 and newest)
Install
To install to your project
npm i zeebe-node-affinity
Usage
For older Zeebe versions, please refer to the README for the old package.
Websocket
Zeebe Node Affinity uses a websocket server to distribute process outcomes to interested clients. The zeebe-node-affinity
library provides the createProcessWithAffinity
method that extends the createProcess
method with a callback. This callback is executed in-memory with the final variable state of the process. It can be used like this:
const { ZBAffinityClient } = require("zeebe-node-affinity");
const options = {
affinityServiceUrl: 'ws://localhost:8089', // URL of the affinity service
affinityTimeout: 6000, // Timeout for the affinity service in milliseconds
config: { // <-- This configuration is required by Camunda8/sdk ZeebeGrpcClient
ZEEBE_ADDRESS: "zeebe-broker:26500", // Address of the Zeebe broker
CAMUNDA_SECURE_CONNECTION: false, // Disable secure connection to Camunda
CAMUNDA_OAUTH_DISABLED: true, // Disable OAuth for Camunda
}
};
const zbc = new ZBAffinityClient(options);
async function handleRequest(req, res) {
const wfi = await zbc.createProcessInstanceWithAffinity({
bpmnProcessId: req.route,
variables: req.params,
cb: ({ variables }) => res.send(variables) // <- this callback gets the process outcome
}).catch(err => {
console.error(err.stack)
res.status(500).send("Something broke!")
});
console.log(`Created new process instance ${wfi.key}`);
}
The programming model in your REST server is a simple callback. This is invoked over web-sockets by a Zeebe Affinity server. Creating a Zeebe Affinity Server is easy:
const { ZBAffinityServer } = require("zeebe-node-affinity");
const zbsPort = 8080;
const zbs = new ZBAffinityServer({ logLevel: "INFO" });
zbs.listen(zbsPort, () =>
console.log(`Zeebe Affinity Server listening on port ${zbsPort}`)
);
setInterval(() => zbs.outputStats(), 1000 * 60 * 5); // 5 minutes
This server needs to run on the same network as the REST server front-end and the Zeebe workers.
To communicate the outcome of the process to the Zeebe Affinity Server, you need to put a task as the last task in your process, and create a Zeebe Affinity worker to service it:
The task-type that you pass to the Affinity Worker constructor should match the task-type of the final task:
Here is the worker code:
const { ZBAffinityClient } = require("zeebe-node-affinity");
const options = {
affinityServiceUrl: 'ws://localhost:8089', // URL of the affinity service
affinityTimeout: 6000, // Timeout for the affinity service in milliseconds
config: { // <-- This configuration is required by Camunda8/sdk ZeebeGrpcClient
ZEEBE_ADDRESS: "zeebe-broker:26500", // Address of the Zeebe broker
CAMUNDA_SECURE_CONNECTION: false, // Disable secure connection to Camunda
CAMUNDA_OAUTH_DISABLED: true, // Disable OAuth for Camunda
}
};
const zbc = new ZBAffinityClient(options);
const afw = zbc.createAffinityWorker("publish-outcome")
.catch(e => console.log("Could not contact Affinity Server!"));
The Affinity Worker will now service this task-type, and communicate the process state to the Affinity Server, which sends it to all connected clients, where it is matched against the process instance key to invoke the handler on the appropriate client.
We throw in the constructor if we cannot contact the affinity server within affinityTimeout
milliseconds. We don't want the worker completing jobs if it cannot communicate the results to the Affinity Server.
Similarly, the worker will fail jobs that it takes where it cannot communicate the outcome to an Affinity Server. This will cause an incident to be raised if the connection is not re-established.
Redis
Zeebe Node Affinity also allow to use a Redis pub/sub system to distribute process outcomes to interested clients. The zeebe-node-affinity
library provides RedisAffinity
and the createProcessInstanceWithAffinity
method that extends the createProcess
method with a callback. This callback is executed in-memory with the final variable state of the process. It can be used like this:
Create process with redis affinity:
const { RedisAffinity } = require("zeebe-node-affinity")
const zbcRedis = new RedisAffinity(ZEEBE_GATEWAY, { host: REDIS_HOST, password: REDIS_AUTH });
async function handleRequest(req, res) {
zbcRedis.createProcessInstanceWithAffinity({
bpmnProcessId: processName,
variables: {
correlationKey,
userInputText: userInput,
chatFinished,
},
cb: (message) => res.send(message),
})
.catch(e => console.log("Could not create a process instance!"));
}
To communicate the outcome of the process to the Zeebe Affinity Client, you need to put a task as the last task in your process, and create a Zeebe Affinity worker to service it:
const { RedisAffinity } = require("zeebe-node-affinity");
const zbcRedis = new RedisAffinity(ZEEBE_GATEWAY, { host: REDIS_HOST, password: REDIS_AUTH });
const zbW = zbcRedis.createAffinityWorker({'publish-outcome'})
.catch(e => console.log("Could not create affinity worker!"));
Publish message with redis affinity:
async function handleRequest(req, res) {
zbcRedis.publishMessageWithAffinity({
correlationKey,
messageId: uuidv4(),
name: 'chat-message',
variables: {
status: 'PROCESSED',
userInputText: userInput,
chatFinished,
},
processInstanceKey,
timeToLive: Duration.seconds.of(10), // seconds
cb: (message) => res.send(message),
})
.catch(e => console.log("Could not publish message!"));
}
Scaling
The Zeebe process Clients (which initiate processs), and the Zeebe Affinity Workers (which collect the process outcomes) can be scaled.
In this Proof-of-Concept implementation, the Zeebe Affinity Service, however, must be a singleton, and cannot be load-balanced or scaled.
Demo
You can run a demo in the demo
directory. Please refer to the instructions attached to the Readme.md file.
Using in your code
You can install this from npm:
npm i zeebe-node-affinity
And use it in place / alongside the standard Node client. You will need to host the Affinity Server on your network for it to be of any use. Docker image coming soon.
TODO
Dockerfile for the Affinity Server.