-
Bug
-
Resolution: Postponed
-
Major
-
None
-
jenkins 1.593
multijob plugin 1.16
With a job configuration like:
parent_job:
child_job
child_job
occasionally we'll get output that looks like this:
Starting build job child_job.
Starting build job child_job.
Finished Build : #123 - Job : child_job with status : SUCCESS
<this hangs forever, so we abort the parent_job>
Aborting all subjobs.
Finished Build : #124 - Job : child_job with status : ABORTED
However, job #124 will always have finished successfully. We see this relatively rarely (~5% of parent_job builds?). My guess is that there's a race condition causing this, since we usually see this during times of high load (ie many child_job instances are being started).
- duplicates
-
JENKINS-26678 Deadlock when running as many multijobs as there are executors
-
- Closed
-
- is duplicated by
-
JENKINS-28662 abrupt close of down stream job and child job is missing from the build panel
-
- Closed
-
-
JENKINS-29981 MultiJob doesn't detect that the job has finished
-
- Closed
-
- links to
[JENKINS-27371] Parent builds sometimes hang on successful child builds of same type
Link |
New:
This issue duplicates |
You have the option "Kill the phase on:" for each sub-jobs on a phase. When this is on "Failure", this kill all others builds when this sub-job has failed. Select "never" to never kill others sub-jobs.
The option "Abort all other job" is when the job is aborted manually by an user.