Creating new processes is very slow on some of my machines, and not others.

The machines are all similar, and some of the slow machines are running the exact same workloads on the same hardware and kernel (2.6.32-26, Ubuntu 10.04) as some of the fast machines. Tasks that do not involve process creation are the same speeds on all machines.

For example, this program executes ~50 times slower on the affected machines:

int main()
{
    int i;
    for (i=0;i<10000;i++)
    {
        int p = fork();
        if (!p) exit(0);
        waitpid(p);
    }
    return 0;
}

What could be causing task creation to be much slower, and what other differences could I look for in the machines?

Edit1: Running bash scripts (as they spawn a lot of subprocesses) is also very slow on these machines, and strace on the slow scripts shows the slowdown in the clone() kernel call.

Edit2: vmstat doesn't show any significant differences on the fast vs slow machines. They all have more than enough RAM for their workloads and don't go to swap.

Edit3: I don't see anything suspicious in dmesg

Edit4: I'm not sure why this is on stackoverflow now, I'm not asking about the example program above (just using it to demonstrate the problem), but linux administration/tuning, but if people think it belongs here, cool.

link|improve this question

57% accept rate
Are there any strange messages in dmesg(1) output? – sarnold Mar 23 '11 at 6:32
feedback

migrated from serverfault.com Mar 22 '11 at 23:15

This question came from our site for system administrators and desktop support professionals.

4 Answers

I might start by using strace to see what system calls are being run, and where the slow ones hang. I'm also curious as to how you're using waitpid() here. On my systems, the signature for waitpid is

pid_t waitpid(pid_t pid, int *status, int options);

It sort of looks like you're using wait(), but passing in the pid of the child process instead of an int "status" that has an OR of the status flags you want to test for. That could cause some strange things to happen, I would expect, if the PID ended up being interpreted as a status mask.

link|improve this answer
This is the same as waitpid(p, 0, 0) which just waits for the pid p to exit. *status is a pointer to write back the status information if you want it (I don't care, so null), not the OR flags like you said (that is the options param). Changing the code to waitpid(0, 0, 0) or just wait(0) yields the same results. I also updated the question with my strace results. – Knio Mar 22 '11 at 21:34
You're right, my bad, regarding the status/options params. The fact that clone is slow is very interesting. That should be very fast. I'm speculating wildly here, but it seems to me that this should only be slow if the kernel is struggling somehow (perhaps dealing with interrupts from hardware? Maybe with memory allocation?). I might look at dmesg on the slow machines and see if there's anything obviously strange happening, like a SCSI controller freaking out. – malcolmpdx Mar 22 '11 at 21:59
You might also want to look at the output from "vmstat 5" for a while, on the assumption that if the affected machines have a lot of context switching or interrupts going on relative to the same stats from a working machine, it might lead to the culprit (check the "in" and "cs" columns) – malcolmpdx Mar 22 '11 at 22:02
feedback

Differences to look at are the kernel (parameters, device drivers, active modules) and the hardware (cpu version, number of cpus, memory configuration, peripheral devices).

Also: do machines change behavior after a reboot/power cycle?

EDIT:

The low performance is probably related to the (virtual) memory hierarchy. This hierarchy is very complex, and this complexity can lead to strange effects. Somewhere on the way from TLB to data caches to main memory strange conflicts may occur. These can be caused by a slightly different memory layout of the kernels of the different machines, or because the memory hierarchy (hardware) is actually slightly different.

Of course there could be other reasons, a strange peripheral (generating interrupts), a different workload (e.g. number of active processes), ...

If you can solve this problem, please share the results! Thanks.

link|improve this answer
feedback

Are the values of "/sbin/sysctl vm.overcommit_memory" the same for all the systems? If not, that could explain the difference.

Allowing overcommitment will make fork() much faster, but it means newly-allocated pages won't be backed by RAM or swap. If/when you touch an unbacked page, the OS has to find backing for it--and if it can't, the process gets killed. This isn't a problem if all the child does is exec(), as happens in a system() call, since all those unbacked pages are discarded; however, it could lead to serious problems for other users of fork().

link|improve this answer
feedback

Have you checked the BIOS configuration, in case you have the CPU caches disabled, or the power configuration messed up, or some systems are overheating, or some memory is underclocked...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.