When to use it
- You’re running journeys in CI/CD and want runs to complete reliably without depending on a developer’s local machine.
- You’re scheduling automated runs (nightly regression, scheduled smoke tests).
- You’re doing data-driven runs across a large dataset and want true parallel execution.
- You want a persistent, auditable record of run history with full request/response evidence.
- Your journey uses cloud-managed secrets that should never leave the secure execution environment.
Key concepts
Build artifacts. Before a cloud run, the journey is compiled into a build artifact that captures the complete execution plan: steps, value references, assertions, and configuration. The Cloud Runner executes the artifact, not the live journey definition. This makes cloud runs repeatable — the same artifact produces the same run regardless of when you execute it. Durable execution. Cloud runs are durable — if a worker is interrupted, the run can resume or be retried rather than simply disappearing. See Durable execution for the mental model. Secret resolution. When a journey uses secret references, the Cloud Runner resolves them from cloud-managed secrets at execution time. Secret values are never passed through the CLI or displayed anywhere — the runner fetches them securely during the run. Structured output. Cloud runs produce structured results — per-step request/response data, assertion outcomes, derived values, errors, and logs — that are stored and queryable. You can retrieve results with--output flags or via reporting integrations.
Parallel data runs. The Cloud Runner is the right execution target for data-driven runs with large datasets, since each row runs as an independent worker job.
How it works
Compile the artifact
When you trigger a cloud run, Reqflo compiles the current journey into a build artifact. The artifact is stored and associated with the run for auditability.
Dispatch to workers
The Cloud Runner receives the artifact and dispatches execution to one or more workers. For data-driven runs, each row dispatches as a separate job.
Execute steps durably
Workers execute the artifact’s steps in order, resolving secrets, sending requests, evaluating assertions, and collecting derived values. If a worker is interrupted, durable execution ensures the run can recover.
Examples
Basic cloud runCloud Runner infrastructure is managed per workspace. See Runners in the admin section for configuration.

