-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Expand file tree
/
Copy pathpreprocessing.ts
More file actions
822 lines (761 loc) · 25.1 KB
/
Copy pathpreprocessing.ts
File metadata and controls
822 lines (761 loc) · 25.1 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
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
import type { workflow } from '@sim/db/schema'
import { createLogger } from '@sim/logger'
import { getActiveWorkflowRecord } from '@sim/platform-authz/workflow'
import { getActivelyBannedUserIds } from '@/lib/auth/ban'
import {
reserveExecutionSlot,
UsageReservationUnavailableError,
} from '@/lib/billing/calculations/usage-reservation'
import {
assertBillingAttributionSnapshot,
type BillingAttributionSnapshot,
checkAttributedUsageLimits,
resolveBillingAttribution,
resolveSystemBillingAttribution,
} from '@/lib/billing/core/billing-attribution'
import type { HighestPrioritySubscription } from '@/lib/billing/core/plan'
import { getHighestPrioritySubscription } from '@/lib/billing/core/subscription'
import {
getReservationDenialDescriptor,
type ReservationDenialReason,
} from '@/lib/core/admission/transient-failure'
import {
describeRetryableInfrastructureError,
isRetryableInfrastructureError,
} from '@/lib/core/errors/retryable-infrastructure'
import { getExecutionTimeout } from '@/lib/core/execution-limits'
import { RateLimiter } from '@/lib/core/rate-limiter/rate-limiter'
import type { SubscriptionPlan } from '@/lib/core/rate-limiter/types'
import { LoggingSession, type SessionStartParams } from '@/lib/logs/execution/logging-session'
import type { CoreTriggerType } from '@/stores/logs/filters/types'
const logger = createLogger('ExecutionPreprocessing')
const BILLING_ERROR_MESSAGES = {
BILLING_REQUIRED:
'Unable to resolve billing account. This workflow cannot execute without a valid billing account.',
BILLING_ERROR_GENERIC: 'Error resolving billing account',
} as const
const RESERVATION_DENIAL_MESSAGE = {
payer_concurrency:
'Too many concurrent executions are in progress for this billing account. Please wait for them to finish and try again.',
payer_headroom:
'This billing account has no guaranteed base-charge headroom. Wait for in-progress executions to finish or raise the usage limit.',
member_headroom:
'Your organization member usage limit has no guaranteed base-charge headroom. Wait for in-progress executions to finish or ask an administrator to raise your limit.',
} as const satisfies Record<ReservationDenialReason, string>
export interface PreprocessExecutionOptions {
workflowId: string
userId: string
triggerType: CoreTriggerType
executionId: string
/** Reservation identity; defaults to `executionId` for initial executions. */
reservationId?: string
requestId: string
checkRateLimit?: boolean
checkDeployment?: boolean
skipUsageLimits?: boolean
/**
* Skip the atomic in-flight concurrency reservation while still enforcing the
* usage-cost cap. Default: false. Set by surfaces that already bound and pace
* their own fan-out (e.g. table-cell dispatch, which is row-bounded, async
* rate-limited, and surfaces a graceful "wait/upgrade" state) so the
* reservation's 429 can't surface as a hard error there.
*/
skipConcurrencyReservation?: boolean
/** Skip execution-log error rows when the caller presents the failure itself. */
logPreprocessingErrors?: boolean
workspaceId?: string
loggingSession?: LoggingSession
triggerData?: SessionStartParams['triggerData']
/** Use the authenticated user as actor for client executions and personal API keys. */
useAuthenticatedUserAsActor?: boolean
/** Pre-fetched workflow row for caller context; preprocessing still re-checks active state. */
workflowRecord?: WorkflowRecord
/**
* Immutable attribution captured by an upstream execution boundary. Background
* and resume paths pass this through so payer ownership cannot change while
* work is queued or paused. Only initial execution entry points may omit it
* and resolve the workspace-selected payer here; serialized boundaries require
* the previously captured snapshot before calling preprocessing.
*/
billingAttribution?: BillingAttributionSnapshot
}
export interface PreprocessExecutionError {
message: string
statusCode: number
code?: string
retryable?: boolean
cause?: Record<string, unknown>
}
export interface PreprocessExecutionSuccess {
success: true
actorUserId: string
workflowRecord: WorkflowRecord
actorSubscription: SubscriptionInfo
billingAttribution: BillingAttributionSnapshot
executionTimeout: {
sync: number
async: number
}
}
export interface PreprocessExecutionFailure {
success: false
error: PreprocessExecutionError
}
export type PreprocessExecutionResult = PreprocessExecutionSuccess | PreprocessExecutionFailure
type WorkflowRecord = typeof workflow.$inferSelect
type SubscriptionInfo = HighestPrioritySubscription
export async function preprocessExecution(
options: PreprocessExecutionOptions
): Promise<PreprocessExecutionResult> {
const {
workflowId,
userId,
triggerType,
executionId,
reservationId = executionId,
requestId,
checkRateLimit = triggerType !== 'manual' && triggerType !== 'chat',
checkDeployment = triggerType !== 'manual',
skipUsageLimits = false,
skipConcurrencyReservation = false,
logPreprocessingErrors = true,
workspaceId: providedWorkspaceId,
loggingSession: providedLoggingSession,
triggerData,
useAuthenticatedUserAsActor = false,
workflowRecord: prefetchedWorkflowRecord,
billingAttribution: providedBillingAttribution,
} = options
/** Suppresses log rows when the caller surfaces preprocessing failures itself. */
const recordPreprocessingError: typeof logPreprocessingError = (args) =>
logPreprocessingErrors ? logPreprocessingError(args) : Promise.resolve()
logger.info(`[${requestId}] Starting execution preprocessing`, {
workflowId,
userId,
triggerType,
executionId,
})
if (prefetchedWorkflowRecord && prefetchedWorkflowRecord.id !== workflowId) {
logger.error(`[${requestId}] Prefetched workflow record ID mismatch`, {
expected: workflowId,
received: prefetchedWorkflowRecord.id,
})
throw new Error(
`Prefetched workflow record ID mismatch: expected ${workflowId}, got ${prefetchedWorkflowRecord.id}`
)
}
let workflowRecord: WorkflowRecord | null = prefetchedWorkflowRecord ?? null
if (!workflowRecord) {
try {
workflowRecord = await getActiveWorkflowRecord(workflowId)
if (!workflowRecord) {
logger.warn(`[${requestId}] Workflow not found: ${workflowId}`)
await recordPreprocessingError({
workflowId,
executionId,
triggerType,
requestId,
userId: 'unknown',
workspaceId: '',
errorMessage:
'Workflow not found. The workflow may have been deleted or is no longer accessible.',
loggingSession: providedLoggingSession,
triggerData,
})
return {
success: false,
error: {
message: 'Workflow not found',
statusCode: 404,
},
}
}
} catch (error) {
logger.error(`[${requestId}] Error fetching workflow`, { error, workflowId })
await recordPreprocessingError({
workflowId,
executionId,
triggerType,
requestId,
userId: userId || 'unknown',
workspaceId: providedWorkspaceId || '',
errorMessage: 'Internal error while fetching workflow',
loggingSession: providedLoggingSession,
triggerData,
})
return {
success: false,
error: {
message: 'Internal error while fetching workflow',
statusCode: 500,
retryable: isRetryableInfrastructureError(error),
cause: describeRetryableInfrastructureError(error),
},
}
}
} else if (workflowRecord.archivedAt) {
logger.warn(`[${requestId}] Prefetched workflow is archived: ${workflowId}`)
return {
success: false,
error: {
message: 'Workflow not found',
statusCode: 404,
},
}
} else {
const activeWorkflow = await getActiveWorkflowRecord(workflowId)
if (!activeWorkflow) {
logger.warn(`[${requestId}] Workflow archived before execution started: ${workflowId}`)
return {
success: false,
error: {
message: 'Workflow not found',
statusCode: 404,
},
}
}
workflowRecord = activeWorkflow
}
const workspaceId = workflowRecord.workspaceId || providedWorkspaceId || ''
if (!workspaceId) {
logger.warn(`[${requestId}] Workflow ${workflowId} has no workspaceId; execution blocked`)
return {
success: false,
error: {
message:
'This workflow is not attached to a workspace. Personal workflows are deprecated and cannot execute.',
statusCode: 403,
},
}
}
/** Undeployed workflows are rejected without creating an execution or cost log. */
if (checkDeployment && !workflowRecord.isDeployed) {
logger.warn(`[${requestId}] Workflow not deployed: ${workflowId}`)
return {
success: false,
error: {
message: 'Workflow is not deployed',
statusCode: 403,
},
}
}
/** Resolves the initiating actor and exact workspace payer. */
let actorUserId: string | null = null
let billingAttribution: BillingAttributionSnapshot | null = null
try {
if (providedBillingAttribution) {
const validatedAttribution = assertBillingAttributionSnapshot(providedBillingAttribution)
if (validatedAttribution.workspaceId !== workspaceId) {
throw new Error(
`Billing attribution workspace mismatch: expected ${workspaceId}, received ${validatedAttribution.workspaceId}`
)
}
actorUserId = validatedAttribution.actorUserId
billingAttribution = validatedAttribution
logger.info(`[${requestId}] Reusing serialized billing attribution`, {
actorUserId,
billingEntity: billingAttribution.billingEntity,
})
}
if (!actorUserId && useAuthenticatedUserAsActor && userId) {
actorUserId = userId
logger.info(`[${requestId}] Using authenticated user as actor: ${actorUserId}`)
}
if (!actorUserId) {
billingAttribution = await resolveSystemBillingAttribution(workspaceId)
actorUserId = billingAttribution.actorUserId
logger.info(`[${requestId}] Using atomically resolved system actor and payer`, {
actorUserId,
billingEntity: billingAttribution.billingEntity,
})
}
if (!actorUserId) {
const errorLogUserId = userId || 'unknown'
logger.warn(`[${requestId}] ${BILLING_ERROR_MESSAGES.BILLING_REQUIRED}`, {
workflowId,
workspaceId,
})
await recordPreprocessingError({
workflowId,
executionId,
triggerType,
requestId,
userId: errorLogUserId,
workspaceId,
errorMessage: BILLING_ERROR_MESSAGES.BILLING_REQUIRED,
loggingSession: providedLoggingSession,
triggerData,
})
return {
success: false,
error: {
message: 'Unable to resolve billing account',
statusCode: 500,
},
}
}
if (!billingAttribution) {
billingAttribution = await resolveBillingAttribution({ actorUserId, workspaceId })
}
} catch (error) {
logger.error(`[${requestId}] Error resolving billing attribution`, { error, workflowId })
const errorLogUserId = userId || 'unknown'
await recordPreprocessingError({
workflowId,
executionId,
triggerType,
requestId,
userId: errorLogUserId,
workspaceId,
errorMessage: BILLING_ERROR_MESSAGES.BILLING_ERROR_GENERIC,
loggingSession: providedLoggingSession,
triggerData,
})
return {
success: false,
error: {
message: 'Error resolving billing account',
statusCode: 500,
retryable: isRetryableInfrastructureError(error),
cause: describeRetryableInfrastructureError(error),
},
}
}
/**
* A failing gate's deferred outcome: the response to return, plus an optional
* error-log write to flush before returning. Evaluated in precedence order.
*/
interface GateFailure {
response: PreprocessExecutionFailure
recordError?: Parameters<typeof recordPreprocessingError>[0]
}
/** Usage figures captured by the read gate and reused by the atomic reservation. */
interface UsageSnapshot {
currentUsage: number
limit: number
memberUsage?: {
currentUsage: number
limit: number
}
}
const banCheck = (async (): Promise<GateFailure | null> => {
/**
* Blocks when the resolved actor, workflow owner, or caller-provided user
* has an active ban or blocked email domain. Including the workflow owner
* covers system-triggered executions.
*/
const banCandidateIds = [actorUserId]
if (userId && userId !== 'unknown' && userId !== actorUserId) {
banCandidateIds.push(userId)
}
if (workflowRecord.userId && !banCandidateIds.includes(workflowRecord.userId)) {
banCandidateIds.push(workflowRecord.userId)
}
try {
const bannedUserIds = await getActivelyBannedUserIds(banCandidateIds)
if (bannedUserIds.length > 0) {
logger.warn(`[${requestId}] Execution blocked: banned account`, {
workflowId,
bannedUserIds,
triggerType,
})
return {
response: {
success: false,
error: {
message: 'Account suspended',
statusCode: 403,
},
},
recordError: {
workflowId,
executionId,
triggerType,
requestId,
userId: actorUserId,
workspaceId,
errorMessage: 'This account has been suspended. Workflow executions are blocked.',
loggingSession: providedLoggingSession,
triggerData,
},
}
}
return null
} catch (error) {
logger.error(`[${requestId}] Error checking account ban status`, { error, actorUserId })
return {
response: {
success: false,
error: {
message: 'Unable to verify account status. Execution blocked for security.',
statusCode: 500,
retryable: isRetryableInfrastructureError(error),
cause: describeRetryableInfrastructureError(error),
},
},
recordError: {
workflowId,
executionId,
triggerType,
requestId,
userId: actorUserId,
workspaceId,
errorMessage: 'Unable to verify account status. Execution blocked for security.',
loggingSession: providedLoggingSession,
triggerData,
},
}
}
})()
const subscriptionFetch = getHighestPrioritySubscription(actorUserId)
/**
* Returns the usage failure and reservation snapshot together so concurrent
* read gates do not communicate through mutable outer state.
*/
const usageCheckTask = (async (): Promise<{
failure: GateFailure | null
snapshot: UsageSnapshot | null
}> => {
if (skipUsageLimits) return { failure: null, snapshot: null }
let snapshot: UsageSnapshot | null = null
try {
const usageCheck = await checkAttributedUsageLimits(billingAttribution)
snapshot = usageCheck.payerUsage
? {
...usageCheck.payerUsage,
...(usageCheck.memberUsage?.limit !== null &&
usageCheck.memberUsage?.limit !== undefined
? {
memberUsage: {
currentUsage: usageCheck.memberUsage.currentUsage,
limit: usageCheck.memberUsage.limit,
},
}
: {}),
}
: null
if (usageCheck.isExceeded) {
logger.warn(`[${requestId}] Attributed usage gate blocked actor ${actorUserId}.`, {
currentUsage: snapshot?.currentUsage,
limit: snapshot?.limit,
scope: usageCheck.scope,
workflowId,
triggerType,
})
return {
failure: {
response: {
success: false,
error: {
message:
usageCheck.message ||
'Usage limit exceeded. Please upgrade your plan to continue.',
statusCode: 402,
},
},
recordError: {
workflowId,
executionId,
triggerType,
requestId,
userId: actorUserId,
workspaceId,
errorMessage:
usageCheck.message ||
`Usage limit exceeded: $${snapshot?.currentUsage.toFixed(2) ?? '0.00'} used of $${snapshot?.limit.toFixed(2) ?? '0.00'} limit. Please upgrade your plan to continue.`,
loggingSession: providedLoggingSession,
triggerData,
},
},
snapshot,
}
}
return { failure: null, snapshot }
} catch (error) {
logger.error(`[${requestId}] Error checking usage limits`, {
error,
actorUserId,
})
return {
failure: {
response: {
success: false,
error: {
message: 'Unable to determine usage limits. Execution blocked for security.',
statusCode: 500,
retryable: isRetryableInfrastructureError(error),
cause: describeRetryableInfrastructureError(error),
},
},
recordError: {
workflowId,
executionId,
triggerType,
requestId,
userId: actorUserId,
workspaceId,
errorMessage:
'Unable to determine usage limits. Execution blocked for security. Please contact support.',
loggingSession: providedLoggingSession,
triggerData,
},
},
snapshot,
}
}
})()
/**
* Ban, subscription, and usage checks are read-only and start together. Their
* completion order must not affect the fixed ban → usage rejection precedence.
*/
const [banFailure, actorSubscription, usageResult] = await Promise.all([
banCheck,
subscriptionFetch,
usageCheckTask,
])
/**
* Rate limiting consumes a token, so it remains sequential and runs only after
* the ban and usage gates pass.
*/
const runRateLimitGate = async (): Promise<GateFailure | null> => {
if (!checkRateLimit) return null
try {
const rateLimiter = new RateLimiter()
const info = await rateLimiter.checkRateLimitWithSubscription(
actorUserId,
actorSubscription,
triggerType,
false
)
if (!info.allowed) {
logger.warn(`[${requestId}] Rate limit exceeded for user ${actorUserId}`, {
triggerType,
remaining: info.remaining,
resetAt: info.resetAt,
})
return {
response: {
success: false,
error: {
message: `Rate limit exceeded. Please try again later.`,
statusCode: 429,
},
},
recordError: {
workflowId,
executionId,
triggerType,
requestId,
userId: actorUserId,
workspaceId,
errorMessage: `Rate limit exceeded. ${info.remaining} requests remaining. Resets at ${info.resetAt.toISOString()}.`,
loggingSession: providedLoggingSession,
triggerData,
},
}
}
return null
} catch (error) {
logger.error(`[${requestId}] Error checking rate limits`, { error, actorUserId })
return {
response: {
success: false,
error: {
message: 'Error checking rate limits',
statusCode: 500,
retryable: isRetryableInfrastructureError(error),
cause: describeRetryableInfrastructureError(error),
},
},
recordError: {
workflowId,
executionId,
triggerType,
requestId,
userId: actorUserId,
workspaceId,
errorMessage: 'Error checking rate limits. Execution blocked for safety.',
loggingSession: providedLoggingSession,
triggerData,
},
}
}
}
const usageSnapshot = usageResult.snapshot
const readGateFailure = banFailure ?? usageResult.failure
if (readGateFailure) {
if (readGateFailure.recordError) {
await recordPreprocessingError(readGateFailure.recordError)
}
return readGateFailure.response
}
const rateLimitFailure = await runRateLimitGate()
if (rateLimitFailure) {
if (rateLimitFailure.recordError) {
await recordPreprocessingError(rateLimitFailure.recordError)
}
return rateLimitFailure.response
}
/**
* Cost lands only after execution, so the atomic reservation closes the
* check-then-use race for concurrent uncosted work. It runs last to ensure an
* earlier rejection cannot leave a slot held.
*/
if (!skipUsageLimits && !skipConcurrencyReservation && usageSnapshot) {
try {
const reservation = await reserveExecutionSlot({
billingEntity: billingAttribution.billingEntity,
reservationId,
plan: billingAttribution.payerSubscription?.plan,
enterpriseConcurrencyLimit:
billingAttribution.payerSubscription?.enterpriseConcurrencyLimit,
currentUsage: usageSnapshot.currentUsage,
limit: usageSnapshot.limit,
...(billingAttribution.organizationId && usageSnapshot.memberUsage
? {
member: {
organizationId: billingAttribution.organizationId,
actorUserId: billingAttribution.actorUserId,
currentUsage: usageSnapshot.memberUsage.currentUsage,
limit: usageSnapshot.memberUsage.limit,
},
}
: {}),
})
if (!reservation.reserved) {
const descriptor = getReservationDenialDescriptor(reservation.reason)
const message = RESERVATION_DENIAL_MESSAGE[reservation.reason]
logger.warn(`[${requestId}] Admission reservation full for user ${actorUserId}`, {
workflowId,
triggerType,
constraint: reservation.reason,
})
await recordPreprocessingError({
workflowId,
executionId,
triggerType,
requestId,
userId: actorUserId,
workspaceId,
errorMessage: message,
loggingSession: providedLoggingSession,
triggerData,
})
return {
success: false,
error: {
message,
statusCode: descriptor.statusCode,
code: descriptor.code,
retryable: descriptor.retryable,
cause: {
code: descriptor.code,
constraint: reservation.reason,
},
},
}
}
} catch (error) {
logger.error(`[${requestId}] Admission reservation infrastructure unavailable`, {
error,
actorUserId,
})
const unavailable =
error instanceof UsageReservationUnavailableError
? error
: new UsageReservationUnavailableError(
'Usage admission is temporarily unavailable. Please retry.',
error
)
return {
success: false,
error: {
message: unavailable.message,
statusCode: unavailable.statusCode,
code: unavailable.code,
retryable: unavailable.retryable,
cause: {
code: unavailable.code,
},
},
}
}
}
logger.info(`[${requestId}] All preprocessing checks passed`, {
workflowId,
actorUserId,
triggerType,
})
const plan = billingAttribution.payerSubscription?.plan as SubscriptionPlan | undefined
return {
success: true,
actorUserId,
workflowRecord,
actorSubscription,
billingAttribution,
executionTimeout: {
sync: getExecutionTimeout(plan, 'sync'),
async: getExecutionTimeout(plan, 'async'),
},
}
}
/**
* Helper function to log preprocessing errors to the database
*
* This ensures users can see why their workflow execution was blocked.
*/
async function logPreprocessingError(params: {
workflowId: string
executionId: string
triggerType: string
requestId: string
userId: string
workspaceId: string
errorMessage: string
loggingSession?: LoggingSession
triggerData?: SessionStartParams['triggerData']
}): Promise<void> {
const {
workflowId,
executionId,
triggerType,
requestId,
userId,
workspaceId,
errorMessage,
loggingSession,
triggerData,
} = params
if (!workspaceId) {
logger.warn(`[${requestId}] Cannot log preprocessing error: no workspaceId available`, {
workflowId,
executionId,
errorMessage,
})
return
}
try {
const session =
loggingSession || new LoggingSession(workflowId, executionId, triggerType, requestId)
await session.safeStart({
userId,
workspaceId,
variables: {},
triggerData,
})
await session.safeCompleteWithError({
error: {
message: errorMessage,
stackTrace: undefined,
},
traceSpans: [],
skipCost: true,
})
} catch (error) {
logger.error(`[${requestId}] Failed to log preprocessing error`, {
error,
workflowId,
executionId,
})
}
}