fork of https://github.com/oxigraph/rocksdb and https://github.com/facebook/rocksdb for nextgraph and oxigraph
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
322 B
16 lines
322 B
4 years ago
|
#!/usr/bin/env bash
|
||
|
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
||
|
#
|
||
|
#
|
||
|
|
||
|
if [ "$#" -lt 2 ]; then
|
||
|
echo "usage: ${BASH_SOURCE[0]} <DB Path> <Backup Dir>"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
db_dir="$1"
|
||
|
backup_dir="$2"
|
||
|
|
||
|
echo "== Backing up DB $db_dir to $backup_dir"
|
||
|
./ldb backup --db="$db_dir" --backup_dir="$backup_dir"
|