Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
expose concurrencyKey in task run context
- Schemas: add optional concurrencyKey to TaskRun and V3TaskRun types
- Engine: include concurrencyKey in run context building
- Services: pass concurrencyKey in execution payload as part of run object
- Presenters/Routes: include concurrencyKey in run context returned to UI
- Tests: verify concurrencyKey is exposed as ctx.run.concurrencyKey
- Docs: document concurrencyKey in docs/context.mdx
- Add changeset
- No concurrency behavior changes
  • Loading branch information
omkardongre committed Aug 17, 2025
commit 024e09760d9f3f82fcf50b5c4ffc6b4b967d1f60
5 changes: 5 additions & 0 deletions .changeset/eight-keys-impress.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@trigger.dev/core": patch
---

Expose concurrencyKey on task run context (ctx.run.concurrencyKey)
1 change: 1 addition & 0 deletions apps/webapp/app/presenters/v3/SpanPresenter.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -559,6 +559,7 @@ export class SpanPresenter extends BasePresenter {
tags: run.runTags,
isTest: run.isTest,
idempotencyKey: run.idempotencyKey ?? undefined,
concurrencyKey: run.concurrencyKey ?? undefined,
startedAt: run.startedAt ?? run.createdAt,
durationMs: run.usageDurationMs,
costInCents: run.costInCents,
Expand Down
1 change: 1 addition & 0 deletions apps/webapp/app/routes/resources.runs.$runParam.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ export const loader = async ({ request, params }: LoaderFunctionArgs) => {
tags: run.tags.map((tag) => tag.name),
isTest: run.isTest,
idempotencyKey: run.idempotencyKey ?? undefined,
concurrencyKey: run.concurrencyKey,
startedAt: run.startedAt ?? run.createdAt,
durationMs: run.usageDurationMs,
costInCents: run.costInCents,
Expand Down
2 changes: 2 additions & 0 deletions apps/webapp/app/v3/marqs/sharedQueueConsumer.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1634,6 +1634,7 @@ export const AttemptForExecutionGetPayload = {
metadata: true,
metadataType: true,
idempotencyKey: true,
concurrencyKey: true,
usageDurationMs: true,
costInCents: true,
baseCostInCents: true,
Expand Down Expand Up @@ -1717,6 +1718,7 @@ class SharedQueueTasks {
tags: taskRun.tags.map((tag) => tag.name),
isTest: taskRun.isTest,
idempotencyKey: taskRun.idempotencyKey ?? undefined,
concurrencyKey: taskRun.concurrencyKey ?? undefined,
durationMs: taskRun.usageDurationMs,
costInCents: taskRun.costInCents,
baseCostInCents: taskRun.baseCostInCents,
Expand Down
1 change: 1 addition & 0 deletions apps/webapp/app/v3/services/createTaskRunAttempt.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ export class CreateTaskRunAttemptService extends BaseService {
tags: taskRun.tags.map((tag) => tag.name),
isTest: taskRun.isTest,
idempotencyKey: taskRun.idempotencyKey ?? undefined,
concurrencyKey: taskRun.concurrencyKey ?? undefined,
startedAt: taskRun.startedAt ?? taskRun.createdAt,
durationMs: taskRun.usageDurationMs,
costInCents: taskRun.costInCents,
Expand Down
3 changes: 3 additions & 0 deletions docs/context.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ export const parentTask = task({
<ResponseField name="idempotencyKey" type="string" optional>
An optional [idempotency key](/idempotency) for the task run.
</ResponseField>
<ResponseField name="concurrencyKey" type="string" optional>
An optional [concurrency key](/triggering#concurrencykey) that groups runs by key for concurrency control.
</ResponseField>
<ResponseField name="maxAttempts" type="number" optional>
The [maximum number of attempts](/triggering#maxattempts) allowed for this task run.
</ResponseField>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,7 @@ export class RunAttemptSystem {
runTags: true,
isTest: true,
idempotencyKey: true,
concurrencyKey: true,
startedAt: true,
maxAttempts: true,
taskVersion: true,
Expand Down Expand Up @@ -261,6 +262,7 @@ export class RunAttemptSystem {
createdAt: run.createdAt,
startedAt: run.startedAt ?? run.createdAt,
idempotencyKey: run.idempotencyKey ?? undefined,
concurrencyKey: run.concurrencyKey ?? undefined,
maxAttempts: run.maxAttempts ?? undefined,
version: run.taskVersion ?? "unknown",
maxDuration: run.maxDurationInSeconds ?? undefined,
Expand Down Expand Up @@ -421,6 +423,7 @@ export class RunAttemptSystem {
runTags: true,
isTest: true,
idempotencyKey: true,
concurrencyKey: true,
startedAt: true,
maxAttempts: true,
taskVersion: true,
Expand Down Expand Up @@ -568,6 +571,7 @@ export class RunAttemptSystem {
tags: updatedRun.runTags,
isTest: updatedRun.isTest,
idempotencyKey: updatedRun.idempotencyKey ?? undefined,
concurrencyKey: updatedRun.concurrencyKey ?? undefined,
startedAt: updatedRun.startedAt ?? updatedRun.createdAt,
maxAttempts: updatedRun.maxAttempts ?? undefined,
version: updatedRun.taskVersion ?? "unknown",
Expand Down
2 changes: 2 additions & 0 deletions packages/core/src/v3/schemas/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@ export const TaskRun = z.object({
createdAt: z.coerce.date(),
startedAt: z.coerce.date().default(() => new Date()),
idempotencyKey: z.string().optional(),
concurrencyKey: z.string().optional(),
maxAttempts: z.number().optional(),
version: z.string().optional(),
metadata: z.record(DeserializedJsonSchema).optional(),
Expand Down Expand Up @@ -369,6 +370,7 @@ export const V3TaskRun = z.object({
createdAt: z.coerce.date(),
startedAt: z.coerce.date().default(() => new Date()),
idempotencyKey: z.string().optional(),
concurrencyKey: z.string().optional(),
maxAttempts: z.number().optional(),
version: z.string().optional(),
metadata: z.record(DeserializedJsonSchema).optional(),
Expand Down
21 changes: 21 additions & 0 deletions packages/core/test/taskExecutor.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1840,6 +1840,26 @@ describe("TaskExecutor", () => {
},
});
});

test("should pass concurrencyKey through to task run context", async () => {
let receivedConcurrencyKey: string | undefined;

const task = {
id: "test-task",
fns: {
run: async (payload: any, params: RunFnParams<any>) => {
receivedConcurrencyKey = params.ctx.run.concurrencyKey;
return { success: true };
},
},
};

const result = await executeTask(task, { test: "data" }, undefined, undefined);

// Verify that concurrencyKey is passed through to task context
expect(receivedConcurrencyKey).toBe("user-123");
expect(result.result.ok).toBe(true);
});
});

function executeTask(
Expand Down Expand Up @@ -1904,6 +1924,7 @@ function executeTask(
baseCostInCents: 0,
priority: 0,
maxDuration: 1000,
concurrencyKey: "user-123",
},
machine: {
name: "micro",
Expand Down