All Products
Search
Document Center

CloudFlow:Standard mode and express mode

Last Updated:Mar 11, 2026

CloudFlow provides two execution modes -- standard and express (also known as quick mode) -- that differ in duration limits, throughput, execution guarantees, and observability. Choose the mode that fits your workload: standard mode for long-running, durable workflows with full execution history; express mode for high-throughput, low-latency orchestration that completes within seconds.

Choose a mode

Use the following table to match your workload requirements to the right mode.

RequirementRecommended mode
Execution lasts longer than 5 minutesStandard mode
Workflow requires callback-based integration (WaitForCustomCallback, WaitForSystemCallback)Standard mode
Full execution history with API-based queryingStandard mode
High-throughput, low-latency orchestration (> 100 QPS)Express mode
Microservices API orchestration or glue-layer APIsExpress mode
Stream processingExpress mode

Feature comparison

FeatureStandard modeExpress mode
Maximum execution duration1 year5 minutes
Execution modelAsynchronous. Each step's status is persisted, enabling long-running workflows to resume after interruptions.Synchronous. Returns the result upon completion.
Delivery guaranteeAt-least-once. Data is never lost, but a step may run more than once under certain conditions.Retries automatically on system errors. Configure client-side retries based on your business requirements.
Flow start rate100 QPS1,000 QPS by default. To request a higher rate, submit a ticket.
Concurrency10,00010,000 by default. To request higher concurrency, submit a ticket.
Execution historyFull execution history recorded. Query and list executions through API operations.Simple Log Service queries planned. During public preview, query executions through API operations only.
Integration modesRequestComplete, WaitForCustomCallback, WaitForSystemCallback. See Integration modes.RequestComplete only.
Service integrationAll integration methods supported. See Service integration overview.All integration methods supported. See Service integration overview.

Integration mode details

Standard mode supports three integration modes. Express mode supports only RequestComplete.

Integration modeDescriptionSupported modes
RequestCompleteThe workflow step completes when the integrated service returns a response.Standard, Express
WaitForCustomCallbackThe workflow step pauses until an external system sends a callback.Standard only
WaitForSystemCallbackThe workflow step pauses until the integrated service sends a system callback upon task completion.Standard only

If your workflow requires callback-based patterns, use standard mode.

See also