Is there any way to create a large number of parallel sequences in parallel scope, without having to drag and drop the corresponding number of sequences.
For example: I want to have 3 threads, hence drag and drop 3 sequences. If i want to have N threads - (ex: 10), the canvas will become impossible to be seen.
For Each (item in Collection) // Or While (condition)
Parallel
Invoke Workflow File
This setup will execute the workflow concurrently for each item in the collection or based on the condition specified in the loop. The Parallel activity ensures that each invocation runs concurrently, making efficient use of available resources.
Is this correct, cause the behavior of the process wen like this:
Start first time, perform from start to end → Start second time → Start n time → End
Did I miss anything, cause from what I observed it wasnt running concurrently?
Update: Same thing happended with your 2nd approach @Palaniyappan