logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

mdb_copy - LMDB environment copy tool

Author

       Howard Chu of Symas Corporation <http://www.symas.com>

LMDB 0.9.14                                        2014/07/01                                        MDB_COPY(1)

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.

Description

       The  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 dstpath is specified it must be the path of an empty directory for storing the backup. Otherwise,  the
       backup will be written to stdout.

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.

Name

       mdb_copy - LMDB environment copy tool

Options

-V     Write the library version number to the standard output, and exit.

       -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.
              Currently it fails if the environment has suffered a page leak.

       -n     Open LDMB environment(s) which do not use subdirectories.

See Also

mdb_stat(1)

Synopsis

mdb_copy [-V] [-c] [-n] srcpath [dstpath]

See Also