resource --- 資源使用資訊¶
This module provides basic mechanisms for measuring and controlling systemresources utilized by a program.
可用性: Unix, not WASI.
Symbolic constants are used to specify particular system resources and torequest usage information about either the current process or its children.
AnOSError is raised on syscall failure.
Resource Limits¶
Resources usage can be limited using thesetrlimit() function describedbelow. Each resource is controlled by a pair of limits: a soft limit and a hardlimit. The soft limit is the current limit, and may be lowered or raised by aprocess over time. The soft limit can never exceed the hard limit. The hardlimit can be lowered to any value greater than the soft limit, but not raised.(Only processes with the effective UID of the super-user can raise a hardlimit.)
The specific resources that can be limited are system dependent. They aredescribed in thegetrlimit(2) man page. The resources listed beloware supported when the underlying operating system supports them; resourceswhich cannot be checked or controlled by the operating system are not defined inthis module for those platforms.
- resource.RLIM_INFINITY¶
Constant used to represent the limit for an unlimited resource.
- resource.getrlimit(resource)¶
Returns a tuple
(soft,hard)with the current soft and hard limits ofresource. RaisesValueErrorif an invalid resource is specified, orerrorif the underlying system call fails unexpectedly.
- resource.setrlimit(resource,limits)¶
Sets new limits of consumption ofresource. Thelimits argument must be atuple
(soft,hard)of two integers describing the new limits. A value ofRLIM_INFINITYcan be used to request a limit that isunlimited.Raises
ValueErrorif an invalid resource is specified, if the new softlimit exceeds the hard limit, or if a process tries to raise its hard limit.Specifying a limit ofRLIM_INFINITYwhen the hard orsystem limit for that resource is not unlimited will result in aValueError. A process with the effective UID of super-user canrequest any valid limit value, including unlimited, butValueErrorwill still be raised if the requested limit exceeds the system imposedlimit.setrlimitmay also raiseerrorif the underlying system callfails.VxWorks only supports setting
RLIMIT_NOFILE.引發一個附帶引數
resource、limits的稽核事件resource.setrlimit。
- resource.prlimit(pid,resource[,limits])¶
Combines
setrlimit()andgetrlimit()in one function andsupports to get and set the resources limits of an arbitrary process. Ifpid is 0, then the call applies to the current process.resource andlimits have the same meaning as insetrlimit(), except thatlimits is optional.Whenlimits is not given the function returns theresource limit of theprocesspid. Whenlimits is given theresource limit of the process isset and the former resource limit is returned.
Raises
ProcessLookupErrorwhenpid can't be found andPermissionErrorwhen the user doesn't haveCAP_SYS_RESOURCEforthe process.引發一個附帶引數
pid、resource、limits的稽核事件resource.prlimit。可用性: Linux >= 2.6.36 with glibc >= 2.13.
在 3.4 版被加入.
These symbols define resources whose consumption can be controlled using thesetrlimit() andgetrlimit() functions described below. The values ofthese symbols are exactly the constants used by C programs.
The Unix man page forgetrlimit(2) lists the available resources.Note that not all systems use the same symbol or same value to denote the sameresource. This module does not attempt to mask platform differences --- symbolsnot defined for a platform will not be available from this module on thatplatform.
- resource.RLIMIT_CORE¶
The maximum size (in bytes) of a core file that the current process can create.This may result in the creation of a partial core file if a larger core would berequired to contain the entire process image.
- resource.RLIMIT_CPU¶
The maximum amount of processor time (in seconds) that a process can use. Ifthis limit is exceeded, a
SIGXCPUsignal is sent to the process. (Seethesignalmodule documentation for information about how to catch thissignal and do something useful, e.g. flush open files to disk.)
- resource.RLIMIT_FSIZE¶
The maximum size of a file which the process may create.
- resource.RLIMIT_DATA¶
The maximum size (in bytes) of the process's heap.
- resource.RLIMIT_STACK¶
The maximum size (in bytes) of the call stack for the current process. This onlyaffects the stack of the main thread in a multi-threaded process.
- resource.RLIMIT_RSS¶
The maximum resident set size that should be made available to the process.
- resource.RLIMIT_NPROC¶
The maximum number of processes the current process may create.
- resource.RLIMIT_NOFILE¶
The maximum number of open file descriptors for the current process.
- resource.RLIMIT_OFILE¶
The BSD name for
RLIMIT_NOFILE.
- resource.RLIMIT_MEMLOCK¶
The maximum address space which may be locked in memory.
- resource.RLIMIT_VMEM¶
The largest area of mapped memory which the process may occupy.Usually an alias of
RLIMIT_AS.可用性: Solaris, FreeBSD, NetBSD.
- resource.RLIMIT_AS¶
The maximum area (in bytes) of address space which may be taken by the process.
- resource.RLIMIT_MSGQUEUE¶
The number of bytes that can be allocated for POSIX message queues.
可用性: Linux >= 2.6.8.
在 3.4 版被加入.
- resource.RLIMIT_NICE¶
The ceiling for the process's nice level (calculated as 20 - rlim_cur).
可用性: Linux >= 2.6.12.
在 3.4 版被加入.
- resource.RLIMIT_RTTIME¶
The time limit (in microseconds) on CPU time that a process can spendunder real-time scheduling without making a blocking syscall.
可用性: Linux >= 2.6.25.
在 3.4 版被加入.
- resource.RLIMIT_SIGPENDING¶
The number of signals which the process may queue.
可用性: Linux >= 2.6.8.
在 3.4 版被加入.
- resource.RLIMIT_SBSIZE¶
The maximum size (in bytes) of socket buffer usage for this user.This limits the amount of network memory, and hence the amount of mbufs,that this user may hold at any time.
可用性: FreeBSD, NetBSD.
在 3.4 版被加入.
- resource.RLIMIT_SWAP¶
The maximum size (in bytes) of the swap space that may be reserved orused by all of this user id's processes.This limit is enforced only if bit 1 of the vm.overcommit sysctl is set.Please seetuning(7)for a complete description of this sysctl.
可用性: FreeBSD >= 8.
在 3.4 版被加入.
Resource Usage¶
These functions are used to retrieve resource usage information:
- resource.getrusage(who)¶
This function returns an object that describes the resources consumed by eitherthe current process or its children, as specified by thewho parameter. Thewho parameter should be specified using one of the
RUSAGE_*constants described below.一個簡單範例:
fromresourceimport*importtime# a non CPU-bound tasktime.sleep(3)print(getrusage(RUSAGE_SELF))# a CPU-bound taskforiinrange(10**8):_=1+1print(getrusage(RUSAGE_SELF))
The fields of the return value each describe how a particular system resourcehas been used, e.g. amount of time spent running is user mode or number of timesthe process was swapped out of main memory. Some values are dependent on theclock tick internal, e.g. the amount of memory the process is using.
For backward compatibility, the return value is also accessible as a tuple of 16elements.
The fields
ru_utimeandru_stimeof the return value arefloating-point values representing the amount of time spent executing in usermode and the amount of time spent executing in system mode, respectively. Theremaining values are integers. Consult thegetrusage(2) man page fordetailed information about these values. A brief summary is presented here:Index
Field
Resource
0ru_utimetime in user mode (float seconds)
1ru_stimetime in system mode (float seconds)
2ru_maxrssmaximum resident set size
3ru_ixrssshared memory size
4ru_idrssunshared memory size
5ru_isrssunshared stack size
6ru_minfltpage faults not requiring I/O
7ru_majfltpage faults requiring I/O
8ru_nswapnumber of swap outs
9ru_inblockblock input operations
10ru_oublockblock output operations
11ru_msgsndmessages sent
12ru_msgrcvmessages received
13ru_nsignalssignals received
14ru_nvcswvoluntary context switches
15ru_nivcswinvoluntary context switches
This function will raise a
ValueErrorif an invalidwho parameter isspecified. It may also raiseerrorexception in unusual circumstances.
- resource.getpagesize()¶
Returns the number of bytes in a system page. (This need not be the same as thehardware page size.)
The followingRUSAGE_* symbols are passed to thegetrusage()function to specify which processes information should be provided for.
- resource.RUSAGE_SELF¶
Pass to
getrusage()to request resources consumed by the callingprocess, which is the sum of resources used by all threads in the process.
- resource.RUSAGE_CHILDREN¶
Pass to
getrusage()to request resources consumed by child processesof the calling process which have been terminated and waited for.
- resource.RUSAGE_BOTH¶
Pass to
getrusage()to request resources consumed by both the currentprocess and child processes. May not be available on all systems.
- resource.RUSAGE_THREAD¶
Pass to
getrusage()to request resources consumed by the currentthread. May not be available on all systems.在 3.2 版被加入.