File size: 10,235 Bytes
f0743f4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 | #!/usr/bin/env node
/**
* LibreChat Cache Flush Utility
*
* This script flushes the cache store used by LibreChat, whether it's
* Redis (if configured) or file-based cache.
*
* Usage:
* npm run flush-cache
* node config/flush-cache.js
* node config/flush-cache.js --help
*/
const path = require('path');
const fs = require('fs');
// Set up environment
require('dotenv').config({ path: path.join(__dirname, '..', '.env') });
const {
USE_REDIS,
REDIS_URI,
REDIS_USERNAME,
REDIS_PASSWORD,
REDIS_CA,
REDIS_KEY_PREFIX,
USE_REDIS_CLUSTER,
REDIS_USE_ALTERNATIVE_DNS_LOOKUP,
} = process.env;
// Simple utility function
const isEnabled = (value) => value === 'true' || value === true;
// Helper function to read Redis CA certificate
const getRedisCA = () => {
if (!REDIS_CA) {
return null;
}
try {
if (fs.existsSync(REDIS_CA)) {
return fs.readFileSync(REDIS_CA, 'utf8');
} else {
console.warn(`β οΈ Redis CA certificate file not found: ${REDIS_CA}`);
return null;
}
} catch (error) {
console.error(`β Failed to read Redis CA certificate file '${REDIS_CA}':`, error.message);
return null;
}
};
async function showHelp() {
console.log(`
LibreChat Cache Flush Utility
DESCRIPTION:
Flushes the cache store used by LibreChat. Automatically detects
whether Redis or file-based cache is being used and flushes accordingly.
USAGE:
npm run flush-cache
node config/flush-cache.js [options]
OPTIONS:
--help, -h Show this help message
--dry-run Show what would be flushed without actually doing it
--verbose, -v Show detailed output
CACHE TYPES:
β’ Redis Cache: Flushes all keys with the configured Redis prefix
β’ File Cache: Removes ./data/logs.json and ./data/violations.json
WHAT GETS FLUSHED:
β’ User sessions and authentication tokens
β’ Configuration cache
β’ Model queries cache
β’ Rate limiting data
β’ Conversation titles cache
β’ File upload progress
β’ SharePoint tokens
β’ And more...
NOTE: This will log out all users and may require them to re-authenticate.
`);
}
async function flushRedisCache(dryRun = false, verbose = false) {
try {
console.log('π Redis cache detected');
if (verbose) {
console.log(` URI: ${REDIS_URI ? REDIS_URI.replace(/\/\/.*@/, '//***:***@') : 'Not set'}`);
console.log(` Prefix: ${REDIS_KEY_PREFIX || 'None'}`);
}
// Create Redis client using same pattern as main app
const IoRedis = require('ioredis');
let redis;
// Parse credentials from URI or use environment variables (same as redisClients.ts)
const urls = (REDIS_URI || '').split(',').map((uri) => new URL(uri));
const username = urls[0]?.username || REDIS_USERNAME;
const password = urls[0]?.password || REDIS_PASSWORD;
const ca = getRedisCA();
// Redis options (matching redisClients.ts configuration)
const redisOptions = {
username: username,
password: password,
tls: ca ? { ca } : undefined,
connectTimeout: 10000,
maxRetriesPerRequest: 3,
enableOfflineQueue: true,
lazyConnect: false,
};
// Handle cluster vs single Redis (same logic as redisClients.ts)
const useCluster = urls.length > 1 || isEnabled(USE_REDIS_CLUSTER);
if (useCluster) {
const clusterOptions = {
redisOptions,
enableOfflineQueue: true,
};
// Add DNS lookup for AWS ElastiCache if needed (same as redisClients.ts)
if (isEnabled(REDIS_USE_ALTERNATIVE_DNS_LOOKUP)) {
clusterOptions.dnsLookup = (address, callback) => callback(null, address);
}
redis = new IoRedis.Cluster(
urls.map((url) => ({ host: url.hostname, port: parseInt(url.port, 10) || 6379 })),
clusterOptions,
);
} else {
// @ts-ignore - ioredis default export is constructable despite linter warning
redis = new IoRedis(REDIS_URI, redisOptions);
}
// Wait for connection
await new Promise((resolve, reject) => {
const timeout = setTimeout(() => {
reject(new Error('Connection timeout'));
}, 10000);
redis.once('ready', () => {
clearTimeout(timeout);
resolve(undefined);
});
redis.once('error', (err) => {
clearTimeout(timeout);
reject(err);
});
});
if (dryRun) {
console.log('π [DRY RUN] Would flush Redis cache');
try {
let allKeys = [];
if (useCluster) {
const nodes = redis.nodes('master');
console.log(` Cluster detected: ${nodes.length} master nodes`);
for (const node of nodes) {
const keys = await node.keys('*');
allKeys = allKeys.concat(keys);
}
} else {
allKeys = await redis.keys('*');
}
console.log(` Would delete ${allKeys.length} keys`);
if (verbose && allKeys.length > 0) {
console.log(
' Sample keys:',
allKeys.slice(0, 10).join(', ') + (allKeys.length > 10 ? '...' : ''),
);
}
} catch (error) {
console.log(' Could not fetch keys for preview:', error.message);
}
await redis.disconnect();
return true;
}
// Get key count before flushing
let keyCount = 0;
try {
if (useCluster) {
const nodes = redis.nodes('master');
for (const node of nodes) {
const keys = await node.keys('*');
keyCount += keys.length;
}
} else {
const keys = await redis.keys('*');
keyCount = keys.length;
}
} catch (_error) {
// Continue with flush even if we can't count keys
}
// Flush the Redis cache
if (useCluster) {
const nodes = redis.nodes('master');
await Promise.all(nodes.map((node) => node.flushdb()));
console.log(`β
Redis cluster cache flushed successfully (${nodes.length} master nodes)`);
} else {
await redis.flushdb();
console.log('β
Redis cache flushed successfully');
}
if (keyCount > 0) {
console.log(` Deleted ${keyCount} keys`);
}
await redis.disconnect();
return true;
} catch (error) {
console.error('β Error flushing Redis cache:', error.message);
if (verbose) {
console.error(' Full error:', error);
}
return false;
}
}
async function flushFileCache(dryRun = false, verbose = false) {
const dataDir = path.join(__dirname, '..', 'data');
const filesToClear = [path.join(dataDir, 'logs.json'), path.join(dataDir, 'violations.json')];
console.log('π Checking file-based cache');
if (dryRun) {
console.log('π [DRY RUN] Would flush file cache');
for (const filePath of filesToClear) {
if (fs.existsSync(filePath)) {
const stats = fs.statSync(filePath);
console.log(
` Would delete: ${path.basename(filePath)} (${(stats.size / 1024).toFixed(1)} KB)`,
);
}
}
return true;
}
let deletedCount = 0;
let totalSize = 0;
for (const filePath of filesToClear) {
try {
if (fs.existsSync(filePath)) {
const stats = fs.statSync(filePath);
totalSize += stats.size;
fs.unlinkSync(filePath);
deletedCount++;
if (verbose) {
console.log(
` β
Deleted ${path.basename(filePath)} (${(stats.size / 1024).toFixed(1)} KB)`,
);
}
}
} catch (error) {
if (verbose) {
console.log(` β Failed to delete ${path.basename(filePath)}: ${error.message}`);
}
}
}
if (deletedCount > 0) {
console.log('β
File cache flushed successfully');
console.log(` Deleted ${deletedCount} cache files (${(totalSize / 1024).toFixed(1)} KB)`);
} else {
console.log('βΉοΈ No file cache to flush');
}
return true;
}
async function restartRecommendation() {
console.log('\nπ‘ RECOMMENDATION:');
console.log(' For complete cache clearing, especially for in-memory caches,');
console.log(' consider restarting the LibreChat backend:');
console.log('');
console.log(' npm run backend:stop');
console.log(' npm run backend:dev');
console.log('');
}
async function main() {
const args = process.argv.slice(2);
const dryRun = args.includes('--dry-run');
const verbose = args.includes('--verbose') || args.includes('-v');
const help = args.includes('--help') || args.includes('-h');
if (help) {
await showHelp();
return;
}
console.log('π§Ή LibreChat Cache Flush Utility');
console.log('================================');
if (dryRun) {
console.log('π DRY RUN MODE - No actual changes will be made\n');
}
let success = true;
const isRedisEnabled = isEnabled(USE_REDIS) || (REDIS_URI != null && REDIS_URI !== '');
// Flush the appropriate cache type
if (isRedisEnabled) {
success = (await flushRedisCache(dryRun, verbose)) && success;
} else {
console.log('βΉοΈ Redis not configured, using file-based cache only');
}
// Always check file cache
success = (await flushFileCache(dryRun, verbose)) && success;
console.log('\n' + '='.repeat(50));
if (success) {
if (dryRun) {
console.log('β
Cache flush preview completed');
console.log(' Run without --dry-run to actually flush the cache');
} else {
console.log('β
Cache flush completed successfully');
console.log('β οΈ Note: All users will need to re-authenticate');
}
if (!isRedisEnabled) {
await restartRecommendation();
}
} else {
console.log('β Cache flush completed with errors');
console.log(' Check the output above for details');
process.exit(1);
}
}
// Handle errors gracefully
process.on('unhandledRejection', (error) => {
console.error('β Unhandled error:', error);
process.exit(1);
});
process.on('uncaughtException', (error) => {
console.error('β Uncaught exception:', error);
process.exit(1);
});
// Run the main function
if (require.main === module) {
main().catch((error) => {
console.error('β Fatal error:', error);
process.exit(1);
});
}
module.exports = { flushRedisCache, flushFileCache };
|