feat: run nested async workflows (#9119)

This commit is contained in:
Carlos R. L. Rodrigues
2024-09-16 13:06:45 +00:00
committed by GitHub
parent 0bcdcccbe2
commit ef8dc4087e
23 changed files with 295 additions and 100 deletions
@@ -11,11 +11,11 @@ import {
ProductVariantWorkflowEvents,
} from "@medusajs/utils"
import {
WorkflowData,
WorkflowResponse,
createHook,
createWorkflow,
transform,
WorkflowData,
WorkflowResponse,
} from "@medusajs/workflows-sdk"
import { emitEventStep } from "../../common"
import { createLinksWorkflow } from "../../common/workflows/create-links"
@@ -97,7 +97,7 @@ const buildLinksToCreate = (data: {
const linksToCreate: LinkDefinition[] = []
validateVariantsDuplicateInventoryItemIds(
data.createdVariants.map((variant, index) => {
(data.createdVariants ?? []).map((variant, index) => {
const variantInput = data.input.product_variants[index]
const inventoryItems = variantInput.inventory_items || []
@@ -795,7 +795,10 @@ export class TransactionOrchestrator extends EventEmitter {
this
)
.then(async (response: any) => {
if (!step.definition.backgroundExecution) {
if (
!step.definition.backgroundExecution ||
step.definition.nested
) {
const eventName = DistributedTransactionEvent.STEP_AWAITING
transaction.emit(eventName, { step, transaction })
@@ -825,6 +828,7 @@ export class TransactionOrchestrator extends EventEmitter {
)
}
// check nested flow
await transaction.scheduleRetry(
step,
step.definition.retryInterval ?? 0
@@ -1033,6 +1037,7 @@ export class TransactionOrchestrator extends EventEmitter {
hasAsyncSteps: false,
hasStepTimeouts: false,
hasRetriesTimeout: false,
hasNestedTransactions: false,
}
while (queue.length > 0) {
@@ -1073,6 +1078,10 @@ export class TransactionOrchestrator extends EventEmitter {
features.hasRetriesTimeout = true
}
if (definitionCopy.nested) {
features.hasNestedTransactions = true
}
states[id] = Object.assign(
new TransactionStep(),
existingSteps?.[id] || {
@@ -65,6 +65,11 @@ export type TransactionStepsDefinition = {
*/
async?: boolean
/**
* It flags where the step contains a sub transaction inside itself.
*/
nested?: boolean
/**
* It applies to "async" steps only, allowing them to run in the background and automatically complete without external intervention.
* It is ideal for time-consuming tasks that will be complete after the execution, contrasting with standard "async" operations that require a response to be set in a later stage.
@@ -237,6 +242,7 @@ export type TransactionFlow = {
transactionId: string
metadata?: {
eventGroupId?: string
parentIdempotencyKey?: string
[key: string]: unknown
}
hasAsyncSteps: boolean
@@ -85,4 +85,9 @@ export type Context<TManager = unknown> = {
* A string indicating the idempotencyKey of the current workflow execution.
*/
idempotencyKey?: string
/**
* A string indicating the idempotencyKey of the parent workflow execution.
*/
parentStepIdempotencyKey?: string
}
@@ -18,6 +18,9 @@ type FlowRunOptions<TData = unknown> = {
export type Acknowledgement = {
workflowId: string
transactionId: string
parentStepIdempotencyKey?: string
hasFinished: boolean
hasFailed: boolean
}
export interface WorkflowOrchestratorRunDTO<T = unknown>
@@ -74,6 +74,7 @@ function createContextualWorkflowRunner<
) => {
if (!executionContainer) {
const container_ = flow.container as MedusaContainer
if (!container_ || !isPresent(container_?.registrations)) {
executionContainer = MedusaModule.getLoadedModules().map(
(mod) => Object.values(mod)[0]
@@ -85,12 +86,13 @@ function createContextualWorkflowRunner<
flow.container = executionContainer
}
const { eventGroupId } = context
const { eventGroupId, parentStepIdempotencyKey } = context
attachOnFinishReleaseEvents(events, eventGroupId!, flow, { logOnError })
const flowMetadata = {
eventGroupId,
parentStepIdempotencyKey,
}
const args = [
@@ -22,8 +22,8 @@ class MedusaWorkflow {
MedusaWorkflow.workflows[workflowId] = exportedWorkflow
}
static getWorkflow(workflowId) {
return MedusaWorkflow.workflows[workflowId]
static getWorkflow(workflowId): ExportedWorkflow {
return MedusaWorkflow.workflows[workflowId] as unknown as ExportedWorkflow
}
}
@@ -240,8 +240,10 @@ describe("Workflow composer", () => {
expect(result).toEqual({ result: "hi from outside" })
expect(parentContext.transactionId).toEqual("transactionId")
expect(parentContext.transactionId).toEqual(childContext.transactionId)
expect(parentContext.transactionId).toEqual(expect.any(String))
expect(parentContext.transactionId).not.toEqual(
childContext.transactionId
)
expect(parentContext.eventGroupId).toEqual("eventGroupId")
expect(parentContext.eventGroupId).toEqual(childContext.eventGroupId)
@@ -287,7 +289,9 @@ describe("Workflow composer", () => {
expect(result).toEqual({ result: "hi from outside" })
expect(parentContext.transactionId).toBeTruthy()
expect(parentContext.transactionId).toEqual(childContext.transactionId)
expect(parentContext.transactionId).not.toEqual(
childContext.transactionId
)
expect(parentContext.eventGroupId).toBeTruthy()
expect(parentContext.eventGroupId).toEqual(childContext.eventGroupId)
@@ -7,6 +7,7 @@ import {
import { OrchestrationUtils, isString } from "@medusajs/utils"
import { ulid } from "ulid"
import { StepResponse, resolveValue } from "./helpers"
import { createStepHandler } from "./helpers/create-step-handler"
import { proxify } from "./helpers/proxy"
import {
CreateWorkflowComposerContext,
@@ -15,7 +16,6 @@ import {
StepFunctionResult,
WorkflowData,
} from "./type"
import { createStepHandler } from "./helpers/create-step-handler"
/**
* The type of invocation function passed to a step.
@@ -65,6 +65,11 @@ export type CompensateFn<T> = (
context: StepExecutionContext
) => unknown | Promise<unknown>
export type LocalStepConfig = { name?: string } & Omit<
TransactionStepsDefinition,
"next" | "uuid" | "action"
>
export interface ApplyStepOptions<
TStepInputs extends {
[K in keyof TInvokeInput]: WorkflowData<TInvokeInput[K]>
@@ -136,6 +141,8 @@ export function applyStep<
this.flow.addAction(stepName, stepConfig)
this.isAsync ||= !!(stepConfig.async || stepConfig.compensateAsync)
if (!this.handlers.has(stepName)) {
this.handlers.set(stepName, handler)
}
@@ -143,12 +150,7 @@ export function applyStep<
const ret = {
__type: OrchestrationUtils.SymbolWorkflowStep,
__step__: stepName,
config: (
localConfig: { name?: string } & Omit<
TransactionStepsDefinition,
"next" | "uuid" | "action"
>
) => {
config: (localConfig: LocalStepConfig) => {
const newStepName = localConfig.name ?? stepName
const newConfig = {
...stepConfig,
@@ -160,6 +162,7 @@ export function applyStep<
this.handlers.set(newStepName, handler)
this.flow.replaceAction(stepConfig.uuid!, newStepName, newConfig)
this.isAsync ||= !!(newConfig.async || newConfig.compensateAsync)
ret.__step__ = newStepName
WorkflowManager.update(this.workflowId, this.flow, this.handlers)
@@ -178,7 +181,7 @@ export function applyStep<
flagSteps.push(confRef)
}
return confRef
return confRef as StepFunction<TInvokeInput, TInvokeResultOutput>
},
if: (
input: any,
@@ -5,6 +5,7 @@ import {
} from "@medusajs/orchestration"
import { LoadedModule, MedusaContainer } from "@medusajs/types"
import { OrchestrationUtils, isString } from "@medusajs/utils"
import { ulid } from "ulid"
import { exportWorkflow } from "../../helper"
import { createStep } from "./create-step"
import { proxify } from "./helpers/proxy"
@@ -104,6 +105,7 @@ export function createWorkflow<TData, TResult, THooks extends any[]>(
__type: OrchestrationUtils.SymbolMedusaWorkflowComposerContext,
workflowId: name,
flow: WorkflowManager.getEmptyTransactionDefinition(),
isAsync: false,
handlers,
hooks_: {
declared: [],
@@ -176,21 +178,32 @@ export function createWorkflow<TData, TResult, THooks extends any[]>(
}: {
input: TData
}): ReturnType<StepFunction<TData, TResult>> => {
// TODO: Async sub workflow is not supported yet
// Info: Once the export workflow can fire the execution through the engine if loaded, the async workflow can be executed,
// the step would inherit the async configuration and subscribe to the onFinish event of the sub worklow and mark itself as success or failure
return createStep(
`${name}-as-step`,
const step = createStep(
{
name: `${name}-as-step`,
async: context.isAsync,
nested: context.isAsync, // if async we flag this is a nested transaction
},
async (stepInput: TData, stepContext) => {
const { container, ...sharedContext } = stepContext
const transaction = await workflow.run({
input: stepInput as any,
container,
context: sharedContext,
context: {
...sharedContext,
parentStepIdempotencyKey: stepContext.idempotencyKey,
transactionId: ulid(),
},
})
return new StepResponse(transaction.result, transaction)
const { result, transaction: flowTransaction } = transaction
if (!context.isAsync || flowTransaction.hasFinished()) {
return new StepResponse(result, transaction)
}
return
},
async (transaction, { container }) => {
if (!transaction) {
@@ -200,6 +213,8 @@ export function createWorkflow<TData, TResult, THooks extends any[]>(
await workflow(container).cancel(transaction)
}
)(input) as ReturnType<StepFunction<TData, TResult>>
return step
}
return mainFlow as ReturnWorkflow<TData, TResult, THooks>
@@ -1,13 +1,13 @@
import { WorkflowStepHandlerArguments } from "@medusajs/orchestration"
import { OrchestrationUtils, deepCopy } from "@medusajs/utils"
import { ApplyStepOptions } from "../create-step"
import {
CreateWorkflowComposerContext,
StepExecutionContext,
WorkflowData,
} from "../type"
import { WorkflowStepHandlerArguments } from "@medusajs/orchestration"
import { resolveValue } from "./resolve-value"
import { StepResponse } from "./step-response"
import { deepCopy, OrchestrationUtils } from "@medusajs/utils"
import { ApplyStepOptions } from "../create-step"
export function createStepHandler<
TInvokeInput,
@@ -36,6 +36,8 @@ export function createStepHandler<
const idempotencyKey = metadata.idempotency_key
stepArguments.context!.idempotencyKey = idempotencyKey
const flowMetadata = stepArguments.transaction.getFlow()?.metadata
const executionContext: StepExecutionContext = {
workflowId: metadata.model_id,
stepName: metadata.action,
@@ -45,8 +47,9 @@ export function createStepHandler<
container: stepArguments.container,
metadata,
eventGroupId:
stepArguments.transaction.getFlow()?.metadata?.eventGroupId ??
stepArguments.context!.eventGroupId,
flowMetadata?.eventGroupId ?? stepArguments.context!.eventGroupId,
parentStepIdempotencyKey:
flowMetadata?.parentStepIdempotencyKey as string,
transactionId: stepArguments.context!.transactionId,
context: stepArguments.context!,
}
@@ -74,11 +77,14 @@ export function createStepHandler<
stepArguments.context!.idempotencyKey = idempotencyKey
const flowMetadata = stepArguments.transaction.getFlow()?.metadata
const executionContext: StepExecutionContext = {
workflowId: metadata.model_id,
stepName: metadata.action,
action: "compensate",
idempotencyKey,
parentStepIdempotencyKey:
flowMetadata?.parentStepIdempotencyKey as string,
attempt: metadata.attempt,
container: stepArguments.container,
metadata,
@@ -98,6 +98,7 @@ export type CreateWorkflowComposerContext = {
hooksCallback_: Record<string, HookHandler>
workflowId: string
flow: OrchestratorBuilder
isAsync: boolean
handlers: WorkflowHandler
stepBinder: <TOutput = unknown>(
fn: StepFunctionResult
@@ -127,6 +128,11 @@ export interface StepExecutionContext {
*/
idempotencyKey: string
/**
* The idempoency key of the parent step.
*/
parentStepIdempotencyKey?: string
/**
* The name of the step.
*/