One-off runs
One-off execution is best for:- Ad hoc extraction or discovery
- Testing a new schema or modular plan
- Running a job on demand
- Collecting a one-time snapshot
- Create a task
- Trigger execution manually
- Monitor the execution
- Download results
Scheduled runs
Scheduled execution is best for:- Ongoing monitoring
- Recurring collection
- Change detection
- Dataset accumulation over time
Why the distinction matters
Both paths use the same task and execution objects, but they serve different operating models:- One-off tasks emphasize immediate output.
- Scheduled tasks emphasize repeatability and a history of runs.
Triggering execution
Manual task runs typically use:Scheduling guidance
When using schedules:- Keep the output schema stable when consumers depend on a fixed shape.
- Keep the task identity stable so history stays grouped.
- Treat executions as the units of runtime history.