A Volute Ns Task Manager Page
name: nightly-etl tasks: - name: extract command: ./extract_api.py depends_on: [] - name: transform command: ./transform.py depends_on: [extract] - name: load command: ./load_to_db.sh depends_on: [transform] Register and run:
Apply changes:
volute-cli worker list volute-cli worker scale --add 2 Cause: Cyclic or missing depends_on Fix: Validate job graph: a volute ns task manager
https://<volute-host>:8443/task-manager Default credentials: admin / volute-task | Parameter | Recommended value | Effect | |-----------|------------------|--------| | workers | 4–8 | Higher = more concurrency | | queue_max_size | 1000 | Prevents overflow | | task_timeout_default | 300s | Avoid hung tasks | | log_retention_days | 30 | Controls disk usage | name: nightly-etl tasks: - name: extract command:
volute-cli job validate nightly-etl Increase timeout per task: Start with simple scheduled tasks, then gradually introduce
# Create task curl -X POST -H "Authorization: Bearer $TOKEN" \ -d '"name":"backup","command":"/backup.sh"' \ https://volute.local/api/v1/tasks curl -X POST https://volute.local/api/v1/tasks/backup/run Get status curl https://volute.local/api/v1/tasks/backup/status 11. Glossary of Volute NS Task Manager Commands | Command | Description | |---------|-------------| | task create | Register a new task | | task run | Execute task once | | task schedule | Attach cron trigger | | job run | Execute a DAG of tasks | | worker scale | Adjust concurrent workers | | queue flush | Clear all pending tasks | 12. Conclusion The Volute NS Task Manager provides a robust foundation for automating routine operations and complex workflows. Start with simple scheduled tasks, then gradually introduce dependencies and custom triggers. For advanced use (e.g., dynamic task generation), refer to the Volute NS SDK documentation.