Suggestion: Simplify Sequential and/or Concurrent job scheduling #19672
clayheaton
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It is a pain in the butt to set up a series of jobs that should execute sequentially (or even concurrently). To set them up sequentially, it's easiest to have Job 2 be attached to a Sensor that triggers off of the final step in Job 1. What that is easy enough with 2-3 jobs that have to run sequentially, it's a confusing mess when there are 50 jobs that must run sequentially.
Similarly, it's a bit of a pain to set up concurrent schedules for jobs that need to run concurrently.
I propose the addition of
SequentialJobScheduleDefinition
andConcurrentJobScheduleDefinition
:Similarly, for concurrent jobs:
Beta Was this translation helpful? Give feedback.
All reactions