pawel.kalisz
pawel.kalisz

Reputation: 1245

How to limit Jenkins child processes?

I have clean installation of Jenkins CI on my UbuntuServer 12.10, no jobs, no nothing, just Jenkins. Installation is from aptitude. What thrills me is that Jenkins is doing nothing at the moment and has something about 40 child processes, which consumes quite a lot of my server's memory. Is there a way to limit number of these child processes to, for example, 10?

Upvotes: 8

Views: 3700

Answers (1)

Manu Mohan
Manu Mohan

Reputation: 252

Yes you can.

go to Jenkins > Manage Jenkins > Configure System > Specify number of executers corresponding to the text box "# of executors"

Another best method is using slave machines to divide work load. Use master slave configuration to setup slave machines.

Upvotes: 1

Related Questions