forked from lthn/blockchain
lmdb v 24 requires manual resizing/growing during it's normal function Zano core is purely async so it's not easy to prevent all DB txs from starting on lmdb adapter level, because it will lead to random deadlocks in the core due to many high-level cross-thread dependencies. We will rethink this later. Many thanks to @leo-yuriev who helped us to discover these issues!
60 lines
1.6 KiB
Groff
60 lines
1.6 KiB
Groff
.TH MDB_COPY 1 "2014/06/20" "LMDB 0.9.14"
|
|
.\" Copyright 2012-2015 Howard Chu, Symas Corp. All Rights Reserved.
|
|
.\" Copying restrictions apply. See COPYRIGHT/LICENSE.
|
|
.SH NAME
|
|
mdb_copy \- LMDB environment copy tool
|
|
.SH SYNOPSIS
|
|
.B mdb_copy
|
|
[\c
|
|
.BR \-V ]
|
|
[\c
|
|
.BR \-c ]
|
|
[\c
|
|
.BR \-n ]
|
|
[\c
|
|
.BR \-v ]
|
|
.B srcpath
|
|
[\c
|
|
.BR dstpath ]
|
|
.SH DESCRIPTION
|
|
The
|
|
.B mdb_copy
|
|
utility copies an LMDB environment. The environment can
|
|
be copied regardless of whether it is currently in use.
|
|
No lockfile is created, since it gets recreated at need.
|
|
|
|
If
|
|
.I dstpath
|
|
is specified it must be the path of an empty directory
|
|
for storing the backup. Otherwise, the backup will be
|
|
written to stdout.
|
|
|
|
.SH OPTIONS
|
|
.TP
|
|
.BR \-V
|
|
Write the library version number to the standard output, and exit.
|
|
.TP
|
|
.BR \-c
|
|
Compact while copying. Only current data pages will be copied; freed
|
|
or unused pages will be omitted from the copy. This option will
|
|
slow down the backup process as it is more CPU-intensive.
|
|
.TP
|
|
.BR \-n
|
|
Open LDMB environment(s) which do not use subdirectories.
|
|
.TP
|
|
.BR \-v
|
|
Use the previous environment state instead of the latest state.
|
|
This may be useful if the latest state has been corrupted.
|
|
|
|
.SH DIAGNOSTICS
|
|
Exit status is zero if no errors occur.
|
|
Errors result in a non-zero exit status and
|
|
a diagnostic message being written to standard error.
|
|
.SH CAVEATS
|
|
This utility can trigger significant file size growth if run
|
|
in parallel with write transactions, because pages which they
|
|
free during copying cannot be reused until the copy is done.
|
|
.SH "SEE ALSO"
|
|
.BR mdb_stat (1)
|
|
.SH AUTHOR
|
|
Howard Chu of Symas Corporation <http://www.symas.com>
|