-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathLimitsPresenter.server.ts
More file actions
523 lines (488 loc) · 17.4 KB
/
LimitsPresenter.server.ts
File metadata and controls
523 lines (488 loc) · 17.4 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
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
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
import { Ratelimit } from "@upstash/ratelimit";
import { RuntimeEnvironmentType } from "@trigger.dev/database";
import { createHash } from "node:crypto";
import { env } from "~/env.server";
import { getCurrentPlan } from "~/services/platform.v3.server";
import {
RateLimiterConfig,
createLimiterFromConfig,
type RateLimitTokenBucketConfig,
} from "~/services/authorizationRateLimitMiddleware.server";
import { createRedisRateLimitClient, type Duration } from "~/services/rateLimiter.server";
import { BasePresenter } from "./basePresenter.server";
import { singleton } from "~/utils/singleton";
import { logger } from "~/services/logger.server";
import { CheckScheduleService } from "~/v3/services/checkSchedule.server";
import { engine } from "~/v3/runEngine.server";
import { getQueueSizeLimit, getQueueSizeLimitSource } from "~/v3/utils/queueLimits.server";
// Create a singleton Redis client for rate limit queries
const rateLimitRedisClient = singleton("rateLimitQueryRedisClient", () =>
createRedisRateLimitClient({
port: env.RATE_LIMIT_REDIS_PORT,
host: env.RATE_LIMIT_REDIS_HOST,
username: env.RATE_LIMIT_REDIS_USERNAME,
password: env.RATE_LIMIT_REDIS_PASSWORD,
tlsDisabled: env.RATE_LIMIT_REDIS_TLS_DISABLED === "true",
clusterMode: env.RATE_LIMIT_REDIS_CLUSTER_MODE_ENABLED === "1",
})
);
// Types for rate limit display
export type RateLimitInfo = {
name: string;
description: string;
config: RateLimiterConfig;
currentTokens: number | null;
};
// Types for quota display
export type QuotaInfo = {
name: string;
description: string;
limit: number | null;
currentUsage: number;
source: "default" | "plan" | "override";
canExceed?: boolean;
isUpgradable?: boolean;
};
// Types for feature flags
export type FeatureInfo = {
name: string;
description: string;
enabled: boolean;
value?: string | number;
};
export type LimitsResult = {
rateLimits: {
api: RateLimitInfo;
batch: RateLimitInfo;
};
quotas: {
projects: QuotaInfo;
schedules: QuotaInfo | null;
teamMembers: QuotaInfo | null;
alerts: QuotaInfo | null;
branches: QuotaInfo | null;
logRetentionDays: QuotaInfo | null;
realtimeConnections: QuotaInfo | null;
batchProcessingConcurrency: QuotaInfo;
queueSize: QuotaInfo;
metricDashboards: QuotaInfo | null;
metricWidgetsPerDashboard: QuotaInfo | null;
queryPeriodDays: QuotaInfo | null;
};
features: {
hasStagingEnvironment: FeatureInfo;
support: FeatureInfo;
includedUsage: FeatureInfo;
};
planName: string | null;
organizationId: string;
isOnTopPlan: boolean;
};
export class LimitsPresenter extends BasePresenter {
public async call({
organizationId,
projectId,
environmentId,
environmentType,
environmentApiKey,
}: {
organizationId: string;
projectId: string;
environmentId: string;
environmentType: RuntimeEnvironmentType;
environmentApiKey: string;
}): Promise<LimitsResult> {
// Get organization with all limit-related fields
const organization = await this._replica.organization.findFirstOrThrow({
where: { id: organizationId },
select: {
id: true,
maximumConcurrencyLimit: true,
maximumProjectCount: true,
maximumDevQueueSize: true,
maximumDeployedQueueSize: true,
apiRateLimiterConfig: true,
batchRateLimitConfig: true,
batchQueueConcurrencyConfig: true,
_count: {
select: {
projects: {
where: { deletedAt: null },
},
members: true,
},
},
},
});
// Get current plan from billing service
const currentPlan = await getCurrentPlan(organizationId);
const limits = currentPlan?.v3Subscription?.plan?.limits;
const isOnTopPlan = currentPlan?.v3Subscription?.plan?.code === "v3_pro_1";
// Resolve rate limit configs (org override or default)
const apiRateLimitConfig = resolveApiRateLimitConfig(organization.apiRateLimiterConfig);
const batchRateLimitConfig = resolveBatchRateLimitConfig(organization.batchRateLimitConfig);
// Resolve batch concurrency config
const batchConcurrencyConfig = resolveBatchConcurrencyConfig(
organization.batchQueueConcurrencyConfig
);
const batchConcurrencySource = organization.batchQueueConcurrencyConfig
? "override"
: "default";
// Get schedule count for this org
const scheduleCount = await CheckScheduleService.getUsedSchedulesCount({
prisma: this._replica,
projectId,
});
// Get alert channel count for this org
const alertChannelCount = await this._replica.projectAlertChannel.count({
where: {
projectId,
},
});
// Get active branches count for this org (uses @@index([organizationId]))
const activeBranchCount = await this._replica.runtimeEnvironment.count({
where: {
projectId,
branchName: {
not: null,
},
archivedAt: null,
},
});
// Get metric dashboard count for this org
const metricDashboardCount = await this._replica.metricsDashboard.count({
where: { organizationId },
});
// Get current rate limit tokens for this environment's API key
const apiRateLimitTokens = await getRateLimitRemainingTokens(
"api",
environmentApiKey,
apiRateLimitConfig
);
// Batch rate limiter uses environment ID directly (not hashed) with a different key prefix
const batchRateLimitTokens = await getBatchRateLimitRemainingTokens(
environmentId,
batchRateLimitConfig
);
// Get current queue size for this environment
// We need the runtime environment fields for the engine query
const runtimeEnv = await this._replica.runtimeEnvironment.findFirst({
where: { id: environmentId },
select: {
id: true,
maximumConcurrencyLimit: true,
concurrencyLimitBurstFactor: true,
},
});
let currentQueueSize = 0;
if (runtimeEnv) {
const engineEnv = {
id: runtimeEnv.id,
type: environmentType,
maximumConcurrencyLimit: runtimeEnv.maximumConcurrencyLimit,
concurrencyLimitBurstFactor: runtimeEnv.concurrencyLimitBurstFactor,
organization: { id: organizationId },
project: { id: projectId },
};
currentQueueSize = (await engine.lengthOfEnvQueue(engineEnv)) ?? 0;
}
// Get plan-level limits
const schedulesLimit = limits?.schedules?.number ?? null;
const teamMembersLimit = limits?.teamMembers?.number ?? null;
const alertsLimit = limits?.alerts?.number ?? null;
const branchesLimit = limits?.branches?.number ?? null;
const logRetentionDaysLimit = limits?.logRetentionDays?.number ?? null;
const realtimeConnectionsLimit = limits?.realtimeConcurrentConnections?.number ?? null;
const metricDashboardsLimit = limits?.metricDashboards?.number ?? null;
const metricWidgetsPerDashboardLimit = limits?.metricWidgetsPerDashboard?.number ?? null;
const queryPeriodDaysLimit = limits?.queryPeriodDays?.number ?? null;
const includedUsage = limits?.includedUsage ?? null;
const hasStagingEnvironment = limits?.hasStagingEnvironment ?? false;
const supportLevel = limits?.support ?? "community";
return {
isOnTopPlan,
rateLimits: {
api: {
name: "API rate limit",
description: "Rate limit for API requests (trigger, batch, etc.)",
config: apiRateLimitConfig,
currentTokens: apiRateLimitTokens,
},
batch: {
name: "Batch rate limit",
description: "Rate limit for batch trigger operations",
config: batchRateLimitConfig,
currentTokens: batchRateLimitTokens,
},
},
quotas: {
projects: {
name: "Projects",
description: "Maximum number of projects in this organization",
limit: organization.maximumProjectCount,
currentUsage: organization._count.projects,
source: "default",
isUpgradable: true,
},
schedules:
schedulesLimit !== null
? {
name: "Schedules",
description: "Maximum number of schedules per project",
limit: schedulesLimit,
currentUsage: scheduleCount,
source: "plan",
canExceed: limits?.schedules?.canExceed,
isUpgradable: true,
}
: null,
teamMembers:
teamMembersLimit !== null
? {
name: "Team members",
description: "Maximum number of team members in this organization",
limit: teamMembersLimit,
currentUsage: organization._count.members,
source: "plan",
canExceed: limits?.teamMembers?.canExceed,
isUpgradable: true,
}
: null,
alerts:
alertsLimit !== null
? {
name: "Alert channels",
description: "Maximum number of alert channels per project",
limit: alertsLimit,
currentUsage: alertChannelCount,
source: "plan",
canExceed: limits?.alerts?.canExceed,
isUpgradable: true,
}
: null,
branches:
branchesLimit !== null
? {
name: "Preview branches",
description: "Maximum number of active preview branches per project",
limit: branchesLimit,
currentUsage: activeBranchCount,
source: "plan",
canExceed: limits?.branches?.canExceed,
isUpgradable: true,
}
: null,
logRetentionDays:
logRetentionDaysLimit !== null
? {
name: "Log retention",
description: "Number of days logs are retained",
limit: logRetentionDaysLimit,
currentUsage: 0, // Not applicable - this is a duration, not a count
source: "plan",
}
: null,
realtimeConnections:
realtimeConnectionsLimit !== null
? {
name: "Realtime connections",
description: "Maximum concurrent Realtime connections",
limit: realtimeConnectionsLimit,
currentUsage: 0, // Would need to query realtime service for this
source: "plan",
canExceed: limits?.realtimeConcurrentConnections?.canExceed,
isUpgradable: true,
}
: null,
batchProcessingConcurrency: {
name: "Batch processing concurrency",
description: "Controls how many batch items can be processed simultaneously.",
limit: batchConcurrencyConfig.processingConcurrency,
currentUsage: 0,
source: batchConcurrencySource,
canExceed: true,
isUpgradable: true,
},
queueSize: {
name: "Max queued runs",
description: "Maximum pending runs per individual queue in this environment",
limit: getQueueSizeLimit(environmentType, organization),
currentUsage: currentQueueSize,
source: getQueueSizeLimitSource(environmentType, organization),
isUpgradable: true,
},
metricDashboards:
metricDashboardsLimit !== null
? {
name: "Metric dashboards",
description: "Maximum number of custom metric dashboards per organization",
limit: metricDashboardsLimit,
currentUsage: metricDashboardCount,
source: "plan",
canExceed: limits?.metricDashboards?.canExceed,
isUpgradable: true,
}
: null,
metricWidgetsPerDashboard:
metricWidgetsPerDashboardLimit !== null
? {
name: "Charts per dashboard",
description: "Maximum number of charts per metrics dashboard",
limit: metricWidgetsPerDashboardLimit,
currentUsage: 0, // Varies per dashboard
source: "plan",
canExceed: limits?.metricWidgetsPerDashboard?.canExceed,
isUpgradable: true,
}
: null,
queryPeriodDays:
queryPeriodDaysLimit !== null
? {
name: "Query period",
description: "Maximum number of days a query can look back",
limit: queryPeriodDaysLimit,
currentUsage: 0, // Not applicable - this is a duration, not a count
source: "plan",
}
: null,
},
features: {
hasStagingEnvironment: {
name: "Staging/Preview environments",
description: "Access to staging/preview environments for testing before production",
enabled: hasStagingEnvironment,
},
support: {
name: "Support level",
description: "Type of support available for your plan",
enabled: true,
value: supportLevel === "slack" ? "Slack" : "Community",
},
includedUsage: {
name: "Included compute",
description: "Monthly included compute credits",
enabled: includedUsage !== null && includedUsage > 0,
value: includedUsage ?? 0,
},
},
planName: currentPlan?.v3Subscription?.plan?.title ?? null,
organizationId,
};
}
}
function resolveApiRateLimitConfig(apiRateLimiterConfig?: unknown): RateLimiterConfig {
const defaultConfig: RateLimitTokenBucketConfig = {
type: "tokenBucket",
refillRate: env.API_RATE_LIMIT_REFILL_RATE,
interval: env.API_RATE_LIMIT_REFILL_INTERVAL as Duration,
maxTokens: env.API_RATE_LIMIT_MAX,
};
if (!apiRateLimiterConfig) {
return defaultConfig;
}
const parsed = RateLimiterConfig.safeParse(apiRateLimiterConfig);
if (!parsed.success) {
return defaultConfig;
}
return parsed.data;
}
function resolveBatchRateLimitConfig(batchRateLimitConfig?: unknown): RateLimiterConfig {
const defaultConfig: RateLimitTokenBucketConfig = {
type: "tokenBucket",
refillRate: env.BATCH_RATE_LIMIT_REFILL_RATE,
interval: env.BATCH_RATE_LIMIT_REFILL_INTERVAL as Duration,
maxTokens: env.BATCH_RATE_LIMIT_MAX,
};
if (!batchRateLimitConfig) {
return defaultConfig;
}
const parsed = RateLimiterConfig.safeParse(batchRateLimitConfig);
if (!parsed.success) {
return defaultConfig;
}
return parsed.data;
}
function resolveBatchConcurrencyConfig(batchConcurrencyConfig?: unknown): {
processingConcurrency: number;
} {
const defaultConfig = {
processingConcurrency: env.BATCH_CONCURRENCY_LIMIT_DEFAULT,
};
if (!batchConcurrencyConfig) {
return defaultConfig;
}
if (typeof batchConcurrencyConfig === "object" && batchConcurrencyConfig !== null) {
const config = batchConcurrencyConfig as Record<string, unknown>;
if (typeof config.processingConcurrency === "number") {
return { processingConcurrency: config.processingConcurrency };
}
}
return defaultConfig;
}
/**
* Query the current remaining tokens for a rate limiter using the Upstash getRemaining method.
* This uses the same configuration and hashing logic as the rate limit middleware.
*/
async function getRateLimitRemainingTokens(
keyPrefix: string,
apiKey: string,
config: RateLimiterConfig
): Promise<number | null> {
try {
// Hash the authorization header the same way the rate limiter does
const authorizationValue = `Bearer ${apiKey}`;
const hash = createHash("sha256");
hash.update(authorizationValue);
const hashedKey = hash.digest("hex");
// Create a Ratelimit instance with the same configuration
const limiter = createLimiterFromConfig(config);
const ratelimit = new Ratelimit({
redis: rateLimitRedisClient,
limiter,
ephemeralCache: new Map(),
analytics: false,
prefix: `ratelimit:${keyPrefix}`,
});
// Use the getRemaining method to get the current remaining tokens
// getRemaining returns a Promise<number>
const remaining = await ratelimit.getRemaining(hashedKey);
return remaining;
} catch (error) {
logger.warn("Failed to get rate limit remaining tokens", {
keyPrefix,
error: error instanceof Error ? error.message : String(error),
});
return null;
}
}
/**
* Query the current remaining tokens for the batch rate limiter.
* The batch rate limiter uses environment ID directly (not hashed) and has a different key prefix.
*/
async function getBatchRateLimitRemainingTokens(
environmentId: string,
config: RateLimiterConfig
): Promise<number | null> {
try {
// Create a Ratelimit instance with the same configuration as the batch rate limiter
const limiter = createLimiterFromConfig(config);
const ratelimit = new Ratelimit({
redis: rateLimitRedisClient,
limiter,
ephemeralCache: new Map(),
analytics: false,
// The batch rate limiter uses "ratelimit:batch" as keyPrefix in RateLimiter,
// which adds another "ratelimit:" prefix, resulting in "ratelimit:ratelimit:batch"
prefix: `ratelimit:ratelimit:batch`,
});
// Batch rate limiter uses environment ID directly (not hashed)
const remaining = await ratelimit.getRemaining(environmentId);
return remaining;
} catch (error) {
logger.warn("Failed to get batch rate limit remaining tokens", {
environmentId,
error: error instanceof Error ? error.message : String(error),
});
return null;
}
}