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
552 B
26 lines
552 B
#!/usr/bin/env bash
|
|
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
|
#
|
|
#
|
|
|
|
if [ "$#" -lt 3 ]; then
|
|
echo "usage: $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
|
|
mkdir -p $extern_sst_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
|
|
|