YugabyteDB (2.13.0.0-b42, bfc6a6643e7399ac8a0e81d06a3ee6d6571b33ab)

Coverage Report

Created: 2022-03-09 17:30

/Users/deen/code/yugabyte-db/src/yb/master/tablet_split_candidate_filter.h
Line
Count
Source
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_MASTER_TABLET_SPLIT_CANDIDATE_FILTER_H
15
#define YB_MASTER_TABLET_SPLIT_CANDIDATE_FILTER_H
16
17
#include "yb/master/master_fwd.h"
18
#include "yb/util/status_fwd.h"
19
20
namespace yb {
21
namespace master {
22
23
class TabletSplitCandidateFilterIf {
24
 public:
25
92
  virtual ~TabletSplitCandidateFilterIf() {}
26
27
  // Table-level checks for whether we can split tablets in this table.
28
  virtual bool IsCdcEnabled(const TableInfo& table_info) const = 0;
29
  virtual Result<bool> IsTablePartOfSomeSnapshotSchedule(const TableInfo& table_info) = 0;
30
31
  // Returns true if we should split a tablet based on the provided drive_info.
32
  virtual bool ShouldSplitValidCandidate(
33
      const TabletInfo& tablet_info, const TabletReplicaDriveInfo& drive_info) const = 0;
34
};
35
36
}  // namespace master
37
}  // namespace yb
38
#endif // YB_MASTER_TABLET_SPLIT_CANDIDATE_FILTER_H