* [linux-lvm] Daemon or Thread with 5 minute interval
@ 2005-05-26 11:50 Howard Rifkin
2005-05-26 12:22 ` johnpaul
2005-05-26 14:48 ` [linux-lvm] " Bill Mair
0 siblings, 2 replies; 6+ messages in thread
From: Howard Rifkin @ 2005-05-26 11:50 UTC (permalink / raw)
To: linux-lvm
I have been working on a project that analyzes "noise" in Linux clusters
running large parallel jobs. Where noise is caused by daemons or kernel
threads periodically waking up and slowing down a process of a parallel
job enough so that is misses a rendezvous with the other processes and
so slows down the entire job. Using an internal tool I have been able to
track down several daemons that have been a large source of noise but,
after turning them all off I am left with a large noise spike that
occurs every 5 minutes. I have tried turning off most of the most common
daemons such as cron, ntp, syslog, ect. but, I am still left with this
spike. Not being a kernel expert myself I have not been able to
experiment with kernel threads. So, my question is does anyone know of a
kernel thread or daemon in the 2.4 kernel that wakes up every 5 minutes?
Thanks
Howard
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [linux-lvm] Daemon or Thread with 5 minute interval
2005-05-26 11:50 [linux-lvm] Daemon or Thread with 5 minute interval Howard Rifkin
@ 2005-05-26 12:22 ` johnpaul
2005-05-26 14:48 ` [linux-lvm] " Bill Mair
1 sibling, 0 replies; 6+ messages in thread
From: johnpaul @ 2005-05-26 12:22 UTC (permalink / raw)
To: howard.rifkin, LVM general discussion and development
Hi
Can you find the new process's name by getting the ps ax command or Stop
the crond and see what happens
Regards
John
----- Original Message -----
From: "Howard Rifkin" <howard.rifkin@hp.com>
To: <linux-lvm@redhat.com>
Sent: Thursday, May 26, 2005 5:20 PM
Subject: [linux-lvm] Daemon or Thread with 5 minute interval
> I have been working on a project that analyzes "noise" in Linux clusters
> running large parallel jobs. Where noise is caused by daemons or kernel
> threads periodically waking up and slowing down a process of a parallel
> job enough so that is misses a rendezvous with the other processes and
> so slows down the entire job. Using an internal tool I have been able to
> track down several daemons that have been a large source of noise but,
> after turning them all off I am left with a large noise spike that
> occurs every 5 minutes. I have tried turning off most of the most common
> daemons such as cron, ntp, syslog, ect. but, I am still left with this
> spike. Not being a kernel expert myself I have not been able to
> experiment with kernel threads. So, my question is does anyone know of a
> kernel thread or daemon in the 2.4 kernel that wakes up every 5 minutes?
>
> Thanks
>
> Howard
>
>
> _______________________________________________
> linux-lvm mailing list
> linux-lvm@redhat.com
> https://www.redhat.com/mailman/listinfo/linux-lvm
> read the LVM HOW-TO at http://tldp.org/HOWTO/LVM-HOWTO/
^ permalink raw reply [flat|nested] 6+ messages in thread
* [linux-lvm] Re: Daemon or Thread with 5 minute interval
2005-05-26 11:50 [linux-lvm] Daemon or Thread with 5 minute interval Howard Rifkin
2005-05-26 12:22 ` johnpaul
@ 2005-05-26 14:48 ` Bill Mair
2005-05-26 17:26 ` Howard Rifkin
1 sibling, 1 reply; 6+ messages in thread
From: Bill Mair @ 2005-05-26 14:48 UTC (permalink / raw)
To: linux-lvm
Howard Rifkin wrote:
> So, my question is does anyone know of a
> kernel thread or daemon in the 2.4 kernel that wakes up every 5 minutes?
[kupdated] can cause massive CPU load if your kernel does not have the IDE
chipset support for your system. I think it flushed any data in the HD
buffers to disk and if the chipset support isn't there, then the main CPU has
to do this using PIO.
--
Bill
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [linux-lvm] Re: Daemon or Thread with 5 minute interval
2005-05-26 14:48 ` [linux-lvm] " Bill Mair
@ 2005-05-26 17:26 ` Howard Rifkin
2005-05-26 19:42 ` Bill Mair
0 siblings, 1 reply; 6+ messages in thread
From: Howard Rifkin @ 2005-05-26 17:26 UTC (permalink / raw)
To: LVM general discussion and development, bill.mair
We do have the right kernel support for our didsks. But, you do not need
a lot of CPU activity to generate noise. Just enough to disrupt the
cashe. Does kupdated run every 5 minutes? If so it could still be the
culprit.
Thanks
Howard
Bill Mair wrote:
> Howard Rifkin wrote:
>
>> So, my question is does anyone know of a
>> kernel thread or daemon in the 2.4 kernel that wakes up every 5 minutes?
>
>
> [kupdated] can cause massive CPU load if your kernel does not have the
> IDE chipset support for your system. I think it flushed any data in the HD
> buffers to disk and if the chipset support isn't there, then the main
> CPU has
> to do this using PIO.
>
> --
> Bill
>
> _______________________________________________
> linux-lvm mailing list
> linux-lvm@redhat.com
> https://www.redhat.com/mailman/listinfo/linux-lvm
> read the LVM HOW-TO at http://tldp.org/HOWTO/LVM-HOWTO/
^ permalink raw reply [flat|nested] 6+ messages in thread
* [linux-lvm] Re: Daemon or Thread with 5 minute interval
2005-05-26 17:26 ` Howard Rifkin
@ 2005-05-26 19:42 ` Bill Mair
0 siblings, 0 replies; 6+ messages in thread
From: Bill Mair @ 2005-05-26 19:42 UTC (permalink / raw)
To: linux-lvm
Howard Rifkin wrote:
>
> We do have the right kernel support for our didsks. But, you do not need
> a lot of CPU activity to generate noise. Just enough to disrupt the
> cashe. Does kupdated run every 5 minutes? If so it could still be the
> culprit.
kupdated - journal update
kswapd - swapper
bdflush - flush IO
All/any of them could cause problems fir what you are doing, but I don't think
LVM is your problem.
--
Bill
^ permalink raw reply [flat|nested] 6+ messages in thread
* [linux-lvm] Re: Daemon or Thread with 5 minute interval
@ 2005-05-26 19:29 bill.mair
0 siblings, 0 replies; 6+ messages in thread
From: bill.mair @ 2005-05-26 19:29 UTC (permalink / raw)
To: LVM general discussion and development
Howard Rifkin wrote:
>> So, my question is does anyone know of a
>> kernel thread or daemon in the 2.4 kernel that wakes up every 5 minutes?
>
>[kupdated] can cause massive CPU load if your kernel does not have the IDE
>chipset support for your system. I think it flushed any data in the HD
>buffers to disk and if the chipset support isn't there, then the main CPU has
>to do this using PIO.
>
>--
>Bill
** In addition to my post I might add that kswapd and bdflushd also deal with
IDE drives.
** Correcting my initial reply, kupdated deals with "journal" flushing to the
HD, which may also be relevant on your cluster.
--
Bill
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2005-05-26 18:30 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-05-26 11:50 [linux-lvm] Daemon or Thread with 5 minute interval Howard Rifkin
2005-05-26 12:22 ` johnpaul
2005-05-26 14:48 ` [linux-lvm] " Bill Mair
2005-05-26 17:26 ` Howard Rifkin
2005-05-26 19:42 ` Bill Mair
-- strict thread matches above, loose matches on Subject: below --
2005-05-26 19:29 bill.mair
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).