The difference is not only when work runs. It shapes how you think about task ownership, execution history, and how downstream systems consume datasets over time.Documentation Index
Fetch the complete documentation index at: https://webscraping.titannet.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
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.