Executing Workflows
Introduction
Once you have created a workflow in Rill Flow, you will receive a descriptorid
, composed of three parts: business ID (businessId), DAG graph ID (featureId), and DAG graph alias (alias). With this descriptorid
, you can submit your workflow.With this descriptorid
you can submit the workflow.
Workflow implementation in Rill Flow is asynchronous.In Rill Flow, the execution of workflows is asynchronous. The system assigns an execution_id
to each running workflow, allowing users to track the workflow's running status and obtain results upon completion.
接口使用
Submit a workflow task using the /flow/submit.json interface.
触发器功能
Rill Flow abstracts the triggering logic of workflows, supporting various methods like scheduled tasks and message queue triggers.
Backend Submission
See[执行管理](../06-background/03-execution.md# for more details).