File: TODO

package info (click to toggle)
stress 1.0.4-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 836 kB
  • sloc: sh: 1,097; ansic: 647; makefile: 24
file content (46 lines) | stat: -rwxr-xr-x 1,921 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
`stress' TODO -- development roadmap
Copyright (C) 2005 Amos Waterland.
See the end for copying conditions.

Please send `stress' bug reports, questions, and suggestions to
<apw@rossby.metr.ou.edu>.

Build easily without autoconf

 * Define VERSION, among other things.

Use a concept instead of an option

 * Instead of explicit options like --vm-bytes, get rid of all --vm
   options but one: --vm-pattern=webserver,database,raytracer etc.

Barrier instead of backoff

 * If you fork a sufficiently high number of children, the system will
   become so overloaded that new children do not ever get a chance to
   even start.  It is arguable whether stress should bother to deal
   with this at all, but at present it does so by giving each child a
   backoff timer.  Each child immediately goes to sleep upon entry,
   and wakes up only after the backoff factor has expired.  This
   allows the kernel to fork an absurd number of processes.  If we
   decide this is a behavior we wish to preserve, we should move to a
   model where each child just waits for a signal from the parent,
   which it can send to its whole process group effeciently once it
   finishes forking all the requested children.  This would allow us
   to get rid of the `--backoff' option and reduce the associated code
   complexity.

----------------------------------------------------------------------
Copyright information:

Copyright (C) 2005 Amos Waterland

   Permission is granted to anyone to make or distribute verbatim copies
   of this document as received, in any medium, provided that the
   copyright notice and this permission notice are preserved,
   thus giving the recipient permission to redistribute in turn.

   Permission is granted to distribute modified versions
   of this document, or of portions of it,
   under the above conditions, provided also that they
   carry prominent notices stating who last changed them.