From f3e994baf0ad73dea2756f934ba402a6e1a29e35 Mon Sep 17 00:00:00 2001 From: Waleed Date: Wed, 11 Feb 2026 13:11:28 -0800 Subject: [PATCH] improvement(oom): increase trigger machine size (#3196) --- apps/sim/background/schedule-execution.ts | 1 + apps/sim/background/webhook-execution.ts | 1 + apps/sim/background/workflow-execution.ts | 1 + 3 files changed, 3 insertions(+) diff --git a/apps/sim/background/schedule-execution.ts b/apps/sim/background/schedule-execution.ts index 54fb95420..a08d8a57d 100644 --- a/apps/sim/background/schedule-execution.ts +++ b/apps/sim/background/schedule-execution.ts @@ -589,6 +589,7 @@ export async function executeScheduleJob(payload: ScheduleExecutionPayload) { export const scheduleExecution = task({ id: 'schedule-execution', + machine: 'medium-1x', retry: { maxAttempts: 1, }, diff --git a/apps/sim/background/webhook-execution.ts b/apps/sim/background/webhook-execution.ts index fa7ce1bdf..ce0d8d1b3 100644 --- a/apps/sim/background/webhook-execution.ts +++ b/apps/sim/background/webhook-execution.ts @@ -669,6 +669,7 @@ async function executeWebhookJobInternal( export const webhookExecution = task({ id: 'webhook-execution', + machine: 'medium-1x', retry: { maxAttempts: 1, }, diff --git a/apps/sim/background/workflow-execution.ts b/apps/sim/background/workflow-execution.ts index c956cd4c5..d90605065 100644 --- a/apps/sim/background/workflow-execution.ts +++ b/apps/sim/background/workflow-execution.ts @@ -197,5 +197,6 @@ export async function executeWorkflowJob(payload: WorkflowExecutionPayload) { export const workflowExecutionTask = task({ id: 'workflow-execution', + machine: 'medium-1x', run: executeWorkflowJob, })