У меня есть подпружиненная партия, указанная ниже.
1) Step1, Step2, Step3 и Step4 работают параллельно с использованием split.2) Требуется запустить еще одно разделение на основе следующих условий.
step5 - после завершения step1, step2 и step3.step6 - после завершения step1, step2 и step4
<job id="job1">
<split id="splitForSet_A" task-executor="taskExecutor" next="splitForSet_B">
<flow><step id="step1" parent="s1"/></flow>
<flow><step id="step2" parent="s2"/></flow>
<flow><step id="step3" parent="s3"/></flow>
<flow><step id="step4” parent="s4”/></flow>
</split>
<another split>
<flow><step id="step5” /></flow> — This is should start once step1 ,step2 and step3 are completed.
<flow><step id="step6” /></flow> — This should start once the step1,step2 and step4 are completed.
</another split>