6c2bf9e916
Summary: internal task: T35568575 Pull Request resolved: https://github.com/facebook/rocksdb/pull/5199 Differential Revision: D14962794 Pulled By: gfosco fbshipit-source-id: 93838ede6d0235eaecff90d200faed9a8515bbbe
19 lines
403 B
Bash
Executable File
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
|