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.
26 lines
458 B
26 lines
458 B
6 years ago
|
#!/usr/bin/env bash
|
||
|
#
|
||
|
#
|
||
|
#
|
||
|
|
||
|
if [ "$#" -lt 3 ]; then
|
||
|
echo "usagee: $BASH_SOURCE <input_data_path> <DB Path> <extern SST dir>"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
input_data_dir=$1
|
||
|
db_dir=$2
|
||
|
extern_sst_dir=$3
|
||
|
rm -rf $db_dir
|
||
|
|
||
|
set -e
|
||
|
|
||
|
n=0
|
||
|
|
||
|
for f in `find $input_data_dir -name sorted_data*`
|
||
|
do
|
||
|
echo == Writing external SST file $f to $extern_sst_dir/extern_sst${n}
|
||
|
./ldb --db=$db_dir --create_if_missing write_extern_sst $extern_sst_dir/extern_sst${n} < $f
|
||
|
let "n = n + 1"
|
||
|
done
|