I have a simple bash script that pipes output of one process to another. Namely:.
dostuff | filterstuff
It happens that on my Linux system (openSUSE if it matters, kernel 2.6.27) these both processes run on a single core. However, running different processes on different cores is a default policy that doesn't happen to trigger in this case.
What component of the system is responsible for that and what should I do to utilize multicore feature?
Note that there's no such problem on 2.6.30 kernel.
Clarification: Having followed Dennis Williamson's advice, I made sure with top program, that piped processes are indeed always run on the same processor. Linux scheduler, which usually does a really good job, this time doesn't do it.
I figure that something in bash prevents OS from doing it. The thing is that I need a portable solution for both multi-core and single-core machines. The taskset solution proposed by Dennis Williamson won't work on single-core machines. Currently I'm using:,
dostuff | taskset -c 0 filterstuff
but this seems like a dirty hack. Could anyone provide a better solution?
topseveral times (withouttaskset). When I did, sometimes the two processes were on the same CPU, sometimes different ones. – Dennis Williamson Sep 9 '09 at 13:49( dostuff ) | ( filterstuff )and see which core they show up on. One difference (if it matters) is that you're on a multicore system and I'm on a multi-processor (single core each) system. Why do you want to separate these processes anyway? Are they programs you wrote and can you change them so that they influence the scheduler themselves? – Dennis Williamson Sep 9 '09 at 14:36bzcat file.bz2 | gzip >file.gz. In the original case,dostuffperforms costly calculations and yields lots of output andfilterstuffarchives it on the fly. Data transfer is not a bottleneck in my case. – Pavel Shved Sep 9 '09 at 20:25