From: Matt Dillon <dillon@earth.backplane.com>
To: Terry Lambert <tlambert2@mindspring.com>
Cc: Rik van Riel <riel@conectiva.com.br>,
arch@FreeBSD.ORG, linux-mm@kvack.org, sfkaplan@cs.amherst.edu
Subject: Re: on load control / process swapping
Date: Tue, 15 May 2001 10:24:34 -0700 (PDT) [thread overview]
Message-ID: <200105151724.f4FHOYt54576@earth.backplane.com> (raw)
In-Reply-To: <3B00CECF.9A3DEEFA@mindspring.com>
:Rik van Riel wrote:
:> So we should not allow just one single large job to take all
:> of memory, but we should allow some small jobs in memory too.
:
:Historically, this problem is solved with a "working set
:quota".
We have a process-wide working set quota. It's called the 'memoryuse'
resource.
:...
:> 5) have a better chance of getting out of the overload situation
:> sooner
:>
:> I realise this would make the scheduling algorithm slightly
:> more complex and I'm not convinced doing this would be worth
:> it myself, but we may want to do some brainstorming over this ;)
:
:A per vnode working set quota with a per use count adjust
:would resolve most load thrashing issues. Programs with
It most certainly would not. Limiting the number of pages
you allow to be 'cached' on a vnode by vnode basis would be a
disaster. It has absolutely nothing whatsoever to do with thrashing
or thrash-management. It would simply be an artificial limitation
based on artificial assumptions that are as likely to be wrong as right.
If I've learned anything working on the FreeBSD VM system, it's that
the number of assumptions you make in regards to what programs do,
how they do it, how much data they should be able to cache, and so forth
is directly proportional to how badly you fuck up the paging algorithms.
I implemented a special page-recycling algorithm in 4.1/4.2 (which is
still there in 4.3). Basically it tries predict when it is possible to
throw away pages 'behind' a sequentially accessed file, so as not to
allow that file to blow away your cache. E.G. if you have 128M of ram
and you are sequentially accessing a 200MB file, obviously there is
not much point in trying to cache the data as you read it.
But being able to predict something like this is extremely difficult.
In fact, nearly impossible. And without being able to make the
prediction accurately you simply cannot determine how much data you
should try to cache before you begin recycling it. I wound up having
to change the algorithm to act more like a heuristic -- it does a rough
prediction but doesn't hold the system to it, then allows the page
priority mechanism to refine the prediction. But it can take several
passes (or non-passes) on the file before the page recycling stabilizes.
So the jist of the matter is that FreeBSD (1) already has process-wide
working set limitations which are activated when the system is under
load, and (2) already has a heuristic that attempts to predict when
not to cache pages. Actually several heuristics (a number of which were
in place in the original CSRG code).
-Matt
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux.eu.org/Linux-MM/
next prev parent reply other threads:[~2001-05-15 17:24 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-05-07 21:16 Rik van Riel
2001-05-07 22:50 ` Matt Dillon
2001-05-07 23:35 ` Rik van Riel
2001-05-08 0:56 ` Matt Dillon
2001-05-12 14:23 ` Rik van Riel
2001-05-12 17:21 ` Matt Dillon
2001-05-12 21:17 ` Rik van Riel
2001-05-12 23:58 ` Matt Dillon
2001-05-13 17:22 ` Rik van Riel
2001-05-15 6:38 ` Terry Lambert
2001-05-15 13:39 ` Cy Schubert - ITSD Open Systems Group
2001-05-15 15:31 ` Rik van Riel
2001-05-15 17:24 ` Matt Dillon [this message]
2001-05-15 23:55 ` Roger Larsson
2001-05-16 0:16 ` Matt Dillon
2001-05-16 4:22 ` Kernel Debugger Amarnath Jolad
2001-05-16 7:58 ` Kris Kennaway
2001-05-16 11:42 ` Martin Frey
2001-05-16 12:04 ` R.Oehler
2001-05-16 8:23 ` on load control / process swapping Terry Lambert
2001-05-16 17:26 ` Matt Dillon
2001-05-08 20:52 ` Kirk McKusick
2001-05-09 0:18 ` Matt Dillon
2001-05-09 2:07 ` Peter Jeremy
2001-05-09 19:41 ` Matt Dillon
2001-05-12 14:28 ` Rik van Riel
2001-05-08 12:25 ` Scott F. Kaplan
2001-05-16 15:17 Charles Randall
2001-05-16 17:14 Matt Dillon
2001-05-16 17:41 ` Rik van Riel
2001-05-16 17:54 ` Matt Dillon
2001-05-18 5:58 ` Terry Lambert
2001-05-18 6:20 ` Matt Dillon
2001-05-18 10:00 ` Andrew Reilly
2001-05-18 13:49 ` Jonathan Morton
2001-05-19 2:18 ` Rik van Riel
2001-05-19 2:56 ` Jonathan Morton
2001-05-16 17:57 ` Alfred Perlstein
2001-05-16 18:01 ` Matt Dillon
2001-05-16 18:10 ` Alfred Perlstein
[not found] <OF5A705983.9566DA96-ON86256A50.00630512@hou.us.ray.com>
2001-05-18 20:13 ` Jonathan Morton
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=200105151724.f4FHOYt54576@earth.backplane.com \
--to=dillon@earth.backplane.com \
--cc=arch@FreeBSD.ORG \
--cc=linux-mm@kvack.org \
--cc=riel@conectiva.com.br \
--cc=sfkaplan@cs.amherst.edu \
--cc=tlambert2@mindspring.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