Difference between revisions of "Resource Limits"

From Linux-VServer

Jump to: navigation, search
Line 9: Line 9:
 
__FORCETOC__
 
__FORCETOC__
  
== List of resource limits ==
+
== List of Resource Limits ==
  
 
Below is a list of resource limits used for contexts and processes within. The tables contain the following information:
 
Below is a list of resource limits used for contexts and processes within. The tables contain the following information:
Line 21: Line 21:
 
; Description : Description of capability/flag effects
 
; Description : Description of capability/flag effects
  
=== Special resource limit codes ===
+
=== Special Resource Limit Codes ===
  
 
The tag column may contain one or more of the following tags:
 
The tag column may contain one or more of the following tags:
Line 66: Line 66:
 
|
 
|
 
| KiB
 
| KiB
| Maximum filesize
+
| Maximum file size
 
|-
 
|-
 
| 2
 
| 2
Line 74: Line 74:
 
|
 
|
 
| KiB
 
| KiB
| max data size
+
| Maximum size of the data segment
 
|-
 
|-
 
| 3
 
| 3
Line 82: Line 82:
 
|
 
|
 
| KiB
 
| KiB
| max stack size
+
| Maximum stack size
 
|-
 
|-
 
| 4
 
| 4
Line 90: Line 90:
 
|
 
|
 
| KiB
 
| KiB
| max core file size
+
| Maximum core file size
 
|-
 
|-
 
| 5
 
| 5
Line 98: Line 98:
 
| AE
 
| AE
 
| page
 
| page
| max resident set size
+
| Maximum resident set size
 
|-
 
|-
 
| 6
 
| 6
Line 106: Line 106:
 
| AE
 
| AE
 
| 1
 
| 1
| max number of processes
+
| Maximum number of processes
 
|-
 
|-
 
| 7
 
| 7
Line 114: Line 114:
 
| AE
 
| AE
 
| 1
 
| 1
| max number of open files
+
| Maximum number of open files
 
|-
 
|-
 
| 8
 
| 8
Line 122: Line 122:
 
| AE
 
| AE
 
| page
 
| page
| max locked-in-memory address space
+
| Maximum locked-in-memory address space
 
|-
 
|-
 
| 9
 
| 9
Line 130: Line 130:
 
| AE
 
| AE
 
| page
 
| page
| address space limit
+
| Maximum address space size
 
|-
 
|-
 
| 10
 
| 10
Line 138: Line 138:
 
| AE
 
| AE
 
| 1
 
| 1
| maximum file locks held
+
| Maximum file locks held
 
|-
 
|-
 
| 11
 
| 11
Line 146: Line 146:
 
|
 
|
 
| 1
 
| 1
| max number of pending signals
+
| Maximum number of pending signals
 
|-
 
|-
 
| 12
 
| 12
Line 154: Line 154:
 
| AEN
 
| AEN
 
| Byte
 
| Byte
| maximum bytes in POSIX mqueues
+
| Maximum bytes in POSIX mqueues
 
|-
 
|-
 
| 13
 
| 13
Line 162: Line 162:
 
|
 
|
 
| 1
 
| 1
| max nice prio allowed to raise to
+
| Maximum nice prio allowed to raise to
 
|-
 
|-
 
| 14
 
| 14
Line 170: Line 170:
 
|
 
|
 
| 1
 
| 1
| maximum realtime priority
+
| Maximum realtime priority
 
|}
 
|}
  
Line 190: Line 190:
 
| AEN
 
| AEN
 
| 1
 
| 1
| max number of open sockets
+
| Maximum number of open sockets
 
|-
 
|-
 
| 17
 
| 17
Line 197: Line 197:
 
| AEN
 
| AEN
 
| 1
 
| 1
| max number of open filedescriptors
+
| Maximum number of open file descriptors
 
|-
 
|-
 
| 18
 
| 18
Line 204: Line 204:
 
| AEN
 
| AEN
 
| page
 
| page
| anonymous memory limit
+
| Maximum anonymous memory size
 
|-
 
|-
 
| 19
 
| 19
Line 211: Line 211:
 
| AEN
 
| AEN
 
| page
 
| page
| shared memory limit
+
| Maximum shared memory size
 
|-
 
|-
 
| 20
 
| 20
Line 218: Line 218:
 
| AN
 
| AN
 
| 1
 
| 1
| max number of semaphore arrays
+
| Maximum number of semaphore arrays
 
|-
 
|-
 
| 21
 
| 21
Line 225: Line 225:
 
| AN
 
| AN
 
| 1
 
| 1
| max number of semaphores
+
| Maximum number of semaphores
 
|-
 
|-
 
| 22
 
| 22
Line 232: Line 232:
 
| AEN
 
| AEN
 
| 1
 
| 1
| max number of dentry structs
+
| Maximum number of dentry structs
 
|}
 
|}
  

Revision as of 19:15, 28 October 2006

Most properties related to system resources, might it be the memory consumption, the number of processes or file-handles, qualify for imposing limits on them.

The Linux kernel provides the getrlimit and setrlimit system calls to get and set resource limits per process. Each resource has an associated soft and hard limit. The soft limit is the value that the kernel enforces for the corresponding resource. The hard limit acts as a ceiling for the soft limit: an unprivileged process may only set its soft limit to a value in the range from 0 up to the hard limit, and (irreversibly) lower its hard limit. A privileged process (one with the CAP_SYS_RESOURCE capability) may make arbitrary changes to either limit value.

The Linux-VServer kernel extends this system to provide resource limits for whole contexts, not just single processes. Additionally a few new limit types missing in the vanilla kernel were introduced.

Additionally the context limit system keeps track of observed maxima and resource limit hits, to provide some feedback for the administrator. See Context Accounting for details.


Contents

List of Resource Limits

Below is a list of resource limits used for contexts and processes within. The tables contain the following information:

ID 
Resource limit ID
Name 
Human readable identifier used in userspace utilities
procfs 
Name used in /proc/virtual/*/limit
ulimit 
command line switch for the ulimit utility
Unit 
Aprropriate unit for the limit
Tag 
Special resource limit code to denote if resources are accounted, enforced (see below)
Description 
Description of capability/flag effects

Special Resource Limit Codes

The tag column may contain one or more of the following tags:

Tag Description
A Limit will be accounted
E Limit will be enforced
N The limit cannot be set with vlimit using its name. Use its number instead.

Linux Resource Limits

Below is a list of resource limits available in vanilla Linux (>=2.6.18).

ID Name procfs ulimit Tag Unit Description
0 CPU -- -t ms CPU time in ms
1 FSIZE -- -f KiB Maximum file size
2 DATA -- -d KiB Maximum size of the data segment
3 STACK -- -s KiB Maximum stack size
4 CORE -- -c KiB Maximum core file size
5 RSS RSS -m AE page Maximum resident set size
6 NPROC PROC -u AE 1 Maximum number of processes
7 NOFILE FILES -n AE 1 Maximum number of open files
8 MEMLOCK VML -l AE page Maximum locked-in-memory address space
9 AS VM -v AE page Maximum address space size
10 LOCKS LOCKS -x AE 1 Maximum file locks held
11 SIGPENDING -- -i 1 Maximum number of pending signals
12 MSGQUEUE MSGQ -q AEN Byte Maximum bytes in POSIX mqueues
13 NICE -- 1 Maximum nice prio allowed to raise to
14 RTPRIO -- -r 1 Maximum realtime priority

Linux-VServer Resource Limits

Below is a list of additional resource limits available in the Linux-VServer kernel.

ID Name procfs Tag Unit Description
16 NSOCK SOCK AEN 1 Maximum number of open sockets
17 OPENFD OFD AEN 1 Maximum number of open file descriptors
18 ANON ANON AEN page Maximum anonymous memory size
19 SHMEM SHM AEN page Maximum shared memory size
20 SEMARY SEMA AN 1 Maximum number of semaphore arrays
21 NSEMS SEMS AN 1 Maximum number of semaphores
22 DENTRY DENT AEN 1 Maximum number of dentry structs

Determinig the Page Size

You can use the following program to determine the page size for your architecture (if it supports the getpagesize() function)

#include <stdlib.h>
#include <stdint.h>
#include <unistd.h>

int main(int argc, char *argv[])
{
        int page_size = getpagesize();
        printf("The page size is %d\n", page_size);
        exit(0);
}

Here's how to compile and run it (assuming you save it as pagesize.c):

# gcc pagesize.c -o pagesize
# ./pagesize 
The page size is 4096

Note: Whether getpagesize() is present as a Linux system call depends on the architecture. If it is, it returns the kernel symbol PAGE_SIZE, which is architecture and machine model dependent. Generally, one uses binaries that are architecture but not machine model dependent, in order to have a single binary distribution per architecture. This means that a user program should not find PAGE_SIZE at compile time from a header file, but use an actual system call, at least for those architectures (like sun4) where this dependency exists. Here libc4, libc5, glibc 2.0 fail because their getpagesize() returns a statically derived value, and does not use a system call. Things are OK in glibc 2.1.

If you prefer, you can get the pagesize using python, just start a python console and write:

>>> import resource
>>> resource.getpagesize()
4096

Configure Resource Limits in util-vserver

For example, if the adress space size (AS) and the resident set size (RSS) should be limited, the appropriate config files should be the following. You might have to create parent directories first.

# ls -al /etc/vservers/myguest/rlimits
total 28
drwxr-xr-x  2 root root 4096 2005-08-24 12:37 .
drwxr-xr-x  5 root root 4096 2005-08-24 00:22 ..
-rw-r--r--  1 root root    6 2005-08-24 12:43 as
-rw-r--r--  1 root root    6 2005-08-24 12:37 rss

# cat /etc/vservers/myguest/rlimits/as
90000

# cat /etc/vservers/myguest/rlimits/rss
10000
Personal tools