001/*
002 * Licensed to the Apache Software Foundation (ASF) under one
003 * or more contributor license agreements.  See the NOTICE file
004 * distributed with this work for additional information
005 * regarding copyright ownership.  The ASF licenses this file
006 * to you under the Apache License, Version 2.0 (the
007 * "License"); you may not use this file except in compliance
008 * with the License.  You may obtain a copy of the License at
009 *
010 *     http://www.apache.org/licenses/LICENSE-2.0
011 *
012 * Unless required by applicable law or agreed to in writing, software
013 * distributed under the License is distributed on an "AS IS" BASIS,
014 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
015 * See the License for the specific language governing permissions and
016 * limitations under the License.
017 */
018package org.apache.hadoop.hbase.client;
019
020import java.io.Closeable;
021import java.io.IOException;
022import java.util.List;
023import java.util.Map;
024import java.util.stream.Collectors;
025import org.apache.hadoop.hbase.Abortable;
026import org.apache.hadoop.hbase.HBaseInterfaceAudience;
027import org.apache.hadoop.hbase.ServerName;
028import org.apache.hadoop.hbase.master.RegionState;
029import org.apache.yetus.audience.InterfaceAudience;
030
031import org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
032import org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos;
033
034/**
035 * Hbck fixup tool APIs. Obtain an instance from {@link ClusterConnection#getHbck()} and call
036 * {@link #close()} when done.
037 * <p>WARNING: the below methods can damage the cluster. It may leave the cluster in an
038 * indeterminate state, e.g. region not assigned, or some hdfs files left behind. After running
039 * any of the below, operators may have to do some clean up on hdfs or schedule some assign
040 * procedures to get regions back online. DO AT YOUR OWN RISK. For experienced users only.
041 *
042 * @see ConnectionFactory
043 * @see ClusterConnection
044 * @since 2.0.2, 2.1.1
045 */
046@InterfaceAudience.LimitedPrivate(HBaseInterfaceAudience.HBCK)
047public interface Hbck extends Abortable, Closeable {
048  /**
049   * Update table state in Meta only. No procedures are submitted to open/assign or
050   * close/unassign regions of the table.
051   * @param state table state
052   * @return previous state of the table in Meta
053   */
054  TableState setTableStateInMeta(TableState state) throws IOException;
055
056  /**
057   * Update region state in Meta only. No procedures are submitted to manipulate the given region or
058   * any other region from same table.
059   * @param nameOrEncodedName2State list of all region states to be updated in meta
060   * @return previous state of the region in Meta
061   */
062  Map<String, RegionState.State>
063    setRegionStateInMeta(Map<String, RegionState.State> nameOrEncodedName2State) throws IOException;
064
065  /**
066   * Like {@link Admin#assign(byte[])} but 'raw' in that it can do more than one Region at a time
067   * -- good if many Regions to online -- and it will schedule the assigns even in the case where
068   * Master is initializing (as long as the ProcedureExecutor is up). Does NOT call Coprocessor
069   * hooks.
070   * @param override You need to add the override for case where a region has previously been
071   *              bypassed. When a Procedure has been bypassed, a Procedure will have completed
072   *              but no other Procedure will be able to make progress on the target entity
073   *              (intentionally). This override flag will override this fencing mechanism.
074   * @param encodedRegionNames Region encoded names; e.g. 1588230740 is the hard-coded encoding
075   *                           for hbase:meta region and de00010733901a05f5a2a3a382e27dd4 is an
076   *                           example of what a random user-space encoded Region name looks like.
077   */
078  List<Long> assigns(List<String> encodedRegionNames, boolean override) throws IOException;
079
080  default List<Long> assigns(List<String> encodedRegionNames) throws IOException {
081    return assigns(encodedRegionNames, false);
082  }
083
084  /**
085   * Like {@link Admin#unassign(byte[], boolean)} but 'raw' in that it can do more than one Region
086   * at a time -- good if many Regions to offline -- and it will schedule the assigns even in the
087   * case where Master is initializing (as long as the ProcedureExecutor is up). Does NOT call
088   * Coprocessor hooks.
089   * @param override You need to add the override for case where a region has previously been
090   *              bypassed. When a Procedure has been bypassed, a Procedure will have completed
091   *              but no other Procedure will be able to make progress on the target entity
092   *              (intentionally). This override flag will override this fencing mechanism.
093   * @param encodedRegionNames Region encoded names; e.g. 1588230740 is the hard-coded encoding
094   *                           for hbase:meta region and de00010733901a05f5a2a3a382e27dd4 is an
095   *                           example of what a random user-space encoded Region name looks like.
096   */
097  List<Long> unassigns(List<String> encodedRegionNames, boolean override) throws IOException;
098
099  default List<Long> unassigns(List<String> encodedRegionNames) throws IOException {
100    return unassigns(encodedRegionNames, false);
101  }
102
103  /**
104   * Bypass specified procedure and move it to completion. Procedure is marked completed but
105   * no actual work is done from the current state/step onwards. Parents of the procedure are
106   * also marked for bypass.
107   *
108   * @param pids of procedures to complete.
109   * @param waitTime wait time in ms for acquiring lock for a procedure
110   * @param override if override set to true, we will bypass the procedure even if it is executing.
111   *   This is for procedures which can't break out during execution (bugs?).
112   * @param recursive If set, if a parent procedure, we will find and bypass children and then
113   *   the parent procedure (Dangerous but useful in case where child procedure has been 'lost').
114   *   Does not always work. Experimental.
115   * @return true if procedure is marked for bypass successfully, false otherwise
116   */
117  List<Boolean> bypassProcedure(List<Long> pids, long waitTime, boolean override, boolean recursive)
118      throws IOException;
119
120  /**
121   * Use {@link #scheduleServerCrashProcedures(List)} instead.
122   * @deprecated since 2.2.1. Will removed in 3.0.0.
123   */
124  @Deprecated
125  default List<Long> scheduleServerCrashProcedure(List<HBaseProtos.ServerName> serverNames)
126      throws IOException {
127    return scheduleServerCrashProcedures(
128        serverNames.stream().map(ProtobufUtil::toServerName).collect(Collectors.toList()));
129  }
130
131  List<Long> scheduleServerCrashProcedures(List<ServerName> serverNames) throws IOException;
132
133  /**
134   * Request HBCK chore to run at master side.
135   *
136   * @return <code>true</code> if HBCK chore ran, <code>false</code> if HBCK chore already running
137   * @throws IOException if a remote or network exception occurs
138   */
139  boolean runHbckChore() throws IOException;
140
141  /**
142   * Fix Meta.
143   */
144  void fixMeta() throws IOException;
145}