-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathinputStreamWaitpointCache.server.ts
More file actions
102 lines (91 loc) · 2.55 KB
/
Copy pathinputStreamWaitpointCache.server.ts
File metadata and controls
102 lines (91 loc) · 2.55 KB
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
import { Redis } from "ioredis";
import { defaultReconnectOnError } from "@internal/redis";
import { env } from "~/env.server";
import { singleton } from "~/utils/singleton";
import { logger } from "./logger.server";
const KEY_PREFIX = "isw:";
const DEFAULT_TTL_MS = 7 * 24 * 60 * 60 * 1000; // 7 days
function buildKey(runFriendlyId: string, streamId: string): string {
return `${KEY_PREFIX}${runFriendlyId}:${streamId}`;
}
function initializeRedis(): Redis | undefined {
const host = env.CACHE_REDIS_HOST;
if (!host) {
return undefined;
}
return new Redis({
connectionName: "inputStreamWaitpointCache",
host,
port: env.CACHE_REDIS_PORT,
username: env.CACHE_REDIS_USERNAME,
password: env.CACHE_REDIS_PASSWORD,
keyPrefix: "tr:",
enableAutoPipelining: true,
reconnectOnError: defaultReconnectOnError,
...(env.CACHE_REDIS_TLS_DISABLED === "true" ? {} : { tls: {} }),
});
}
const redis = singleton("inputStreamWaitpointCache", initializeRedis);
/**
* Store a mapping from input stream to waitpoint ID in Redis.
* Called when `.wait()` creates a new waitpoint.
*/
export async function setInputStreamWaitpoint(
runFriendlyId: string,
streamId: string,
waitpointId: string,
ttlMs?: number
): Promise<void> {
if (!redis) return;
try {
const key = buildKey(runFriendlyId, streamId);
await redis.set(key, waitpointId, "PX", ttlMs ?? DEFAULT_TTL_MS);
} catch (error) {
logger.error("Failed to set input stream waitpoint cache", {
runFriendlyId,
streamId,
error,
});
}
}
/**
* Get the waitpoint ID for an input stream without deleting it.
* Called from the `.send()` route before completing the waitpoint.
*/
export async function getInputStreamWaitpoint(
runFriendlyId: string,
streamId: string
): Promise<string | null> {
if (!redis) return null;
try {
const key = buildKey(runFriendlyId, streamId);
return await redis.get(key);
} catch (error) {
logger.error("Failed to get input stream waitpoint cache", {
runFriendlyId,
streamId,
error,
});
return null;
}
}
/**
* Delete the cache entry for an input stream waitpoint.
* Called when a waitpoint is completed or timed out.
*/
export async function deleteInputStreamWaitpoint(
runFriendlyId: string,
streamId: string
): Promise<void> {
if (!redis) return;
try {
const key = buildKey(runFriendlyId, streamId);
await redis.del(key);
} catch (error) {
logger.error("Failed to delete input stream waitpoint cache", {
runFriendlyId,
streamId,
error,
});
}
}