From: "Nathan Scott" <nathans@wobbly.melbourne.sgi.com>
To: bobyetman@att.net
Cc: linux-kernel@vger.kernel.org, pcp@oss.sgi.com
Subject: Re: Loadavg calculation
Date: Tue, 7 Nov 2000 10:20:18 -0400 [thread overview]
Message-ID: <10011071020.ZM117549@wobbly.melbourne.sgi.com> (raw)
In-Reply-To: bobyetman@att.net "Loadavg calculation" (Nov, 5 12:55pm)
hi,
As you've suggested, you'd be better off not using the load
average but rather some other measure (or combination of
measures) to figure out when you have enough spare cycles or
bandwidth.
The "pmie" tool might be useful to you - here's a contrived
example I just knocked up (instead of a "print" you'd want
to run your program via the "shell" keyword) with an
occassional artificial load in the background.
kernel.all.cpu.idle is aggregate idle time across all cpus.
pmie converts it to a rate (#idle milliseconds / 8 seconds)
so it will always have a value between 0 (no idle time) and
1 (lots of idle time).
$ pmie -t 8sec -v
( kernel.all.cpu.idle > 0.5 ) -> print "start a new job";
^D
expr_1: ?
Tue Nov 7 09:33:36 2000: start a new job
expr_1: true
Tue Nov 7 09:33:44 2000: start a new job
expr_1: true
Tue Nov 7 09:33:52 2000: start a new job
expr_1: true
expr_1: false
expr_1: false
expr_1: false
Tue Nov 7 09:34:24 2000: start a new job
expr_1: true
Tue Nov 7 09:34:32 2000: start a new job
expr_1: true
expr_1: false
expr_1: false
Tue Nov 7 09:34:56 2000: start a new job
expr_1: true
pmie is one of the gpl'd pcp tools which you can get from
the sgi oss site... hope its useful to you. mailto the
pcp list if you need any more info.
cheers.
bobyetman@att.net wrote:
>
> I'm working a project a work that is using Linux to run some very
> math-intensive calculations. One of the things we do is use the 1-minute
> loadavg to determine how busy the machine is and can we fire off another
> program to do more calculations. However, there's a problem with that.
>
> Because it's a 1 minute load average, there's quite a bit of lag time from
> when 1 program finishes until the loadavg goes down below a threshold for
> our control mechanism to fire off another program.
>
> Let me give an example (all on a 1-cpu PC)
>
> HH:MM:SS
> 00:00:00 fire off 4 programs
> 00:01:00 loadavg goes up to 4
> 00:01:30 3 of the 4 programs finish loadavg still at 4
> 00:02:20 load avg goes down to 1, below our threshold
> 00:02:21 we fire off 3 more programs.
>
> We'd like to reduce that almost 50 second lag time. Is it possible, in
> user-space, to duplicate the loadavg calculation period, say to a 15
> second load average, using the information in /proc?
>
> The other option we looked at, besides using loadavg, was using idle pct%,
> but if I read the source for top right, involves reading the entire
> process table to calculate clock ticks used and then figuring out how many
> weren't used.
>
> Ideas, opinions welcome. Yes, I read the list, so either respond direct
> to me, or to the list.
>
> bobyetman@att.net (Robert A. Yetman)
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> Please read the FAQ at http://www.tux.org/lkml/
--
Nathan
--
Nathan
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/
next reply other threads:[~2000-11-06 23:24 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2000-11-07 14:20 Nathan Scott [this message]
-- strict thread matches above, loose matches on Subject: below --
2000-11-05 12:55 Loadavg calculation bobyetman
2000-11-05 13:58 ` Andi Kleen
2000-11-05 14:01 ` bert hubert
2000-11-05 20:24 ` Albert D. Cahalan
2000-11-06 8:14 ` Sean Hunter
2000-11-06 22:39 ` Pavel Machek
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=10011071020.ZM117549@wobbly.melbourne.sgi.com \
--to=nathans@wobbly.melbourne.sgi.com \
--cc=bobyetman@att.net \
--cc=linux-kernel@vger.kernel.org \
--cc=pcp@oss.sgi.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox