I wanted to design a complete end-to-end workflow orchestration engine.
It has the following requirements
- Linear workflow
- Parallel workflow - I wanted to execute n no of activities parallelly. After validates the results from all the activities I wanted to proceed to the next state or will fail the workflow
- Batch - say I have 30 activities to be completed but I want this to be done in a batch fashion. Like if the window size is 5 then I wanted to execute 5 activities at a time T. After executing all the activities and validates the results will proceed further or fail the workflow.
- Loop - wanted to run an activity infinitely until some condition meets
- Child Workflow
- Polling
All 1-5 are supported easily in Cadence workflow. I am not sure what you mean by
Polling
. If you can provide more details, I will update this answer to help you.Here is the sample to execute activities in Leaner+parallel/batch+loop:
And this is the sample of using ChildWorkflow.