Re: Parallel from build flow plugin never ends

2016-05-05 Thread alexmkv

>
> Check if your builds are merged with already queued builds

Can you explain, how this can be checked?

identical parameters could cause this.

All jobs for now must have different params set. There are three 
parameters, but their combination is unique in parent job. Parent jobs 
executed sequentially.
 

On Thursday, May 5, 2016 at 8:09:33 PM UTC+3, stefan thomasson wrote:
>
> Hi,
> Check if your builds are merged with already queued builds, identical 
> parameters could cause this.
>
>
> 4 maj 2016 kl. 09:28 skrev alexmkv >:
>
> We have one job that executes several other using build flow jenkins 
> plugin.
>
> Main points of used flow DSL:
>
> def parallelJobs = [];
> jobParams.each { 
>   ...
>   parallelJobs.add({
> res = build(jobName
>   , PARAM_NAME: param_value
>   ... another_params ...
>  )
>})
> }
> parallel(parallelJobs)
>
> In log of this job I can see schedule and start of all added jobs, but not 
> completion of them (most of them completed, but some just lost). If I check 
> individual logs for not completed jobs they are really finished, but parent 
> job doesn't see this, parallel never ends and everythings hangs forever.
>
> For long time this job worked fine, but for now it hangs for every build. 
> (There was several changes but for now it's difficult to find reason).
>
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Jenkins Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to jenkinsci-use...@googlegroups.com .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/jenkinsci-users/38004bc1-54d3-41f4-96bb-49e8386b88b0%40googlegroups.com
>  
> <https://groups.google.com/d/msgid/jenkinsci-users/38004bc1-54d3-41f4-96bb-49e8386b88b0%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/e7677755-f547-4b18-b648-4ac5d9b526b8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Parallel from build flow plugin never ends

2016-05-04 Thread alexmkv


We have one job that executes several other using build flow jenkins plugin.

Main points of used flow DSL:

def parallelJobs = [];
jobParams.each { 
  ...
  parallelJobs.add({
res = build(jobName
  , PARAM_NAME: param_value
  ... another_params ...
 )
   })
}
parallel(parallelJobs)

In log of this job I can see schedule and start of all added jobs, but not 
completion of them (most of them completed, but some just lost). If I check 
individual logs for not completed jobs they are really finished, but parent 
job doesn't see this, parallel never ends and everythings hangs forever.

For long time this job worked fine, but for now it hangs for every build. 
(There was several changes but for now it's difficult to find reason).

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/38004bc1-54d3-41f4-96bb-49e8386b88b0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.