You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
New POST endpoint in Workflow-Graph-Node /restart which will actually cover both re-run and resume cases
This endpoint takes a RestartRequest: { runId: String, params: JSON }
have an option to dry-run to be able to see what node would do with out actually doing it
With this implementation if workflow_url, workflow_version, or the params Avro schema for a workflow-graph-node changes, that node cannot resume/rerun any runs from before the change.
Possible Implementation
Workflow-Graph-Node will
fetch the run
create a RunRequest with the workflow_url, workflow_version, sessionId (if it exists) and params (which is either the provided one or the params from existing run)
Verify workflow_url, workflow_versiom. params (validate with Avro schema) etc.
Start run
Add the new runId to its RUNNING queue
The text was updated successfully, but these errors were encountered:
jaserud
changed the title
Implement - Compiling parameters for Resuming and re-running jobs POC
Implement: Compiling parameters for Resuming and re-running jobs POC
Jan 7, 2022
jaserud
changed the title
Implement: Compiling parameters for Resuming and re-running jobs POC
Implement: Compiling parameters for Resuming and re-running jobs
Jan 11, 2022
Wiki with design has been created here
Detailed Description
Possible Implementation
Workflow-Graph-Node will
The text was updated successfully, but these errors were encountered: