Skip to content
Snippets Groups Projects
Commit 0b9c818a authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Import dbsync

parent 4118c99f
No related branches found
No related tags found
No related merge requests found
...@@ -593,11 +593,42 @@ method, this option is ignored without comment. The default is 100000 bytes. ...@@ -593,11 +593,42 @@ method, this option is ignored without comment. The default is 100000 bytes.
.B dbnolocking .B dbnolocking
Specify that no database locking should be performed. Specify that no database locking should be performed.
Enabling this option may improve performance at the expense of data security. Enabling this option may improve performance at the expense of data security.
Do NOT run any slap tools while slapd is running.
.TP
.B dbnosync .B dbnosync
Specify that on-disk database contents should not be immediately Specify that on-disk database contents should not be immediately
synchronized with in memory changes. Enabling this option may improve synchronized with in memory changes. Enabling this option may improve
performance at the expense of data security. performance at the expense of data security.
.TP .TP
.B dbsync <frequency> <maxdelays> <delayinterval>
Flush dirty database buffers to disk every
.B <seconds>
seconds. Implies
.B dbnosync
(ie. indvidual updates are no longer written to disk). It attempts to avoid
syncs during periods of peak activity by waiting
.B <delayinterval>
seconds if the server is busy, repeating this delay up to
.B <maxdelays>
times before proceeding.
It is an attempt to provide higher write performance with some amount of data
security. Note that it may still be possible to get an inconsistent
database if the underlying engine fills its cache and writes out individual
pages and slapd crashes or is killed before the next sync.
.B <maxdelays>
and
.B <delayinterval>
are optional and default to
.B 12
and
.B 5
respectively, giving a total elapsed delay of 60 seconds before a sync
will occur.
.B <maxdelays>
may be zero, and
.B <delayinterval>
must be 1 or greater.
.TP
.B directory <directory> .B directory <directory>
Specify the directory where the LDBM files containing this database and Specify the directory where the LDBM files containing this database and
associated indexes live. A separate directory must be specified for associated indexes live. A separate directory must be specified for
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment