Set limit on number of threads

2013-08-12 Thread Justinas Urbanavicius
Hi, I was wondering, if there is a way to limit the number of threads that jenkins uses, at start-up i see that there are ~28 threads running jenkins.war, and they use a lot of memory. Don't know why there should be a need for that much threads *Platform *Linux debian x64 *Java *version

Re: Set limit on number of threads

2013-08-12 Thread Daniel Beck
Check out http://yourjenkins/threadDump -- the threads mostly have nice names that explain what they're for. Maybe you have some success changing --handlerCountStartup if you're using winstone (http://winstone.sourceforge.net/#commandLine) to reduce the number of initial request handlers. On

Re: Set limit on number of threads

2013-08-12 Thread Andrew Melo
Hello, Under linux, each thread is not individually using the full amount of memory that shows up in ps or top. There are a significant number of shared memory pages involved, so the total memory usage isn't simply sum( RSS_thread1, RSS_thread2 ... RSS_threadN ) HTH Andrew On Mon, Aug 12, 2013

How to run a build step from the master and not the slave?

2013-08-12 Thread Avihay Eyal
Hi, I have a job running on a dedicated slave. This job should run unittests and regression tests via robot framework. The thing is, that I want to run the robot framework from the master, and not the slave, as I want to install the robot framework only once on the master. According to the

Re: Set limit on number of threads

2013-08-12 Thread Justinas Urbanavicius
thanks threadDump was very helpfull, it seems they are all needed :) On Mon, Aug 12, 2013 at 9:14 AM, Daniel Beck m...@beckweb.net wrote: Check out http://yourjenkins/threadDump -- the threads mostly have nice names that explain what they're for. Maybe you have some success changing

Re: How to run a build step from the master and not the slave?

2013-08-12 Thread Daniel Beck
Instead I'd try to download it to the job's WORKSPACE on the slave during the build and run it from there, if possible. On 12.08.2013, at 08:19, Avihay Eyal avihay.e...@gmail.com wrote: Hi, I have a job running on a dedicated slave. This job should run unittests and regression tests via

Re: How to run a build step from the master and not the slave?

2013-08-12 Thread Avihay Eyal
The regression tests *runs on the slave*, but they're *executed via SSH,*from the *robot framework*. I prefer the robot framework execution to happen from the master, cause I don't want to install the robot framework on each slave. On Monday, August 12, 2013 9:30:04 AM UTC+3, Daniel Beck

Re: Parallelizing JUnit regression tests

2013-08-12 Thread Stephen Connolly
I would look into partitioning the tests into batches, so that keystone tests are in earlier batches and fine grained tests are in later batches. I would also pull all the fast tests into earlier batches. If you collect the average test execution time for each test case, you can sort tests based

Why is my Jenkins logging in german?

2013-08-12 Thread Steffen Breitbach
And how do I stop it? Hi everyone! Jenkins os logging in german, mostly events related to slaves. Here are some examples: SEVERE: Kann keinen Slave-Agenten starten für bsjenkinsslave02 WARNING: Node monitoring bsjenkinsslave01 for Antwortzeit aborted. Exception in thread Monitoring

Unwanted workspace cleanup

2013-08-12 Thread Viktor Tarasov
Hi, the workspace of my matrix job is regularily cleaned up. I have no 'cleanup' plugin installed. Jenkins version 1.499 . Where from this cleanup came? How can it be configurated/disabled/... ? There is the cleanup logs: Aug 12, 2013 10:45:17 AM hudson.model.AsyncPeriodicWork$1 run INFO:

issue with subversion repo and jenkins

2013-08-12 Thread Subin V
Hi All, I am trying to setup Jenkins *Latest and greatest (1.526)*http://mirrors.jenkins-ci.org/war/latest/jenkins.war Here are my system details: java –version: java version 1.6.0_45 Java(TM) SE Runtime Environment (build 1.6.0_45-b06) Java HotSpot(TM) 64-Bit Server VM (build

Re: git plugin - pulling in pull requests from Stash

2013-08-12 Thread Vincent Latombe
Hi, I don't have all the settings in mind, but you need to tweak the refspec to achieve this. Also, it may be better to fetch refs/pull-requests/*/merge-clean because you'll always get a non-conflicting commit. Vincent 2013/8/11 John D. Ament john.d.am...@gmail.com Hi We're playing around

Re: git plugin - pulling in pull requests from Stash

2013-08-12 Thread John D. Ament
Well, the first issue I ran into is that the git plugin won't accept refs/pull-requests/*/merge, saying it's an illegal wildcard. On Mon, Aug 12, 2013 at 7:24 AM, Vincent Latombe vincent.lato...@gmail.com wrote: Hi, I don't have all the settings in mind, but you need to tweak the refspec to

Conditional buildstep plugin regex match not working as expected?

2013-08-12 Thread LarsR
Hi, I'm setting up Jenkins on Windows and plan to use some conditional build steps in my scripts, so I installed the conditional buildstep plugin together with the run-condition token macros plugins. I'm trying to use the regular expression match for the condition but cannot get a simple

Re: Why is my Jenkins logging in german?

2013-08-12 Thread Eduardo Dias
Hi Steffen, we use in our Jenkins the configuration to ignore the Browser preferences and force the language in JAVA_ARGS in /etc/default/jenkins JAVA_ARGS=-Xms512m -Xmx2048m -XX:MaxPermSize=2048m -XX:PermSize=512m -Duser.language=en -Duser.country=US [image: Imagem inline 1] I hope it help you

View All Builds (Build History) Page : Missing Data

2013-08-12 Thread shanky
Hey Guys, I have tried to search on it, look through the forums / groups, read the documentation etc.. so finally posting! When I go to the Build History Tab from the jenkins home page (/view/All/builds), I see a timeline plotting my builds. But the history shown in the timeline is very

Re: How to run a build step from the master and not the slave?

2013-08-12 Thread Kevin Fleming (BLOOMBERG/ 731 LEXIN)
In that case, this is not a true slave (a Jenkins slave), but it's a 'robot framework slave'. You'll need to create a job that runs on the master and uses the framework to connect to, and run work on, the slave. - Original Message - From: jenkinsci-users@googlegroups.com To:

Re: Unwanted workspace cleanup

2013-08-12 Thread Baptiste Mathus
Hi, See https://groups.google.com/forum/m/#!topic/jenkinsci-issues/LFIqr-z4Q6Efor the property to disable it. Jenkins actually deletes unused ws to keep disk space. Runs by default after 30 days. See

jobs migration between slaves - quick question

2013-08-12 Thread Z W
Hi All We have a slave that's running out of disk space. To create room, we thought we like to manually move those folders under slave's workspace to another new slave under the new slave's workspace. Would Jenkins/Hudson still work to use both slaves when kicking off jobs ? Thanks Sincerely

Re: Build flow plugin: How to copy results from downstream jobs

2013-08-12 Thread John Russell
Do you guys have any idea how to pull files, specifically test results, from the jobs started in a build flow up to the build flow job itself so it can be the one that presents all of the test results? I presume that if I can copy them from the slaves up to the workspace of the build flow

Re: jobs migration between slaves - quick question

2013-08-12 Thread Baptiste Mathus
Not sure I totally understand. If what you ask is is having two slaves instead of just one handled correctly? then the answer sure is yes. When starting jobs, jenkins master will just see which slaves have available executor and launch builds on the free ones. Cheers Le 12 août 2013 19:31, Z W

jenkins very slowly at finish any jobs

2013-08-12 Thread Luis Lopez
i have jenkins 1.526. When a job ends takes forever to cominece another job. Can anyone help me? I installed jenkins on ubuntu 12.04 using deb distrbutions. -- You received this message because you are subscribed to the Google Groups Jenkins Users group. To unsubscribe from this group and stop

Re: jenkins very slowly at finish any jobs

2013-08-12 Thread Richard Bywater
Is the job running on the master or a slave? If its the slave then the workspace gets copied back to the master so the bigger the workspace the longer it will probably take. Richard. On Tue, Aug 13, 2013 at 8:55 AM, Luis Lopez swluislo...@gmail.com wrote: i have jenkins 1.526. When a job ends

Re: jenkins very slowly at finish any jobs

2013-08-12 Thread Kevin Fleming (BLOOMBERG/ 731 LEXIN)
I don't believe this is true; workspaces are never copied wholesale. Parts of them can be copied if the job has been configured to preserve artifacts, and some plugins will also copy parts of them if needed (the Cobertura plugin, for example). Unless those features have been enabled though, the

Build Flow Plugin: run build flow job on commit

2013-08-12 Thread Denis Belorunov
I want to start flow when there is commit into CVS repository. But I do not really want to setup CVS as SCM for my flow job, as checkout takes significant time and does not really needed. Plugin description contains this statement If you want to implement a build-pipeline after a commit on

Re: jenkins very slowly at finish any jobs

2013-08-12 Thread Richard Bywater
Oh - wonder how the Workspace option for a job works? On my system I can see all the contents of the entire workspace - not just the artifacts and test unit results etc. Richard. On Tue, Aug 13, 2013 at 9:10 AM, Kevin Fleming (BLOOMBERG/ 731 LEXIN) kpflem...@bloomberg.net wrote: I don't

Aggregated test results for parallel RSpec tests

2013-08-12 Thread Chris Gerber
I'm having trouble aggregating the results of my RSpec tests at the end of my build flow. What I would ultimately like to achieve is: 1. GitHub triggers build 2. Build flow splits spec into N equally sized groups of files matching **/[.].*_spec.rb 3. Each group runs in parallel and

Entire build history got deleted. All content of every job folder got deleted.

2013-08-12 Thread J Starbird
I've been using Jenkins for about a year now and never had this happen. Sometime between last Friday evening and today ALL of the build history somehow got removed. I don't mean that it's just not displaying the info I mean if I go to the folder where the data should live the actual data is