erts_alloc
is an Erlang Run-Time System internal memory
allocator library. erts_alloc
provides the Erlang
Run-Time System with a number of memory allocators.
Currently the following allocators are present:
temp_alloc
eheap_alloc
binary_alloc
ets_alloc
sl_alloc
ll_alloc
fix_alloc
fix_alloc
manages a set of memory pools from
which memory blocks are handed out. fix_alloc
allocates memory pools from ll_alloc
. Memory pools
that have been allocated are never deallocated.
std_alloc
sys_alloc
malloc
implementation
used on the specific OS.
mseg_alloc
mseg_alloc
is used by other
allocators for allocating memory segments and is currently only
available on systems that have the mmap
system
call. Memory segments that are deallocated are kept for a
while in a segment cache before they are destroyed. When
segments are allocated, cached segments are used if possible
instead of creating new segments. This in order to reduce
the number of system calls made.
sys_alloc
and fix_alloc
are always enabled and
cannot be disabled. mseg_alloc
is always enabled if it is
available and an allocator that uses it is enabled. All other
allocators can be enabled or
disabled. By default all allocators are enabled.
When an allocator is disabled, sys_alloc
is used instead of the disabled allocator.
The main idea with the erts_alloc
library is to separate
memory blocks that are used differently into different memory
areas, and by this achieving less memory fragmentation. By
putting less effort in finding a good fit for memory blocks that
are frequently allocated than for those less frequently
allocated, a performance gain can be achieved.
Internally a framework called alloc_util
is used for
implementing allocators. sys_alloc
, fix_alloc
, and
mseg_alloc
do not use this framework; hence, the
following does not apply to them.
An allocator manages multiple areas, called carriers, in which
memory blocks are placed. A carrier is either placed in a
separate memory segment (allocated via mseg_alloc
) or in
the heap segment (allocated via sys_alloc
). Multiblock
carriers are used for storage of several blocks. Singleblock
carriers are used for storage of one block. Blocks that are
larger than the value of the singleblock carrier threshold
(sbct) parameter are placed
in singleblock carriers. Blocks smaller than the value of the
sbct
parameter are placed in multiblock
carriers. Normally an allocator creates a "main multiblock
carrier". Main multiblock carriers are never deallocated. The
size of the main multiblock carrier is determined by the value
of the mmbcs parameter.
Sizes of multiblock carriers allocated via mseg_alloc
are
decided based on the values of the largest multiblock carrier
size (lmbcs), the smallest
multiblock carrier size (smbcs),
and the multiblock carrier growth stages
(mbcgs) parameters. If
nc
is the current number of multiblock carriers (the main
multiblock carrier excluded) managed by an allocator, the size
of the next mseg_alloc
multiblock carrier allocated by
this allocator will roughly be
smbcs+nc*(lmbcs-smbcs)/mbcgs
when nc <= mbcgs
,
and lmbcs
when nc > mbcgs
. If the value of the
sbct
parameter should be larger than the value of the
lmbcs
parameter, the allocator may have to create
multiblock carriers that are larger than the value of the
lmbcs
parameter, though. Singleblock carriers allocated
via mseg_alloc
are sized to whole pages.
Sizes of carriers allocated via sys_alloc
are
decided based on the value of the sys_alloc
carrier size
(ycs) parameter. The size of
a carrier is the least number of multiples of the value of the
ycs
parameter that satisfies the request.
Coalescing of free blocks are always performed immediately. Boundary tags (headers and footers) in free blocks are used which makes the time complexity for coalescing constant.
The memory allocation strategy used for multiblock carriers by an allocator is configurable via the as parameter. Currently the following strategies are available:
temp_alloc
. If you do, you
will run into trouble.
Only use these flags if you are absolutely sure what you are doing. Unsuitable settings may cause serious performance degradation and even a system crash at any time during operation. |
Memory allocator system flags have the following syntax:
+M<S><P> <V>
where <S>
is a letter identifying a subsystem,
<P>
is a parameter, and <V>
is the
value to use. The flags can be passed to the Erlang emulator
(erl) as command line
arguments.
System flags effecting specific allocators have an upper-case
letter as <S>
. The following letters are used for
the currently present allocators:
B: binary_alloc
D: std_alloc
E: ets_alloc
F: fix_alloc
H: eheap_alloc
L: ll_alloc
M: mseg_alloc
S: sl_alloc
T: temp_alloc
Y: sys_alloc
The following flags are available for configuration of
mseg_alloc
:
+MMamcbf <size>
+MMrmcbf <ratio>
+MMmcs <amount>
+MMcci <time>
The following flags are available for configuration of
fix_alloc
:
The following flags are available for configuration of
sys_alloc
:
+MYe true
sys_alloc
. Note: sys_alloc
cannot be disabled.
+MYm libc
malloc
library to use. Currently only
libc
is available. libc
enables the standard
libc
malloc implementation. By default libc
is used.
+MYtt <size>
sbrk
) that will be kept by malloc
(not
released to the operating system). When the amount of free
memory at the top of the heap exceeds the trim threshold,
malloc
will release it (by calling
sbrk
). Trim threshold is given in kilobytes. Default
trim threshold is 128. Note: This flag will
only have any effect when the emulator has been linked with
the GNU C library, and uses its malloc
implementation.
+MYtp <size>
malloc
when
sbrk
is called to get more memory from the operating
system. Default top pad size is 0. Note: This flag
will only have any effect when the emulator has been linked
with the GNU C library, and uses its malloc
implementation.
The following flags are available for configuration of specific
allocators based on alloc_util
(i.e. <S>
is
either B
, D
, E
, H
, L
, S
,
or T
):
+M<S>as bf|aobf|gf|af
bf
(best fit),
aobf
(address order best fit), gf
(good fit),
and af
(a fit). See
the description of allocation
strategies in "the alloc_util
framework" section.
+M<S>asbcst <size>
mseg_alloc
singleblock carrier is shrunk, the carrier
will be left unchanged if the amount of unused memory is less
than this threshold; otherwise, the carrier will be shrunk.
See also rsbcst.
+M<S>e true|false
<S>
.
+M<S>lmbcs <size>
mseg_alloc
) multiblock carrier size (in
kilobytes). See the
description on how sizes for mseg_alloc multiblock carriers
are decided in "the alloc_util
framework"
section.
+M<S>mbcgs <ratio>
mseg_alloc
) multiblock carrier growth stages. See
the description on how sizes
for mseg_alloc multiblock carriers are decided
in "the alloc_util
framework" section.
+M<S>mbsd <depth>
<S>
. When the good fit strategy is used, free
blocks are placed in segregated free-lists. Each free list
contains blocks of sizes in a specific range. The max block
search depth sets a limit on the maximum number of blocks to
inspect in a free list during a search for suitable block
satisfying the request.
+M<S>mmbcs <size>
<S>
. The main
multiblock carrier is allocated via sys_alloc
and is
never deallocated.
+M<S>mmmbc <amount>
mseg_alloc
multiblock carriers. Maximum number of
multiblock carriers allocated via mseg_alloc
by
allocator <S>
. When this limit has been reached,
new multiblock carriers will be allocated via
sys_alloc
.
+M<S>mmsbc <amount>
mseg_alloc
singleblock carriers. Maximum number of
singleblock carriers allocated via mseg_alloc
by
allocator <S>
. When this limit has been reached,
new singleblock carriers will be allocated via
sys_alloc
.
+M<S>rsbcmt <ratio>
+M<S>rsbcst <ratio>
mseg_alloc
singleblock carrier is shrunk, the carrier will be left
unchanged if the ratio of unused memory is less than this
threshold; otherwise, the carrier will be shrunk.
See also asbcst.
+M<S>sbct <size>
+M<S>smbcs <size>
mseg_alloc
) multiblock carrier size (in
kilobytes). See the
description on how sizes for mseg_alloc multiblock carriers
are decided in "the alloc_util
framework"
section.
Currently the following flags are available for configuration of
alloc_util
, i.e. all allocators based on
alloc_util
will be effected:
+Muycs <size>
sys_alloc
carrier size. Carriers allocated via
sys_alloc
will be allocated in sizes which are
multiples of the sys_alloc
carrier size. This is not
true for main multiblock carriers and carriers allocated
during a memory shortage, though.
+Mummc <amount>
mseg_alloc
carriers. Maximum number of carriers
placed in separate memory segments. When this limit has been
reached, new carriers will be placed in memory retrieved from
sys_alloc
.
Instrumentation flags:
+Mim true|false
instrument
module. +Mim true
implies +Mis true
.
+Mim true
is the same as
-instr.
+Mis true|false
instrument
module.
+Mit X
When instrumentation of the emulator is enabled, the emulator uses more memory and runs slower. |
Other flags:
+Mea min|max|r9c
min
disables all allocators that can be
disabled. max
enables all allocators. r9c
configures all allocators as they were configured in the OTP R9C
release. The r9c
switch will eventually be removed.
Only some default values have been presented here. erlang:system_info(allocator), and erlang:system_info({allocator, Alloc}) can be used in order to obtain currently used settings and current status of the allocators.
Most of these flags are highly implementation dependent, and they may be changed or removed without prior notice. |
erts_alloc_config(3)
is a tool that can be used to aid creation of an
erts_alloc
configuration that is suitable for a limited
number of runtime scenarios.