Spaces:
Runtime error
Runtime error
File size: 10,952 Bytes
cd8bd0a | 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 | /**
* Credential Health Check Scheduler
*
* Background scheduler that periodically tests provider credential health.
* Follows the pattern from localHealthCheck.ts β runs on a configurable
* interval with exponential backoff on failure.
*
* Reuses the existing testSingleConnection() infrastructure so all 20+
* provider-specific validators work automatically.
*
* Schedule:
* - Initial delay: 30s after server boot (allows DB migrations to complete)
* - Interval: configurable via CREDENTIAL_HEALTH_CHECK_INTERVAL (default 5 min)
* - OAuth connections: tested less frequently (2x interval)
* - Backoff on failure: 5min -> 10min -> 30min -> max 2h
* - Resets to default on success
*/
import { testSingleConnection } from "@/app/api/providers/[id]/test/route";
import { getProviderConnections } from "@/lib/localDb";
import {
setCredentialHealth,
removeCredentialHealth,
initCredentialCache,
} from "@/lib/credentialHealth/cache";
import { emit } from "@/lib/events/eventBus";
// ββ Config ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
const BACKOFF_SCHEDULE = [300_000, 600_000, 1_800_000, 7_200_000]; // 5min, 10min, 30min, 2h
const INITIAL_DELAY_MS = 30_000; // Wait for server boot
const OAUTH_INTERVAL_MULTIPLIER = 2; // OAuth tested 2x less frequently
const CONCURRENCY_LIMIT = 5; // Max simultaneous connection tests
const LOG_PREFIX = "[CredentialHealth]";
const TRUE_ENV_VALUES = new Set(["1", "true", "yes", "on"]);
// ββ State (globalThis singleton) ββββββββββββββββββββββββββββββββββββββββββ
declare global {
var __omnirouteCredentialHC:
| {
initialized: boolean;
sweepTimer: ReturnType<typeof setTimeout> | null;
sweepInProgress: boolean;
/** Track consecutive scheduler failures per connection for backoff */
failureCounts: Map<string, number>;
}
| undefined;
}
function getSchedulerState() {
if (!globalThis.__omnirouteCredentialHC) {
globalThis.__omnirouteCredentialHC = {
initialized: false,
sweepTimer: null,
sweepInProgress: false,
failureCounts: new Map(),
};
}
return globalThis.__omnirouteCredentialHC;
}
// ββ Helpers βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
function isBuildProcess(): boolean {
return typeof process !== "undefined" && process.env.NEXT_PHASE === "phase-production-build";
}
function isAutomatedTestProcess(): boolean {
return (
typeof process !== "undefined" &&
(process.env.NODE_ENV === "test" ||
process.env.VITEST !== undefined ||
process.argv.some((arg) => arg.includes("test")))
);
}
function isCredentialHealthCheckDisabled(): boolean {
if (isBuildProcess() || isAutomatedTestProcess()) return true;
const val = process.env.OMNIROUTE_DISABLE_CREDENTIAL_HEALTH_CHECK;
return val ? TRUE_ENV_VALUES.has(val.trim().toLowerCase()) : false;
}
function getSweepInterval(): number {
const envVal = process.env.CREDENTIAL_HEALTH_CHECK_INTERVAL;
if (envVal) {
const parsed = parseInt(envVal, 10);
if (!isNaN(parsed) && parsed >= 10_000) return parsed;
}
return 300_000; // default 5 min
}
function getNextBackoff(connectionId: string): number {
const state = getSchedulerState();
const failures = state.failureCounts.get(connectionId) ?? 0;
return BACKOFF_SCHEDULE[Math.min(failures, BACKOFF_SCHEDULE.length - 1)];
}
function getMaxFailuresAcrossConnections(): number {
const state = getSchedulerState();
let max = 0;
for (const count of state.failureCounts.values()) {
if (count > max) max = count;
}
return max;
}
// ββ Core Sweep Logic βββββββββββββββββββββββββββββββββββββββββββββββββββββ
async function testConnection(
connectionId: string,
provider: string,
isOAuth: boolean
): Promise<void> {
const startTime = Date.now();
let oldStatus: string | undefined;
try {
const { getCredentialHealth } = await import("@/lib/credentialHealth/cache");
const prev = getCredentialHealth(connectionId);
oldStatus = prev?.status;
} catch {}
try {
const result = await testSingleConnection(connectionId);
const latencyMs = Date.now() - startTime;
const state = getSchedulerState();
if (result.valid) {
// Success β reset failure count, update cache
state.failureCounts.delete(connectionId);
setCredentialHealth(
connectionId,
provider,
"active",
undefined,
undefined,
undefined,
latencyMs
);
emit("credential.health.changed", {
connectionId,
provider,
oldStatus: oldStatus || "unknown",
newStatus: "active",
timestamp: Date.now(),
});
} else {
// Failure β increment failure count, update cache with error
const currentFailures = (state.failureCounts.get(connectionId) ?? 0) + 1;
state.failureCounts.set(connectionId, currentFailures);
const diagnosis = result.diagnosis as { type?: string; source?: string } | undefined;
setCredentialHealth(
connectionId,
provider,
"error",
result.error || "Unknown error",
diagnosis?.type || "unknown",
diagnosis?.source || "unknown",
latencyMs
);
emit("credential.health.changed", {
connectionId,
provider,
oldStatus: oldStatus || "unknown",
newStatus: "error",
timestamp: Date.now(),
});
// Log state transition on consecutive failures
if (currentFailures <= 2) {
const backoff = getNextBackoff(connectionId);
console.log(
LOG_PREFIX,
`β ${provider}/${connectionId} β ${result.error || "Connection failed"}` +
` [${latencyMs}ms] (failure #${currentFailures}, next check in ${backoff / 1000}s)`
);
}
}
} catch (err: unknown) {
const message = err instanceof Error ? err.message : "Scheduler error";
const latencyMs = Date.now() - startTime;
const state = getSchedulerState();
const currentFailures = (state.failureCounts.get(connectionId) ?? 0) + 1;
state.failureCounts.set(connectionId, currentFailures);
setCredentialHealth(connectionId, provider, "error", message);
if (currentFailures <= 2) {
console.log(
LOG_PREFIX,
`β οΈ ${provider}/${connectionId} β ${message} [${latencyMs}ms] (failure #${currentFailures})`
);
}
}
}
/**
* Single sweep: test all provider connections in parallel (with concurrency limit).
*/
export async function sweep(): Promise<void> {
const state = getSchedulerState();
if (state.sweepInProgress) return;
state.sweepInProgress = true;
try {
// Get all provider connections (API-key + OAuth)
let connections: Array<{
id: string;
provider: string;
authType?: string;
}>;
try {
const raw = await getProviderConnections({});
connections = (Array.isArray(raw) ? raw : []).filter(
(conn: any) => conn && conn.id && (conn.authType === "apikey" || conn.authType === "oauth")
) as Array<{
id: string;
provider: string;
authType?: string;
}>;
} catch (err) {
console.error(LOG_PREFIX, "Failed to load provider connections:", err);
return;
}
if (connections.length === 0) return;
// Compute backoff per connection β skip connections that aren't due yet
const now = Date.now();
const interval = getSweepInterval();
const dueConnections = connections.filter((conn) => {
const isOAuth = conn.authType === "oauth";
const connInterval = isOAuth ? interval * OAUTH_INTERVAL_MULTIPLIER : interval;
const backoff = getNextBackoff(conn.id);
const effectiveInterval = Math.max(connInterval, backoff);
// If we don't have a failure count, it hasn't been tested this session
const state_ = getSchedulerState();
return !state_.failureCounts.has(conn.id) || effectiveInterval <= interval;
});
if (dueConnections.length === 0) return;
console.log(
LOG_PREFIX,
`Testing ${dueConnections.length}/${connections.length} connections...`
);
// Process with concurrency limit
const batches: Array<typeof dueConnections> = [];
for (let i = 0; i < dueConnections.length; i += CONCURRENCY_LIMIT) {
batches.push(dueConnections.slice(i, i + CONCURRENCY_LIMIT));
}
for (const batch of batches) {
await Promise.allSettled(
batch.map((conn) => testConnection(conn.id, conn.provider, conn.authType === "oauth"))
);
}
} finally {
state.sweepInProgress = false;
scheduleSweep();
}
}
function scheduleSweep(): void {
const state = getSchedulerState();
if (!state.initialized) return;
if (state.sweepTimer) clearTimeout(state.sweepTimer);
const maxFailures = getMaxFailuresAcrossConnections();
const baseInterval = getSweepInterval();
const backoffInterval = BACKOFF_SCHEDULE[Math.min(maxFailures, BACKOFF_SCHEDULE.length - 1)];
const interval = Math.max(baseInterval, backoffInterval);
state.sweepTimer = setTimeout(sweep, interval);
}
// ββ Public API ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
/**
* Start the credential health check scheduler (idempotent).
*/
export function initCredentialHealthCheck(): void {
const state = getSchedulerState();
if (state.initialized || isCredentialHealthCheckDisabled()) return;
state.initialized = true;
initCredentialCache();
console.log(
LOG_PREFIX,
`Starting credential health check (initial delay ${INITIAL_DELAY_MS / 1000}s, interval ${getSweepInterval() / 1000}s)`
);
state.sweepTimer = setTimeout(() => {
sweep().catch((err) => console.error(LOG_PREFIX, "Initial sweep failed:", err));
}, INITIAL_DELAY_MS);
}
/**
* Stop the scheduler (for tests / hot-reload).
*/
export function stopCredentialHealthCheck(): void {
const state = getSchedulerState();
if (state.sweepTimer) {
clearTimeout(state.sweepTimer);
state.sweepTimer = null;
}
state.initialized = false;
}
/**
* Force an immediate sweep (for manual refresh / testing).
*/
export async function forceSweep(): Promise<void> {
const state = getSchedulerState();
state.initialized = true;
initCredentialCache();
await sweep();
}
// Auto-initialize on first import
initCredentialHealthCheck();
|