fix: memory leak caused by many unclosed redis subscriptions (#750)
* fix: memory leak caused by many unclosed redis subscriptions * chore: address pull request feedback
This commit is contained in:
92
packages/redis/src/lib/channel-subscription-tracker.ts
Normal file
92
packages/redis/src/lib/channel-subscription-tracker.ts
Normal file
@@ -0,0 +1,92 @@
|
||||
import { randomUUID } from "crypto";
|
||||
|
||||
import type { MaybePromise } from "@homarr/common/types";
|
||||
import { logger } from "@homarr/log";
|
||||
|
||||
import { createRedisConnection } from "./connection";
|
||||
|
||||
type SubscriptionCallback = (message: string) => MaybePromise<void>;
|
||||
|
||||
/**
|
||||
* This class is used to deduplicate redis subscriptions.
|
||||
* It keeps track of all subscriptions and only subscribes to a channel if there are any subscriptions to it.
|
||||
* It also provides a way to remove the callback from the channel.
|
||||
* It fixes a potential memory leak where the redis client would keep creating new subscriptions to the same channel.
|
||||
* @see https://github.com/homarr-labs/homarr/issues/744
|
||||
*/
|
||||
export class ChannelSubscriptionTracker {
|
||||
private static subscriptions = new Map<string, Map<string, SubscriptionCallback>>();
|
||||
private static redis = createRedisConnection();
|
||||
private static listenerActive = false;
|
||||
|
||||
/**
|
||||
* Subscribes to a channel.
|
||||
* @param channelName name of the channel
|
||||
* @param callback callback function to be called when a message is received
|
||||
* @returns a function to unsubscribe from the channel
|
||||
*/
|
||||
public static subscribe(channelName: string, callback: SubscriptionCallback) {
|
||||
logger.debug(`Adding redis channel callback channel='${channelName}'`);
|
||||
|
||||
// We only want to activate the listener once
|
||||
if (!this.listenerActive) {
|
||||
this.activateListener();
|
||||
this.listenerActive = true;
|
||||
}
|
||||
|
||||
const channelSubscriptions = this.subscriptions.get(channelName) ?? new Map<string, SubscriptionCallback>();
|
||||
const id = randomUUID();
|
||||
|
||||
// If there are no subscriptions to the channel, subscribe to it
|
||||
if (channelSubscriptions.size === 0) {
|
||||
logger.debug(`Subscribing to redis channel channel='${channelName}'`);
|
||||
void this.redis.subscribe(channelName);
|
||||
}
|
||||
|
||||
logger.debug(`Adding redis channel callback channel='${channelName}' id='${id}'`);
|
||||
channelSubscriptions.set(id, callback);
|
||||
|
||||
this.subscriptions.set(channelName, channelSubscriptions);
|
||||
|
||||
// Return a function to unsubscribe
|
||||
return () => {
|
||||
logger.debug(`Removing redis channel callback channel='${channelName}' id='${id}'`);
|
||||
|
||||
const channelSubscriptions = this.subscriptions.get(channelName);
|
||||
if (!channelSubscriptions) return;
|
||||
|
||||
channelSubscriptions.delete(id);
|
||||
|
||||
// If there are no subscriptions to the channel, unsubscribe from it
|
||||
if (channelSubscriptions.size >= 1) {
|
||||
return;
|
||||
}
|
||||
|
||||
logger.debug(`Unsubscribing from redis channel channel='${channelName}'`);
|
||||
void this.redis.unsubscribe(channelName);
|
||||
this.subscriptions.delete(channelName);
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* Activates the listener for the redis client.
|
||||
*/
|
||||
private static activateListener() {
|
||||
logger.debug("Activating listener");
|
||||
this.redis.on("message", (channel, message) => {
|
||||
const channelSubscriptions = this.subscriptions.get(channel);
|
||||
if (!channelSubscriptions) {
|
||||
logger.warn(`Received message on unknown channel channel='${channel}'`);
|
||||
return;
|
||||
}
|
||||
|
||||
for (const [id, callback] of channelSubscriptions.entries()) {
|
||||
// Don't log messages from the logging channel as it would create an infinite loop
|
||||
if (channel !== "pubSub:logging") {
|
||||
logger.debug(`Calling subscription callback channel='${channel}' id='${id}'`);
|
||||
}
|
||||
void callback(message);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
@@ -4,9 +4,9 @@ import { createId } from "@homarr/db";
|
||||
import type { WidgetKind } from "@homarr/definitions";
|
||||
import { logger } from "@homarr/log";
|
||||
|
||||
import { ChannelSubscriptionTracker } from "./channel-subscription-tracker";
|
||||
import { createRedisConnection } from "./connection";
|
||||
|
||||
const subscriber = createRedisConnection(); // Used for subscribing to channels - after subscribing it can only be used for subscribing
|
||||
const publisher = createRedisConnection();
|
||||
const lastDataClient = createRedisConnection();
|
||||
|
||||
@@ -31,15 +31,7 @@ export const createSubPubChannel = <TData>(name: string, { persist }: { persist:
|
||||
}
|
||||
});
|
||||
}
|
||||
void subscriber.subscribe(channelName, (err) => {
|
||||
if (!err) {
|
||||
return;
|
||||
}
|
||||
logger.error(`Error with channel '${channelName}': ${err.name} (${err.message})`);
|
||||
});
|
||||
subscriber.on("message", (channel, message) => {
|
||||
if (channel !== channelName) return; // TODO: check if this is necessary - it should be handled by the redis client
|
||||
|
||||
return ChannelSubscriptionTracker.subscribe(channelName, (message) => {
|
||||
callback(superjson.parse(message));
|
||||
});
|
||||
},
|
||||
@@ -172,15 +164,9 @@ export const createCacheChannel = <TData>(name: string, cacheDurationMs: number
|
||||
export const createItemAndIntegrationChannel = <TData>(kind: WidgetKind, integrationId: string) => {
|
||||
const channelName = `item:${kind}:integration:${integrationId}`;
|
||||
return {
|
||||
subscribeAsync: async (callback: (data: TData) => void) => {
|
||||
await subscriber.subscribe(channelName);
|
||||
subscriber.on("message", (channel, message) => {
|
||||
if (channel !== channelName) {
|
||||
logger.warn(`received message on ${channel} channel but was looking for ${channelName}`);
|
||||
return;
|
||||
}
|
||||
subscribe: (callback: (data: TData) => void) => {
|
||||
return ChannelSubscriptionTracker.subscribe(channelName, (message) => {
|
||||
callback(superjson.parse(message));
|
||||
logger.debug(`sent message on ${channelName}`);
|
||||
});
|
||||
},
|
||||
publishAndUpdateLastStateAsync: async (data: TData) => {
|
||||
|
||||
Reference in New Issue
Block a user