n8n/packages/cli/src/services/redis-client.service.ts

241 lines
6.3 KiB
TypeScript

import { GlobalConfig } from '@n8n/config';
import ioRedis from 'ioredis';
import type { Cluster, RedisOptions } from 'ioredis';
import { Service } from 'typedi';
import { Debounce } from '@/decorators/debounce';
import { Logger } from '@/logging/logger.service';
import { TypedEmitter } from '@/typed-emitter';
import type { RedisClientType } from '../scaling/redis/redis.types';
type RedisEventMap = {
'connection-lost': number;
'connection-recovered': never;
};
@Service()
export class RedisClientService extends TypedEmitter<RedisEventMap> {
private readonly clients = new Set<ioRedis | Cluster>();
private readonly config = {
/** How long (in ms) to try to reconnect for before exiting. */
maxTimeout: this.globalConfig.queue.bull.redis.timeoutThreshold,
/** How long (in ms) to wait between reconnection attempts. */
retryInterval: 1000,
/** How long (in ms) to wait before resetting the cumulative timeout. */
resetLength: 30_000,
};
/** Whether any client has lost connection to Redis. */
private lostConnection = false;
constructor(
private readonly logger: Logger,
private readonly globalConfig: GlobalConfig,
) {
super();
this.logger = this.logger.scoped(['redis', 'scaling']);
this.registerListeners();
}
isConnected() {
return !this.lostConnection;
}
createClient(arg: { type: RedisClientType; extraOptions?: RedisOptions }) {
const client =
this.clusterNodes().length > 0
? this.createClusterClient(arg)
: this.createRegularClient(arg);
client.on('error', (error) => {
if ('code' in error && error.code === 'ECONNREFUSED') return; // handled by retryStrategy
this.logger.error(`[Redis client] ${error.message}`, { error });
});
client.on('ready', () => {
if (this.lostConnection) {
this.emit('connection-recovered');
this.lostConnection = false;
}
});
this.clients.add(client);
return client;
}
/**
* Ensure prefix is wrapped in curly braces for Redis cluster.
* See: https://github.com/OptimalBits/bull/blob/develop/PATTERNS.md
*/
toValidPrefix(prefix: string) {
if (this.clusterNodes().length > 0) {
if (!prefix.startsWith('{')) prefix = '{' + prefix;
if (!prefix.endsWith('}')) prefix += '}';
}
return prefix;
}
// ----------------------------------
// private
// ----------------------------------
private createRegularClient({
type,
extraOptions,
}: {
type: RedisClientType;
extraOptions?: RedisOptions;
}) {
const options = this.getOptions({ extraOptions });
const { host, port } = this.globalConfig.queue.bull.redis;
options.host = host;
options.port = port;
const client = new ioRedis(options);
this.logger.debug(`Started Redis client ${type}`, { type, host, port });
return client;
}
private createClusterClient({
type,
extraOptions,
}: {
type: string;
extraOptions?: RedisOptions;
}) {
const options = this.getOptions({ extraOptions });
const clusterNodes = this.clusterNodes();
const clusterClient = new ioRedis.Cluster(clusterNodes, {
redisOptions: options,
clusterRetryStrategy: this.retryStrategy(),
});
this.logger.debug(`Started Redis cluster client ${type}`, { type, clusterNodes });
return clusterClient;
}
private getOptions({ extraOptions }: { extraOptions?: RedisOptions }) {
const { username, password, db, tls } = this.globalConfig.queue.bull.redis;
/**
* Disabling ready check allows quick reconnection to Redis if Redis becomes
* temporarily unreachable. With ready check enabled, the client might take
* minutes to realize Redis is back up and resume working.
*
* See:
* - https://github.com/OptimalBits/bull/issues/890
* - https://github.com/OptimalBits/bull/issues/1873
* - https://github.com/OptimalBits/bull/pull/2185
*/
const options: RedisOptions = {
username,
password,
db,
enableReadyCheck: false,
maxRetriesPerRequest: null,
retryStrategy: this.retryStrategy(),
...extraOptions,
};
if (tls) options.tls = {}; // enable TLS with default Node.js settings
return options;
}
/**
* Strategy to retry connecting to Redis on connection failure.
*
* Try to reconnect every 500ms. On every failed attempt, increment a timeout
* counter - if the cumulative timeout exceeds a limit, exit the process.
* Reset the cumulative timeout if >30s between reconnection attempts.
*/
private retryStrategy() {
let lastAttemptTs = 0;
let cumulativeTimeout = 0;
return () => {
const nowTs = Date.now();
if (nowTs - lastAttemptTs > this.config.resetLength) {
cumulativeTimeout = 0;
lastAttemptTs = nowTs;
} else {
cumulativeTimeout += nowTs - lastAttemptTs;
lastAttemptTs = nowTs;
if (cumulativeTimeout > this.config.maxTimeout) {
const maxTimeout = Math.round(this.config.maxTimeout / 1000) + 's';
this.logger.error(`Unable to connect to Redis after trying to connect for ${maxTimeout}`);
this.logger.error('Exiting process due to Redis connection error');
process.exit(1);
}
}
this.emit('connection-lost', cumulativeTimeout);
return this.config.retryInterval;
};
}
private clusterNodes() {
return this.globalConfig.queue.bull.redis.clusterNodes
.split(',')
.filter((pair) => pair.trim().length > 0)
.map((pair) => {
const [host, port] = pair.split(':');
return { host, port: parseInt(port) };
});
}
@Debounce(1000)
emit<Event extends keyof RedisEventMap>(
event: Event,
...args: Array<RedisEventMap[Event]>
): boolean {
return super.emit(event, ...args);
}
private registerListeners() {
const { maxTimeout: maxTimeoutMs, retryInterval: retryIntervalMs } = this.config;
const retryInterval = this.formatTimeout(retryIntervalMs);
const maxTimeout = this.formatTimeout(maxTimeoutMs);
this.on('connection-lost', (cumulativeTimeoutMs) => {
const cumulativeTimeout = this.formatTimeout(cumulativeTimeoutMs);
const reconnectionMsg = `Trying to reconnect in ${retryInterval}...`;
const timeoutDetails = `${cumulativeTimeout}/${maxTimeout}`;
this.logger.warn(`Lost Redis connection. ${reconnectionMsg} (${timeoutDetails})`);
this.lostConnection = true;
});
this.on('connection-recovered', () => {
this.logger.info('Recovered Redis connection');
});
}
private formatTimeout(timeoutMs: number) {
const timeoutSeconds = timeoutMs / 1000;
const roundedTimeout = Math.round(timeoutSeconds * 10) / 10;
return roundedTimeout + 's';
}
}