Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Quanah Gibson-Mount
OpenLDAP
Commits
ac8b15fa
Commit
ac8b15fa
authored
20 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
ITS#3493 checkpoint clarification
parent
779bfaf5
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/man/man5/slapd-bdb.5
+11
-15
11 additions, 15 deletions
doc/man/man5/slapd-bdb.5
with
11 additions
and
15 deletions
doc/man/man5/slapd-bdb.5
+
11
−
15
View file @
ac8b15fa
...
...
@@ -40,21 +40,17 @@ by the BDB backend database instance.
The default is 1000 entries.
.TP
.B checkpoint <kbyte> <min>
Specify the frequency for checkpointing the database transaction log.
A checkpoint operation flushes the database buffers to disk and writes
a checkpoint record in the log.
The checkpoint will occur if either <kbyte> data has been written or
<min> minutes have passed since the last checkpoint.
Both arguments default to zero, in which case they are ignored. Note
that the checkpoint conditions are only tested after a write operation,
and not every <min> minutes. As such, data written within <min> minutes
of the last checkpoint will
.I not
get flushed until the next write operation happens after that interval.
Outstanding writes in this situation may not get flushed if the server
is shutdown uncleanly, and the database will need to be recovered before
the next startup.
See the Berkeley DB reference guide for more details.
Specify the frequency for checkpointing the database transaction
log upon updating of the database. A checkpointing flushes the
database buffers to disk and writes a checkpoint record in the log.
Upon a database update, a checkpoint will occur if either <kbyte>
data has been written or <min> minutes have passed since the last
checkpoint. Both arguments default to zero, in which case they are
ignored. Note: checkpointing by this directive occurs only upon execution of
a database update. If one desires checkpoinging to occur otherwise,
db_checkpoint(1) or other external process should be used to cause
a database checkpoint to be taken. See the Berkeley DB reference
guide for more details.
.TP
.B dbnosync
Specify that on-disk database contents should not be immediately
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment