You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ParallelJob: create multiple concurrent Jobs. Scheduling semantics. From the workflow perspective, dependency can be built on the ParallelJob but not on the individual Job.
SequentialJob: create a series of sequentially executed Jobs. No scheduling semantics. From the workflow perspective, dependency can be built on the SequentialJob but not on the individual Job.
Scheduling can be confusing.
Replace it with every, and distinguish it from until and assert.
(Although all these semantics use the same scheduling logic in the background).
Questions: should we allow for concurrent state, metrics, and cron policies to be specified? If so, which operator is applicable ? Is there any case about this need?
The text was updated successfully, but these errors were encountered:
fnikolai
changed the title
Replace Abstraction names
Replace Job Semantics
Jan 10, 2023
Services
andCluster
can be confusing.Replacing it with the following semantics.
Job
: create a pod. No scheduling semantics.ParallelJob
: create multiple concurrentJobs
. Scheduling semantics. From the workflow perspective, dependency can be built on theParallelJob
but not on the individualJob
.SequentialJob
: create a series of sequentially executedJobs
. No scheduling semantics. From the workflow perspective, dependency can be built on theSequentialJob
but not on the individualJob
.Scheduling can be confusing.
Replace it with
every
, and distinguish it fromuntil
andassert
.(Although all these semantics use the same scheduling logic in the background).
state
,metrics
, andcron
policies to be specified? If so, which operator is applicable ? Is there any case about this need?The text was updated successfully, but these errors were encountered: