This page lists the most common questions and points you to the exact documentation page to read next.
-
I am an orchestration/Agent developer. How do I map my workflow into ExecGo
TaskGraph? -
What does
depends_onmean, and why doesn't downstream automatically get upstream outputs? -
Why do downstream tasks become
skippedafter a failure? -
How do I get the final result after submitting? Is it synchronous or asynchronous?
-
Why do I get
400 Bad Request? What doesTaskGraph.Validate()mean? -
How should I set
retryandtimeout?- See: Task DSL Reference (Index)
- Failure/retry semantics: failed vs skipped
-
What does
result/errorlook like? How should I parse it?- See: API Reference (Index)
- Multi-language clients: integration examples
-
How do I deploy ExecGo with Docker Compose?
-
How do I deploy ExecGo to Kubernetes (Deployment/Service/PVC)?
-
Is it safe to set
replicas > 1on Kubernetes?
- See: Replica safety notes
- How do I call ExecGo from Go?
- How do I call ExecGo from Java?
- How do I call ExecGo from Python?
- How do I call ExecGo from Node.js + TypeScript?
- Is the
shellexecutor safe? How do I avoid arbitrary command execution risks?
- See: Executors & Parameters (Index)
- More detail:
Shell 执行器参数
- Where is task state stored? How is persistence/recovery handled?
- How do I extend executors or implement a custom executor?
- I have idempotency / duplicate submission problems. What should I do?