rocksdb/tools/ingest_external_sst.sh
Fosco Marotto 6c2bf9e916 Add copyright headers per FB open-source checkup tool. (#5199)
Summary:
internal task: T35568575
Pull Request resolved: https://github.com/facebook/rocksdb/pull/5199

Differential Revision: D14962794

Pulled By: gfosco

fbshipit-source-id: 93838ede6d0235eaecff90d200faed9a8515bbbe
2019-04-18 10:55:01 -07:00

19 lines
403 B
Bash
Executable File

#!/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