kttle在job中并行执行ktr和kjb

话不多说,先看案例

kttle在job中并行执行ktr和kjb_第1张图片

描述:我们想让这三个ktr同时的并行执行,当前的这种方式他的执行顺序是随机的挨个执行的

解决办法:

kttle在job中并行执行ktr和kjb_第2张图片

这样的话,就会并行执行每个ktr了

使用这个功能会有一个提醒:

kttle在job中并行执行ktr和kjb_第3张图片

 

 

 

官方对parallel 功能的描述:

Functionly:

All the job entries following the one where you enabled the "launch in parallel" option are going to be executed in parallel.  Since the job entries following that one are dependent on it, these will also be executed in parallel. (because of the backtracking algorithm that the job execution engine uses).

Limitation:

The execution model cited above makes it harder to to execute a certain number of job entries in parallel and then simply continue with something else in sequence.
To do this, we suggest you wrap up the parallel work in a separate Job.

 

你可能感兴趣的:(kttle在job中并行执行ktr和kjb)