Can the addition of a lightweight workflow engine,
Each node can be based on the results of the operation to return to the state for the next operation, and can edit the script to deal with the process,
For example:
if (node1.status==true && node2.status==true)
… case 1 doing
else
… case 2 doing
--------
if (node1.status==true)
… run node1.1
else if (node1.status==false)
… run node1.2
Hi,
similar functionality is provided by the Clover Server, which can execute actions depending on some condition. For example “send an email if this graph fails” or “start cleanup graph if this graph finishes successfully”.
This part can function as plug-ins cloveretl.component like cloverETL engine on the inside, because this is a basic needs.
cloveretl.server product positioning should be user application level, while the open-source cloveretl.engine should be to provide development-level API.