Re: Intermittently met 404 when fetch /queue/item//api/json

2015-09-12 Thread zhu kane
Daniel, Thanks for your explanation. Looks like it is not easy to track the final build number if it's scheduled via remote api. The caller only receives the queue item after scheduling a new build. And the queue item which is corresponding to the new build will be removed in 5 minutes after the

Windows Jenkins master losing Linux slaves..

2015-09-12 Thread Rigdha Acharya
I have a Windows Jenkins master and I use the swarm plugin to connect slave nodes to it. My Windows slave work fine. Linux slaves connect to the master and show up as available nodes only to disappear from the masters' list in a few minutes. On checking the slaves, swarm plugin log still says t

Re: [workflow-plugin] keeping default parameters in build step

2015-09-12 Thread Daniel Beck
It behaves like the internal APIs do, not enforcing anything on parameters being passed to builds -- which means defined parameters may not be set, and undefined parameters may be set. Which is probably the wrong approach for a user-facing script DSL. On 11.09.2015, at 06:13, Michael Neale wro

Re: Intermittently met 404 when fetch /queue/item//api/json

2015-09-12 Thread Daniel Beck
On 12.09.2015, at 11:41, zhu kane wrote: > Does it mean the third party who are using remote APIs to track the job > information having to fetch the corresponding job information via queue item > in 3 minutes? It's five minutes, otherwise you're right. > What will happen if the queue item is

Re: Jenkins HTTP frontend not acceccable, jenkins/java service needs most CPU/RAM capacity on jenkins service

2015-09-12 Thread Christopher Orr
Please don't post 3MB+ log files (twice) to a list with ~7000 people on it. The suggestion was to take a thread dump when Jenkins "goes crazy", rather than to post a log file covering a huge period of time. On 08/09/15 07:40, jje wrote: > Find attached jenkins syslog. I've to admit log is pretty

Re: Findbugs found bugs but FindBug Jenkin plugin doesn't regconize at all

2015-09-12 Thread Ullrich Hafner
Then please create a bug report and attach the file. > Am 11.09.2015 um 03:08 schrieb Tùng Trần : > > "Is the bug referenced in the result file /root/.jenkins/jobs/apache- > cxf-sample/workspace/apache-cxf/apache-cxf-sample/target/findbugs/findbugsXml.xml?" > => Yes Ultron, :D > > -- > You recei

AWS Elastic Beanstalk No Downtime Upgrade /Cname swap.

2015-09-12 Thread Jacek Tomaka
Hi, Is there a plugin allowing to do CNAME swap upgrades of Elastic Beanstalk app? Any plans to implement this feature in one of the following plugins? https://wiki.jenkins-ci.org/display/JENKINS/AWS+Beanstalk+Publisher+Plugin https://wiki.jenkins-ci.org/display/JENKINS/AWSEB+Deployment+Plugin A

Re: Intermittently met 404 when fetch /queue/item//api/json

2015-09-12 Thread zhu kane
After browsing the source code, I found below code changed by kohsuke in Queue.java[1], +// private final FifoMap leftItems = new FifoMap(256);+ private final Cache leftItems = CacheBuilder.newBuilder().expireAfterWrite(5*60, TimeUnit. SECONDS).build(); A fixed size map was replaced by a cache w

Preparing build sandbox on multiple slaves

2015-09-12 Thread Mayur Barge
Hi, My requirement is to clone stash workspace for build on multiple slave nodes. I want to run this process parallel. Please help. Currently I have created sync job for every slave and triggering all the jobs from master project as a post build action which I think is n