YugabyteDB (2.13.1.0-b60, 21121d69985fbf76aa6958d8f04a9bfa936293b5)

Coverage Report

Created: 2022-03-22 16:43

/Users/deen/code/yugabyte-db/src/yb/tools/bulk_load_docdb_util.h
Line
Count
Source (jump to first uncovered line)
1
// Copyright (c) YugaByte, Inc.
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
4
// in compliance with the License.  You may obtain a copy of the License at
5
//
6
// http://www.apache.org/licenses/LICENSE-2.0
7
//
8
// Unless required by applicable law or agreed to in writing, software distributed under the License
9
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
10
// or implied.  See the License for the specific language governing permissions and limitations
11
// under the License.
12
//
13
14
#ifndef YB_TOOLS_BULK_LOAD_DOCDB_UTIL_H
15
#define YB_TOOLS_BULK_LOAD_DOCDB_UTIL_H
16
17
#include "yb/docdb/docdb_util.h"
18
19
namespace yb {
20
namespace tools {
21
22
class BulkLoadDocDBUtil : public docdb::DocDBRocksDBUtil {
23
 public:
24
  BulkLoadDocDBUtil(const std::string& tablet_id, const std::string& base_dir,
25
                    size_t memtable_size, int num_memtables, int max_background_flushes);
26
  CHECKED_STATUS InitRocksDBDir() override;
27
  CHECKED_STATUS InitRocksDBOptions() override;
28
  std::string tablet_id() override;
29
0
  size_t block_cache_size() const override  { return 0; }
30
  const std::string& rocksdb_dir();
31
32
 private:
33
  const std::string tablet_id_;
34
  const std::string base_dir_;
35
  const size_t memtable_size_;
36
  const int num_memtables_;
37
  const int max_background_flushes_;
38
};
39
40
} // namespace tools
41
} // namespace yb
42
43
#endif // YB_TOOLS_BULK_LOAD_DOCDB_UTIL_H