Saturday, November 12, 2011

Mysterious Jenkins Forks

A Fork in The RoadWe've been having a curious problem recently in DEV@Cloud where we see a Jenkins instance fork itself and the child process consumes 100% of a CPU. The child process is a fork in every sense: same cmdline parameters, file descriptors, etc. The parent process was still responsive, so our monitoring systems didn't usually detect this problem.

Whenever I've seen this, I would scratch my head, poke around a bit, and not really get anywhere with it. Today, I had the time to isolate one of these gremlins and see what was going on.

Strangely, the child process was unresponsive to strace or pstack, so I went back to the parent process and gave it a kill -3. This revealed a stuck Git polling thread. Aha! So the parent process had a thread which was trying to launch a Git process. Interesting.

Since Jenkins uses such descriptive thread names, I was able to find the Git polling log for the job and saw that it attempted to launch 6 days ago, and was still stuck. Even better, the timestamp on that git polling log and the timestamp on my Mysterious Jenkins Fork were exactly the same!

So, why was this git process being launched as a new jenkins process? I discovered this when I googled for "UnixProcess.forkAndExec" on a lark, and came across this wiki page in the first result. As per that page:

In Unix, the way Java launches a new process is first by forking the current process and then exec-ing. Therefore, for a brief period between fork and exec, there's temporarily two instances of your application server running on your system. If the application server you are running Hudson in is using 1GB virtual memory, this means you temporarily need 2GB of virtual memory


I did not know that! The wiki page goes on to talk about needing more swap space as a consequence of this. But we aren't getting that particular error message, so it doesn't seem likely that memory is our problem. Nevertheless, there are other resources that a process needs, such as file descriptors.

How many file descriptors does a Jenkins instance need? Based on what I've seen by doing a lsof -p in DEV@Cloud, we need about 500 for a given instance. Your instance may require more or less, depending on how many plugins you are using and likely other factors. So, if we are forking to exec a git process, that means we are going to need more than 1000 file descriptors open for that given user.

Interestingly, Fedora defaults to a maximum of 1024 open file descriptors (ulimit -n) for a given user. So if a single Jenkins instance forks to exec git, then it could temporarily go over this limit. I'm not sure why the process responds to this limit by consuming 100% of CPU instead of throwing an error -- this seems like a bug in Linux or the Sun JVM.

However, this would help explain why we rarely see this problem -- we're right at the maximum for normal case, and may only hit it when multiple git SCM pollings are running for a given Jenkins instance. We're going to increase the maximum open files a bit (the nofile setting in /etc/security/limits.conf) and see if that helps alleviate this issue.

[Update] Martin Ellis points out that Linux uses copy on write when forking so you shouldn't need to have double the memory available. He also points out the fork man page which may suggest that file handles are shared between the two processes:

The child inherits copies of the parent's set of open file descriptors. Each file descriptor in the child refers to the same open file description (see open(2)) as the corresponding file descriptor in the parent. This means that the two descriptors share open file status flags, current file offset, and signal-driven I/O attributes (see the description of F_SETOWN and F_SETSIG in fcntl(2)).


This might suggest that our guess (open file limits exceeded causes CPU spin) is malarkey. I'm not sure how to know for sure, though.

Tuesday, February 3, 2009

Joel Takes on Architecture Astronauts & TDD

Being something of a TDD devotee and Kent Beck fanboy, I really enjoyed this rant by Joel Spolsky.

Money quote:
People that say things like this have just never written a heck of a lot of code. Because what they're doing is spending an enormous amount of time writing a lot of extra code, a lot of verbiage, a lot of files, and a million little classes that don't do anything and thousands of little interface classes and a lot of robustness to make each of these classes individually armed to go out into the world alone and do things, and you're not going to need it.
I always enjoy reading Joel, he's a great writer. I tried listening to his pod casts, but only had 5 minutes of interesting discussion in a 60 minute show. Let's hope he keeps excerpting the good stuff in his blog.