w****w 发帖数: 521 | 1 Any wheel that I can use to schedule about 400 jobs? There are dependencies
among these jobs, i.e., some jobs can not start if some other jobs not
finished. All jobs need to be done in 8 hours. |
g*****g 发帖数: 34805 | 2 Quartz.
dependencies
【在 w****w 的大作中提到】 : Any wheel that I can use to schedule about 400 jobs? There are dependencies : among these jobs, i.e., some jobs can not start if some other jobs not : finished. All jobs need to be done in 8 hours.
|
N*****m 发帖数: 42603 | 3 quartz不支持dag,应该用oozie or chronos
【在 g*****g 的大作中提到】 : Quartz. : : dependencies
|
w****w 发帖数: 521 | 4
If I have 3 jobs, job 3 can only run when both job 1 and job 2 are finished.
How can I do this in Quartz? Thanks.
【在 g*****g 的大作中提到】 : Quartz. : : dependencies
|
w****w 发帖数: 521 | 5
Looks like oozie is very promising. Thanks.
【在 N*****m 的大作中提到】 : quartz不支持dag,应该用oozie or chronos
|
g*****g 发帖数: 34805 | 6 It's not clear what you are trying to achieve. Are you trying to finish a
batch of jobs as quickly as possible or they should be triggered on schedule
?
Quartz can do the later if not too complicated but I guess other tools
recommended can do a better job.
http://www.quartz-scheduler.org/documentation/faq#FAQ-chain
For the former, you can check Spring Batch.
【在 w****w 的大作中提到】 : : Looks like oozie is very promising. Thanks.
|
w****w 发帖数: 521 | 7 It's former. Some jobs are critical, if they fail, subsequent jobs can not
start until on call person fixes the problem. All failed jobs need to be
rerun.
schedule
【在 g*****g 的大作中提到】 : It's not clear what you are trying to achieve. Are you trying to finish a : batch of jobs as quickly as possible or they should be triggered on schedule : ? : Quartz can do the later if not too complicated but I guess other tools : recommended can do a better job. : http://www.quartz-scheduler.org/documentation/faq#FAQ-chain : For the former, you can check Spring Batch.
|
l******t 发帖数: 55733 | |