summaryrefslogtreecommitdiffstats
path: root/src/rocksdb/tools/ingest_external_sst.sh
blob: 8e2fed7ce70013195a487af6574e6a19d7502fd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env bash
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
#
#

if [ "$#" -lt 2 ]; then
  echo "usage: $BASH_SOURCE <DB Path> <External SST Dir>"
  exit 1
fi

db_dir=$1
external_sst_dir=$2

for f in `find $external_sst_dir -name extern_sst*`
do
  echo == Ingesting external SST file $f to DB at $db_dir
  ./ldb --db=$db_dir --create_if_missing ingest_extern_sst $f
done