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.master;
019
020import static org.apache.hadoop.hbase.HConstants.DEFAULT_HBASE_SPLIT_COORDINATED_BY_ZK;
021import static org.apache.hadoop.hbase.HConstants.HBASE_MASTER_LOGCLEANER_PLUGINS;
022import static org.apache.hadoop.hbase.HConstants.HBASE_SPLIT_WAL_COORDINATED_BY_ZK;
023import static org.apache.hadoop.hbase.master.cleaner.HFileCleaner.CUSTOM_POOL_SIZE;
024import static org.apache.hadoop.hbase.util.DNS.MASTER_HOSTNAME_KEY;
025
026import com.google.errorprone.annotations.RestrictedApi;
027import io.opentelemetry.api.trace.Span;
028import io.opentelemetry.api.trace.StatusCode;
029import io.opentelemetry.context.Scope;
030import java.io.IOException;
031import java.io.InterruptedIOException;
032import java.lang.reflect.Constructor;
033import java.lang.reflect.InvocationTargetException;
034import java.net.InetAddress;
035import java.net.InetSocketAddress;
036import java.net.UnknownHostException;
037import java.time.Instant;
038import java.time.ZoneId;
039import java.time.format.DateTimeFormatter;
040import java.util.ArrayList;
041import java.util.Arrays;
042import java.util.Collection;
043import java.util.Collections;
044import java.util.Comparator;
045import java.util.EnumSet;
046import java.util.HashMap;
047import java.util.HashSet;
048import java.util.Iterator;
049import java.util.LinkedList;
050import java.util.List;
051import java.util.Map;
052import java.util.Objects;
053import java.util.Optional;
054import java.util.Set;
055import java.util.concurrent.ExecutionException;
056import java.util.concurrent.Future;
057import java.util.concurrent.Semaphore;
058import java.util.concurrent.TimeUnit;
059import java.util.concurrent.TimeoutException;
060import java.util.concurrent.atomic.AtomicInteger;
061import java.util.regex.Pattern;
062import java.util.stream.Collectors;
063import javax.servlet.http.HttpServlet;
064import org.apache.commons.lang3.StringUtils;
065import org.apache.hadoop.conf.Configuration;
066import org.apache.hadoop.fs.FSDataInputStream;
067import org.apache.hadoop.fs.FSDataOutputStream;
068import org.apache.hadoop.fs.Path;
069import org.apache.hadoop.hbase.CatalogFamilyFormat;
070import org.apache.hadoop.hbase.Cell;
071import org.apache.hadoop.hbase.CellBuilderFactory;
072import org.apache.hadoop.hbase.CellBuilderType;
073import org.apache.hadoop.hbase.ClusterId;
074import org.apache.hadoop.hbase.ClusterMetrics;
075import org.apache.hadoop.hbase.ClusterMetrics.Option;
076import org.apache.hadoop.hbase.ClusterMetricsBuilder;
077import org.apache.hadoop.hbase.DoNotRetryIOException;
078import org.apache.hadoop.hbase.HBaseIOException;
079import org.apache.hadoop.hbase.HBaseInterfaceAudience;
080import org.apache.hadoop.hbase.HBaseServerBase;
081import org.apache.hadoop.hbase.HConstants;
082import org.apache.hadoop.hbase.HRegionLocation;
083import org.apache.hadoop.hbase.InvalidFamilyOperationException;
084import org.apache.hadoop.hbase.MasterNotRunningException;
085import org.apache.hadoop.hbase.MetaTableAccessor;
086import org.apache.hadoop.hbase.NamespaceDescriptor;
087import org.apache.hadoop.hbase.PleaseHoldException;
088import org.apache.hadoop.hbase.PleaseRestartMasterException;
089import org.apache.hadoop.hbase.RegionMetrics;
090import org.apache.hadoop.hbase.ReplicationPeerNotFoundException;
091import org.apache.hadoop.hbase.ScheduledChore;
092import org.apache.hadoop.hbase.ServerMetrics;
093import org.apache.hadoop.hbase.ServerName;
094import org.apache.hadoop.hbase.ServerTask;
095import org.apache.hadoop.hbase.ServerTaskBuilder;
096import org.apache.hadoop.hbase.TableName;
097import org.apache.hadoop.hbase.TableNotDisabledException;
098import org.apache.hadoop.hbase.TableNotFoundException;
099import org.apache.hadoop.hbase.UnknownRegionException;
100import org.apache.hadoop.hbase.client.BalanceRequest;
101import org.apache.hadoop.hbase.client.BalanceResponse;
102import org.apache.hadoop.hbase.client.ColumnFamilyDescriptor;
103import org.apache.hadoop.hbase.client.CompactionState;
104import org.apache.hadoop.hbase.client.MasterSwitchType;
105import org.apache.hadoop.hbase.client.NormalizeTableFilterParams;
106import org.apache.hadoop.hbase.client.Put;
107import org.apache.hadoop.hbase.client.RegionInfo;
108import org.apache.hadoop.hbase.client.RegionInfoBuilder;
109import org.apache.hadoop.hbase.client.RegionStatesCount;
110import org.apache.hadoop.hbase.client.ResultScanner;
111import org.apache.hadoop.hbase.client.Scan;
112import org.apache.hadoop.hbase.client.TableDescriptor;
113import org.apache.hadoop.hbase.client.TableDescriptorBuilder;
114import org.apache.hadoop.hbase.client.TableState;
115import org.apache.hadoop.hbase.coprocessor.CoprocessorHost;
116import org.apache.hadoop.hbase.exceptions.DeserializationException;
117import org.apache.hadoop.hbase.exceptions.MasterStoppedException;
118import org.apache.hadoop.hbase.executor.ExecutorType;
119import org.apache.hadoop.hbase.favored.FavoredNodesManager;
120import org.apache.hadoop.hbase.http.HttpServer;
121import org.apache.hadoop.hbase.http.InfoServer;
122import org.apache.hadoop.hbase.ipc.CoprocessorRpcUtils;
123import org.apache.hadoop.hbase.ipc.RpcServer;
124import org.apache.hadoop.hbase.ipc.ServerNotRunningYetException;
125import org.apache.hadoop.hbase.log.HBaseMarkers;
126import org.apache.hadoop.hbase.master.MasterRpcServices.BalanceSwitchMode;
127import org.apache.hadoop.hbase.master.assignment.AssignmentManager;
128import org.apache.hadoop.hbase.master.assignment.MergeTableRegionsProcedure;
129import org.apache.hadoop.hbase.master.assignment.RegionStateNode;
130import org.apache.hadoop.hbase.master.assignment.RegionStateStore;
131import org.apache.hadoop.hbase.master.assignment.RegionStates;
132import org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure;
133import org.apache.hadoop.hbase.master.balancer.BalancerChore;
134import org.apache.hadoop.hbase.master.balancer.BaseLoadBalancer;
135import org.apache.hadoop.hbase.master.balancer.ClusterStatusChore;
136import org.apache.hadoop.hbase.master.balancer.LoadBalancerFactory;
137import org.apache.hadoop.hbase.master.balancer.LoadBalancerStateStore;
138import org.apache.hadoop.hbase.master.balancer.MaintenanceLoadBalancer;
139import org.apache.hadoop.hbase.master.cleaner.DirScanPool;
140import org.apache.hadoop.hbase.master.cleaner.HFileCleaner;
141import org.apache.hadoop.hbase.master.cleaner.LogCleaner;
142import org.apache.hadoop.hbase.master.cleaner.ReplicationBarrierCleaner;
143import org.apache.hadoop.hbase.master.cleaner.SnapshotCleanerChore;
144import org.apache.hadoop.hbase.master.hbck.HbckChore;
145import org.apache.hadoop.hbase.master.http.MasterDumpServlet;
146import org.apache.hadoop.hbase.master.http.MasterRedirectServlet;
147import org.apache.hadoop.hbase.master.http.MasterStatusServlet;
148import org.apache.hadoop.hbase.master.http.api_v1.ResourceConfigFactory;
149import org.apache.hadoop.hbase.master.http.hbck.HbckConfigFactory;
150import org.apache.hadoop.hbase.master.janitor.CatalogJanitor;
151import org.apache.hadoop.hbase.master.locking.LockManager;
152import org.apache.hadoop.hbase.master.migrate.RollingUpgradeChore;
153import org.apache.hadoop.hbase.master.normalizer.RegionNormalizerFactory;
154import org.apache.hadoop.hbase.master.normalizer.RegionNormalizerManager;
155import org.apache.hadoop.hbase.master.normalizer.RegionNormalizerStateStore;
156import org.apache.hadoop.hbase.master.procedure.CreateTableProcedure;
157import org.apache.hadoop.hbase.master.procedure.DeleteNamespaceProcedure;
158import org.apache.hadoop.hbase.master.procedure.DeleteTableProcedure;
159import org.apache.hadoop.hbase.master.procedure.DisableTableProcedure;
160import org.apache.hadoop.hbase.master.procedure.EnableTableProcedure;
161import org.apache.hadoop.hbase.master.procedure.FlushTableProcedure;
162import org.apache.hadoop.hbase.master.procedure.InitMetaProcedure;
163import org.apache.hadoop.hbase.master.procedure.MasterProcedureConstants;
164import org.apache.hadoop.hbase.master.procedure.MasterProcedureEnv;
165import org.apache.hadoop.hbase.master.procedure.MasterProcedureScheduler;
166import org.apache.hadoop.hbase.master.procedure.MasterProcedureUtil;
167import org.apache.hadoop.hbase.master.procedure.MasterProcedureUtil.NonceProcedureRunnable;
168import org.apache.hadoop.hbase.master.procedure.ModifyTableProcedure;
169import org.apache.hadoop.hbase.master.procedure.ProcedurePrepareLatch;
170import org.apache.hadoop.hbase.master.procedure.ProcedureSyncWait;
171import org.apache.hadoop.hbase.master.procedure.RSProcedureDispatcher;
172import org.apache.hadoop.hbase.master.procedure.ReopenTableRegionsProcedure;
173import org.apache.hadoop.hbase.master.procedure.ServerCrashProcedure;
174import org.apache.hadoop.hbase.master.procedure.TruncateRegionProcedure;
175import org.apache.hadoop.hbase.master.procedure.TruncateTableProcedure;
176import org.apache.hadoop.hbase.master.region.MasterRegion;
177import org.apache.hadoop.hbase.master.region.MasterRegionFactory;
178import org.apache.hadoop.hbase.master.replication.AbstractPeerProcedure;
179import org.apache.hadoop.hbase.master.replication.AddPeerProcedure;
180import org.apache.hadoop.hbase.master.replication.DisablePeerProcedure;
181import org.apache.hadoop.hbase.master.replication.EnablePeerProcedure;
182import org.apache.hadoop.hbase.master.replication.MigrateReplicationQueueFromZkToTableProcedure;
183import org.apache.hadoop.hbase.master.replication.RemovePeerProcedure;
184import org.apache.hadoop.hbase.master.replication.ReplicationPeerManager;
185import org.apache.hadoop.hbase.master.replication.ReplicationPeerModificationStateStore;
186import org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALManager;
187import org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure;
188import org.apache.hadoop.hbase.master.replication.UpdatePeerConfigProcedure;
189import org.apache.hadoop.hbase.master.slowlog.SlowLogMasterService;
190import org.apache.hadoop.hbase.master.snapshot.SnapshotCleanupStateStore;
191import org.apache.hadoop.hbase.master.snapshot.SnapshotManager;
192import org.apache.hadoop.hbase.master.waleventtracker.WALEventTrackerTableCreator;
193import org.apache.hadoop.hbase.master.zksyncer.MasterAddressSyncer;
194import org.apache.hadoop.hbase.master.zksyncer.MetaLocationSyncer;
195import org.apache.hadoop.hbase.mob.MobFileCleanerChore;
196import org.apache.hadoop.hbase.mob.MobFileCompactionChore;
197import org.apache.hadoop.hbase.monitoring.MemoryBoundedLogMessageBuffer;
198import org.apache.hadoop.hbase.monitoring.MonitoredTask;
199import org.apache.hadoop.hbase.monitoring.TaskGroup;
200import org.apache.hadoop.hbase.monitoring.TaskMonitor;
201import org.apache.hadoop.hbase.namequeues.NamedQueueRecorder;
202import org.apache.hadoop.hbase.procedure.MasterProcedureManagerHost;
203import org.apache.hadoop.hbase.procedure.flush.MasterFlushTableProcedureManager;
204import org.apache.hadoop.hbase.procedure2.LockedResource;
205import org.apache.hadoop.hbase.procedure2.Procedure;
206import org.apache.hadoop.hbase.procedure2.ProcedureEvent;
207import org.apache.hadoop.hbase.procedure2.ProcedureExecutor;
208import org.apache.hadoop.hbase.procedure2.RemoteProcedureDispatcher.RemoteProcedure;
209import org.apache.hadoop.hbase.procedure2.RemoteProcedureException;
210import org.apache.hadoop.hbase.procedure2.store.ProcedureStore;
211import org.apache.hadoop.hbase.procedure2.store.ProcedureStore.ProcedureStoreListener;
212import org.apache.hadoop.hbase.procedure2.store.region.RegionProcedureStore;
213import org.apache.hadoop.hbase.quotas.MasterQuotaManager;
214import org.apache.hadoop.hbase.quotas.MasterQuotasObserver;
215import org.apache.hadoop.hbase.quotas.QuotaObserverChore;
216import org.apache.hadoop.hbase.quotas.QuotaTableUtil;
217import org.apache.hadoop.hbase.quotas.QuotaUtil;
218import org.apache.hadoop.hbase.quotas.SnapshotQuotaObserverChore;
219import org.apache.hadoop.hbase.quotas.SpaceQuotaSnapshot;
220import org.apache.hadoop.hbase.quotas.SpaceQuotaSnapshot.SpaceQuotaStatus;
221import org.apache.hadoop.hbase.quotas.SpaceQuotaSnapshotNotifier;
222import org.apache.hadoop.hbase.quotas.SpaceQuotaSnapshotNotifierFactory;
223import org.apache.hadoop.hbase.quotas.SpaceViolationPolicy;
224import org.apache.hadoop.hbase.regionserver.HRegionServer;
225import org.apache.hadoop.hbase.regionserver.NoSuchColumnFamilyException;
226import org.apache.hadoop.hbase.regionserver.storefiletracker.ModifyColumnFamilyStoreFileTrackerProcedure;
227import org.apache.hadoop.hbase.regionserver.storefiletracker.ModifyTableStoreFileTrackerProcedure;
228import org.apache.hadoop.hbase.replication.ReplicationException;
229import org.apache.hadoop.hbase.replication.ReplicationLoadSource;
230import org.apache.hadoop.hbase.replication.ReplicationPeerConfig;
231import org.apache.hadoop.hbase.replication.ReplicationPeerDescription;
232import org.apache.hadoop.hbase.replication.ReplicationUtils;
233import org.apache.hadoop.hbase.replication.SyncReplicationState;
234import org.apache.hadoop.hbase.replication.ZKReplicationQueueStorageForMigration;
235import org.apache.hadoop.hbase.replication.master.ReplicationHFileCleaner;
236import org.apache.hadoop.hbase.replication.master.ReplicationLogCleaner;
237import org.apache.hadoop.hbase.replication.master.ReplicationLogCleanerBarrier;
238import org.apache.hadoop.hbase.replication.master.ReplicationSinkTrackerTableCreator;
239import org.apache.hadoop.hbase.replication.regionserver.ReplicationSyncUp;
240import org.apache.hadoop.hbase.replication.regionserver.ReplicationSyncUp.ReplicationSyncUpToolInfo;
241import org.apache.hadoop.hbase.rsgroup.RSGroupAdminEndpoint;
242import org.apache.hadoop.hbase.rsgroup.RSGroupBasedLoadBalancer;
243import org.apache.hadoop.hbase.rsgroup.RSGroupInfoManager;
244import org.apache.hadoop.hbase.rsgroup.RSGroupUtil;
245import org.apache.hadoop.hbase.security.AccessDeniedException;
246import org.apache.hadoop.hbase.security.SecurityConstants;
247import org.apache.hadoop.hbase.security.Superusers;
248import org.apache.hadoop.hbase.security.UserProvider;
249import org.apache.hadoop.hbase.trace.TraceUtil;
250import org.apache.hadoop.hbase.util.Addressing;
251import org.apache.hadoop.hbase.util.Bytes;
252import org.apache.hadoop.hbase.util.CommonFSUtils;
253import org.apache.hadoop.hbase.util.CoprocessorConfigurationUtil;
254import org.apache.hadoop.hbase.util.EnvironmentEdgeManager;
255import org.apache.hadoop.hbase.util.FSTableDescriptors;
256import org.apache.hadoop.hbase.util.FutureUtils;
257import org.apache.hadoop.hbase.util.HBaseFsck;
258import org.apache.hadoop.hbase.util.HFileArchiveUtil;
259import org.apache.hadoop.hbase.util.IdLock;
260import org.apache.hadoop.hbase.util.JVMClusterUtil;
261import org.apache.hadoop.hbase.util.JsonMapper;
262import org.apache.hadoop.hbase.util.ModifyRegionUtils;
263import org.apache.hadoop.hbase.util.Pair;
264import org.apache.hadoop.hbase.util.ReflectionUtils;
265import org.apache.hadoop.hbase.util.RetryCounter;
266import org.apache.hadoop.hbase.util.RetryCounterFactory;
267import org.apache.hadoop.hbase.util.TableDescriptorChecker;
268import org.apache.hadoop.hbase.util.Threads;
269import org.apache.hadoop.hbase.util.VersionInfo;
270import org.apache.hadoop.hbase.zookeeper.MasterAddressTracker;
271import org.apache.hadoop.hbase.zookeeper.MetaTableLocator;
272import org.apache.hadoop.hbase.zookeeper.ZKClusterId;
273import org.apache.hadoop.hbase.zookeeper.ZKUtil;
274import org.apache.hadoop.hbase.zookeeper.ZKWatcher;
275import org.apache.hadoop.hbase.zookeeper.ZNodePaths;
276import org.apache.yetus.audience.InterfaceAudience;
277import org.apache.zookeeper.KeeperException;
278import org.slf4j.Logger;
279import org.slf4j.LoggerFactory;
280
281import org.apache.hbase.thirdparty.com.google.common.collect.Lists;
282import org.apache.hbase.thirdparty.com.google.common.collect.Maps;
283import org.apache.hbase.thirdparty.com.google.common.collect.Sets;
284import org.apache.hbase.thirdparty.com.google.common.io.ByteStreams;
285import org.apache.hbase.thirdparty.com.google.common.io.Closeables;
286import org.apache.hbase.thirdparty.com.google.gson.JsonParseException;
287import org.apache.hbase.thirdparty.com.google.protobuf.Descriptors;
288import org.apache.hbase.thirdparty.com.google.protobuf.Service;
289import org.apache.hbase.thirdparty.org.eclipse.jetty.server.Server;
290import org.apache.hbase.thirdparty.org.eclipse.jetty.server.ServerConnector;
291import org.apache.hbase.thirdparty.org.eclipse.jetty.servlet.ServletHolder;
292import org.apache.hbase.thirdparty.org.eclipse.jetty.webapp.WebAppContext;
293import org.apache.hbase.thirdparty.org.glassfish.jersey.server.ResourceConfig;
294import org.apache.hbase.thirdparty.org.glassfish.jersey.servlet.ServletContainer;
295
296import org.apache.hadoop.hbase.shaded.protobuf.RequestConverter;
297import org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.GetRegionInfoResponse;
298import org.apache.hadoop.hbase.shaded.protobuf.generated.SnapshotProtos.SnapshotDescription;
299
300/**
301 * HMaster is the "master server" for HBase. An HBase cluster has one active master. If many masters
302 * are started, all compete. Whichever wins goes on to run the cluster. All others park themselves
303 * in their constructor until master or cluster shutdown or until the active master loses its lease
304 * in zookeeper. Thereafter, all running master jostle to take over master role.
305 * <p/>
306 * The Master can be asked shutdown the cluster. See {@link #shutdown()}. In this case it will tell
307 * all regionservers to go down and then wait on them all reporting in that they are down. This
308 * master will then shut itself down.
309 * <p/>
310 * You can also shutdown just this master. Call {@link #stopMaster()}.
311 * @see org.apache.zookeeper.Watcher
312 */
313@InterfaceAudience.LimitedPrivate(HBaseInterfaceAudience.TOOLS)
314public class HMaster extends HBaseServerBase<MasterRpcServices> implements MasterServices {
315
316  private static final Logger LOG = LoggerFactory.getLogger(HMaster.class);
317
318  // MASTER is name of the webapp and the attribute name used stuffing this
319  // instance into a web context !! AND OTHER PLACES !!
320  public static final String MASTER = "master";
321
322  // Manager and zk listener for master election
323  private final ActiveMasterManager activeMasterManager;
324  // Region server tracker
325  private final RegionServerTracker regionServerTracker;
326  // Draining region server tracker
327  private DrainingServerTracker drainingServerTracker;
328  // Tracker for load balancer state
329  LoadBalancerStateStore loadBalancerStateStore;
330  // Tracker for meta location, if any client ZK quorum specified
331  private MetaLocationSyncer metaLocationSyncer;
332  // Tracker for active master location, if any client ZK quorum specified
333  @InterfaceAudience.Private
334  MasterAddressSyncer masterAddressSyncer;
335  // Tracker for auto snapshot cleanup state
336  SnapshotCleanupStateStore snapshotCleanupStateStore;
337
338  // Tracker for split and merge state
339  private SplitOrMergeStateStore splitOrMergeStateStore;
340
341  private ClusterSchemaService clusterSchemaService;
342
343  public static final String HBASE_MASTER_WAIT_ON_SERVICE_IN_SECONDS =
344    "hbase.master.wait.on.service.seconds";
345  public static final int DEFAULT_HBASE_MASTER_WAIT_ON_SERVICE_IN_SECONDS = 5 * 60;
346
347  public static final String HBASE_MASTER_CLEANER_INTERVAL = "hbase.master.cleaner.interval";
348
349  public static final int DEFAULT_HBASE_MASTER_CLEANER_INTERVAL = 600 * 1000;
350
351  private String clusterId;
352
353  // Metrics for the HMaster
354  final MetricsMaster metricsMaster;
355  // file system manager for the master FS operations
356  private MasterFileSystem fileSystemManager;
357  private MasterWalManager walManager;
358
359  // manager to manage procedure-based WAL splitting, can be null if current
360  // is zk-based WAL splitting. SplitWALManager will replace SplitLogManager
361  // and MasterWalManager, which means zk-based WAL splitting code will be
362  // useless after we switch to the procedure-based one. our eventual goal
363  // is to remove all the zk-based WAL splitting code.
364  private SplitWALManager splitWALManager;
365
366  // server manager to deal with region server info
367  private volatile ServerManager serverManager;
368
369  // manager of assignment nodes in zookeeper
370  private AssignmentManager assignmentManager;
371
372  private RSGroupInfoManager rsGroupInfoManager;
373
374  private final ReplicationLogCleanerBarrier replicationLogCleanerBarrier =
375    new ReplicationLogCleanerBarrier();
376
377  // Only allow to add one sync replication peer concurrently
378  private final Semaphore syncReplicationPeerLock = new Semaphore(1);
379
380  // manager of replication
381  private ReplicationPeerManager replicationPeerManager;
382
383  private SyncReplicationReplayWALManager syncReplicationReplayWALManager;
384
385  // buffer for "fatal error" notices from region servers
386  // in the cluster. This is only used for assisting
387  // operations/debugging.
388  MemoryBoundedLogMessageBuffer rsFatals;
389
390  // flag set after we become the active master (used for testing)
391  private volatile boolean activeMaster = false;
392
393  // flag set after we complete initialization once active
394  private final ProcedureEvent<?> initialized = new ProcedureEvent<>("master initialized");
395
396  // flag set after master services are started,
397  // initialization may have not completed yet.
398  volatile boolean serviceStarted = false;
399
400  // Maximum time we should run balancer for
401  private final int maxBalancingTime;
402  // Maximum percent of regions in transition when balancing
403  private final double maxRitPercent;
404
405  private final LockManager lockManager = new LockManager(this);
406
407  private RSGroupBasedLoadBalancer balancer;
408  private BalancerChore balancerChore;
409  private static boolean disableBalancerChoreForTest = false;
410  private RegionNormalizerManager regionNormalizerManager;
411  private ClusterStatusChore clusterStatusChore;
412  private ClusterStatusPublisher clusterStatusPublisherChore = null;
413  private SnapshotCleanerChore snapshotCleanerChore = null;
414
415  private HbckChore hbckChore;
416  CatalogJanitor catalogJanitorChore;
417  // Threadpool for scanning the Old logs directory, used by the LogCleaner
418  private DirScanPool logCleanerPool;
419  private LogCleaner logCleaner;
420  // HFile cleaners for the custom hfile archive paths and the default archive path
421  // The archive path cleaner is the first element
422  private List<HFileCleaner> hfileCleaners = new ArrayList<>();
423  // The hfile cleaner paths, including custom paths and the default archive path
424  private List<Path> hfileCleanerPaths = new ArrayList<>();
425  // The shared hfile cleaner pool for the custom archive paths
426  private DirScanPool sharedHFileCleanerPool;
427  // The exclusive hfile cleaner pool for scanning the archive directory
428  private DirScanPool exclusiveHFileCleanerPool;
429  private ReplicationBarrierCleaner replicationBarrierCleaner;
430  private MobFileCleanerChore mobFileCleanerChore;
431  private MobFileCompactionChore mobFileCompactionChore;
432  private RollingUpgradeChore rollingUpgradeChore;
433  // used to synchronize the mobCompactionStates
434  private final IdLock mobCompactionLock = new IdLock();
435  // save the information of mob compactions in tables.
436  // the key is table name, the value is the number of compactions in that table.
437  private Map<TableName, AtomicInteger> mobCompactionStates = Maps.newConcurrentMap();
438
439  volatile MasterCoprocessorHost cpHost;
440
441  private final boolean preLoadTableDescriptors;
442
443  // Time stamps for when a hmaster became active
444  private long masterActiveTime;
445
446  // Time stamp for when HMaster finishes becoming Active Master
447  private long masterFinishedInitializationTime;
448
449  Map<String, Service> coprocessorServiceHandlers = Maps.newHashMap();
450
451  // monitor for snapshot of hbase tables
452  SnapshotManager snapshotManager;
453  // monitor for distributed procedures
454  private MasterProcedureManagerHost mpmHost;
455
456  private RegionsRecoveryChore regionsRecoveryChore = null;
457
458  private RegionsRecoveryConfigManager regionsRecoveryConfigManager = null;
459  // it is assigned after 'initialized' guard set to true, so should be volatile
460  private volatile MasterQuotaManager quotaManager;
461  private SpaceQuotaSnapshotNotifier spaceQuotaSnapshotNotifier;
462  private QuotaObserverChore quotaObserverChore;
463  private SnapshotQuotaObserverChore snapshotQuotaChore;
464  private OldWALsDirSizeChore oldWALsDirSizeChore;
465
466  private ProcedureExecutor<MasterProcedureEnv> procedureExecutor;
467  private ProcedureStore procedureStore;
468
469  // the master local storage to store procedure data, meta region locations, etc.
470  private MasterRegion masterRegion;
471
472  private RegionServerList rsListStorage;
473
474  // handle table states
475  private TableStateManager tableStateManager;
476
477  /** jetty server for master to redirect requests to regionserver infoServer */
478  private Server masterJettyServer;
479
480  // Determine if we should do normal startup or minimal "single-user" mode with no region
481  // servers and no user tables. Useful for repair and recovery of hbase:meta
482  private final boolean maintenanceMode;
483  static final String MAINTENANCE_MODE = "hbase.master.maintenance_mode";
484
485  // the in process region server for carry system regions in maintenanceMode
486  private JVMClusterUtil.RegionServerThread maintenanceRegionServer;
487
488  // Cached clusterId on stand by masters to serve clusterID requests from clients.
489  private final CachedClusterId cachedClusterId;
490
491  public static final String WARMUP_BEFORE_MOVE = "hbase.master.warmup.before.move";
492  private static final boolean DEFAULT_WARMUP_BEFORE_MOVE = true;
493
494  /**
495   * Use RSProcedureDispatcher instance to initiate master -> rs remote procedure execution. Use
496   * this config to extend RSProcedureDispatcher (mainly for testing purpose).
497   */
498  public static final String HBASE_MASTER_RSPROC_DISPATCHER_CLASS =
499    "hbase.master.rsproc.dispatcher.class";
500  private static final String DEFAULT_HBASE_MASTER_RSPROC_DISPATCHER_CLASS =
501    RSProcedureDispatcher.class.getName();
502
503  private TaskGroup startupTaskGroup;
504
505  /**
506   * Store whether we allow replication peer modification operations.
507   */
508  private ReplicationPeerModificationStateStore replicationPeerModificationStateStore;
509
510  /**
511   * Initializes the HMaster. The steps are as follows:
512   * <p>
513   * <ol>
514   * <li>Initialize the local HRegionServer
515   * <li>Start the ActiveMasterManager.
516   * </ol>
517   * <p>
518   * Remaining steps of initialization occur in {@link #finishActiveMasterInitialization()} after
519   * the master becomes the active one.
520   */
521  public HMaster(final Configuration conf) throws IOException {
522    super(conf, "Master");
523    final Span span = TraceUtil.createSpan("HMaster.cxtor");
524    try (Scope ignored = span.makeCurrent()) {
525      if (conf.getBoolean(MAINTENANCE_MODE, false)) {
526        LOG.info("Detected {}=true via configuration.", MAINTENANCE_MODE);
527        maintenanceMode = true;
528      } else if (Boolean.getBoolean(MAINTENANCE_MODE)) {
529        LOG.info("Detected {}=true via environment variables.", MAINTENANCE_MODE);
530        maintenanceMode = true;
531      } else {
532        maintenanceMode = false;
533      }
534      this.rsFatals = new MemoryBoundedLogMessageBuffer(
535        conf.getLong("hbase.master.buffer.for.rs.fatals", 1 * 1024 * 1024));
536      LOG.info("hbase.rootdir={}, hbase.cluster.distributed={}",
537        CommonFSUtils.getRootDir(this.conf),
538        this.conf.getBoolean(HConstants.CLUSTER_DISTRIBUTED, false));
539
540      // Disable usage of meta replicas in the master
541      this.conf.setBoolean(HConstants.USE_META_REPLICAS, false);
542
543      decorateMasterConfiguration(this.conf);
544
545      // Hack! Maps DFSClient => Master for logs. HDFS made this
546      // config param for task trackers, but we can piggyback off of it.
547      if (this.conf.get("mapreduce.task.attempt.id") == null) {
548        this.conf.set("mapreduce.task.attempt.id", "hb_m_" + this.serverName.toString());
549      }
550
551      this.metricsMaster = new MetricsMaster(new MetricsMasterWrapperImpl(this));
552
553      // preload table descriptor at startup
554      this.preLoadTableDescriptors = conf.getBoolean("hbase.master.preload.tabledescriptors", true);
555
556      this.maxBalancingTime = getMaxBalancingTime();
557      this.maxRitPercent = conf.getDouble(HConstants.HBASE_MASTER_BALANCER_MAX_RIT_PERCENT,
558        HConstants.DEFAULT_HBASE_MASTER_BALANCER_MAX_RIT_PERCENT);
559
560      // Do we publish the status?
561      boolean shouldPublish =
562        conf.getBoolean(HConstants.STATUS_PUBLISHED, HConstants.STATUS_PUBLISHED_DEFAULT);
563      Class<? extends ClusterStatusPublisher.Publisher> publisherClass =
564        conf.getClass(ClusterStatusPublisher.STATUS_PUBLISHER_CLASS,
565          ClusterStatusPublisher.DEFAULT_STATUS_PUBLISHER_CLASS,
566          ClusterStatusPublisher.Publisher.class);
567
568      if (shouldPublish) {
569        if (publisherClass == null) {
570          LOG.warn(HConstants.STATUS_PUBLISHED + " is true, but "
571            + ClusterStatusPublisher.DEFAULT_STATUS_PUBLISHER_CLASS
572            + " is not set - not publishing status");
573        } else {
574          clusterStatusPublisherChore = new ClusterStatusPublisher(this, conf, publisherClass);
575          LOG.debug("Created {}", this.clusterStatusPublisherChore);
576          getChoreService().scheduleChore(clusterStatusPublisherChore);
577        }
578      }
579      this.activeMasterManager = createActiveMasterManager(zooKeeper, serverName, this);
580      cachedClusterId = new CachedClusterId(this, conf);
581      this.regionServerTracker = new RegionServerTracker(zooKeeper, this);
582      this.rpcServices.start(zooKeeper);
583      span.setStatus(StatusCode.OK);
584    } catch (Throwable t) {
585      // Make sure we log the exception. HMaster is often started via reflection and the
586      // cause of failed startup is lost.
587      TraceUtil.setError(span, t);
588      LOG.error("Failed construction of Master", t);
589      throw t;
590    } finally {
591      span.end();
592    }
593  }
594
595  /**
596   * Protected to have custom implementations in tests override the default ActiveMaster
597   * implementation.
598   */
599  protected ActiveMasterManager createActiveMasterManager(ZKWatcher zk, ServerName sn,
600    org.apache.hadoop.hbase.Server server) throws InterruptedIOException {
601    return new ActiveMasterManager(zk, sn, server);
602  }
603
604  @Override
605  protected String getUseThisHostnameInstead(Configuration conf) {
606    return conf.get(MASTER_HOSTNAME_KEY);
607  }
608
609  private void registerConfigurationObservers() {
610    configurationManager.registerObserver(this.rpcServices);
611    configurationManager.registerObserver(this);
612  }
613
614  // Main run loop. Calls through to the regionserver run loop AFTER becoming active Master; will
615  // block in here until then.
616  @Override
617  public void run() {
618    try {
619      installShutdownHook();
620      registerConfigurationObservers();
621      Threads.setDaemonThreadRunning(new Thread(TraceUtil.tracedRunnable(() -> {
622        try {
623          int infoPort = putUpJettyServer();
624          startActiveMasterManager(infoPort);
625        } catch (Throwable t) {
626          // Make sure we log the exception.
627          String error = "Failed to become Active Master";
628          LOG.error(error, t);
629          // Abort should have been called already.
630          if (!isAborted()) {
631            abort(error, t);
632          }
633        }
634      }, "HMaster.becomeActiveMaster")), getName() + ":becomeActiveMaster");
635      while (!isStopped() && !isAborted()) {
636        sleeper.sleep();
637      }
638      final Span span = TraceUtil.createSpan("HMaster exiting main loop");
639      try (Scope ignored = span.makeCurrent()) {
640        stopInfoServer();
641        closeClusterConnection();
642        stopServiceThreads();
643        if (this.rpcServices != null) {
644          this.rpcServices.stop();
645        }
646        closeZooKeeper();
647        closeTableDescriptors();
648        span.setStatus(StatusCode.OK);
649      } finally {
650        span.end();
651      }
652    } finally {
653      if (this.clusterSchemaService != null) {
654        // If on way out, then we are no longer active master.
655        this.clusterSchemaService.stopAsync();
656        try {
657          this.clusterSchemaService
658            .awaitTerminated(getConfiguration().getInt(HBASE_MASTER_WAIT_ON_SERVICE_IN_SECONDS,
659              DEFAULT_HBASE_MASTER_WAIT_ON_SERVICE_IN_SECONDS), TimeUnit.SECONDS);
660        } catch (TimeoutException te) {
661          LOG.warn("Failed shutdown of clusterSchemaService", te);
662        }
663      }
664      this.activeMaster = false;
665    }
666  }
667
668  // return the actual infoPort, -1 means disable info server.
669  private int putUpJettyServer() throws IOException {
670    if (!conf.getBoolean("hbase.master.infoserver.redirect", true)) {
671      return -1;
672    }
673    final int infoPort =
674      conf.getInt("hbase.master.info.port.orig", HConstants.DEFAULT_MASTER_INFOPORT);
675    // -1 is for disabling info server, so no redirecting
676    if (infoPort < 0 || infoServer == null) {
677      return -1;
678    }
679    if (infoPort == infoServer.getPort()) {
680      // server is already running
681      return infoPort;
682    }
683    final String addr = conf.get("hbase.master.info.bindAddress", "0.0.0.0");
684    if (!Addressing.isLocalAddress(InetAddress.getByName(addr))) {
685      String msg = "Failed to start redirecting jetty server. Address " + addr
686        + " does not belong to this host. Correct configuration parameter: "
687        + "hbase.master.info.bindAddress";
688      LOG.error(msg);
689      throw new IOException(msg);
690    }
691
692    // TODO I'm pretty sure we could just add another binding to the InfoServer run by
693    // the RegionServer and have it run the RedirectServlet instead of standing up
694    // a second entire stack here.
695    masterJettyServer = new Server();
696    final ServerConnector connector = new ServerConnector(masterJettyServer);
697    connector.setHost(addr);
698    connector.setPort(infoPort);
699    masterJettyServer.addConnector(connector);
700    masterJettyServer.setStopAtShutdown(true);
701    masterJettyServer.setHandler(HttpServer.buildGzipHandler(masterJettyServer.getHandler()));
702
703    final String redirectHostname =
704      StringUtils.isBlank(useThisHostnameInstead) ? null : useThisHostnameInstead;
705
706    final MasterRedirectServlet redirect = new MasterRedirectServlet(infoServer, redirectHostname);
707    final WebAppContext context =
708      new WebAppContext(null, "/", null, null, null, null, WebAppContext.NO_SESSIONS);
709    context.addServlet(new ServletHolder(redirect), "/*");
710    context.setServer(masterJettyServer);
711
712    try {
713      masterJettyServer.start();
714    } catch (Exception e) {
715      throw new IOException("Failed to start redirecting jetty server", e);
716    }
717    return connector.getLocalPort();
718  }
719
720  /**
721   * For compatibility, if failed with regionserver credentials, try the master one
722   */
723  @Override
724  protected void login(UserProvider user, String host) throws IOException {
725    try {
726      user.login(SecurityConstants.REGIONSERVER_KRB_KEYTAB_FILE,
727        SecurityConstants.REGIONSERVER_KRB_PRINCIPAL, host);
728    } catch (IOException ie) {
729      user.login(SecurityConstants.MASTER_KRB_KEYTAB_FILE, SecurityConstants.MASTER_KRB_PRINCIPAL,
730        host);
731    }
732  }
733
734  public MasterRpcServices getMasterRpcServices() {
735    return rpcServices;
736  }
737
738  @Override
739  protected MasterCoprocessorHost getCoprocessorHost() {
740    return getMasterCoprocessorHost();
741  }
742
743  public boolean balanceSwitch(final boolean b) throws IOException {
744    return getMasterRpcServices().switchBalancer(b, BalanceSwitchMode.ASYNC);
745  }
746
747  @Override
748  protected String getProcessName() {
749    return MASTER;
750  }
751
752  @Override
753  protected boolean canCreateBaseZNode() {
754    return true;
755  }
756
757  @Override
758  protected boolean canUpdateTableDescriptor() {
759    return true;
760  }
761
762  @Override
763  protected boolean cacheTableDescriptor() {
764    return true;
765  }
766
767  protected MasterRpcServices createRpcServices() throws IOException {
768    return new MasterRpcServices(this);
769  }
770
771  @Override
772  protected void configureInfoServer(InfoServer infoServer) {
773    infoServer.addUnprivilegedServlet("master-status", "/master-status", MasterStatusServlet.class);
774    infoServer.addUnprivilegedServlet("api_v1", "/api/v1/*", buildApiV1Servlet());
775    infoServer.addUnprivilegedServlet("hbck", "/hbck/*", buildHbckServlet());
776
777    infoServer.setAttribute(MASTER, this);
778  }
779
780  private ServletHolder buildApiV1Servlet() {
781    final ResourceConfig config = ResourceConfigFactory.createResourceConfig(conf, this);
782    return new ServletHolder(new ServletContainer(config));
783  }
784
785  private ServletHolder buildHbckServlet() {
786    final ResourceConfig config = HbckConfigFactory.createResourceConfig(conf, this);
787    return new ServletHolder(new ServletContainer(config));
788  }
789
790  @Override
791  protected Class<? extends HttpServlet> getDumpServlet() {
792    return MasterDumpServlet.class;
793  }
794
795  @Override
796  public MetricsMaster getMasterMetrics() {
797    return metricsMaster;
798  }
799
800  /**
801   * Initialize all ZK based system trackers. But do not include {@link RegionServerTracker}, it
802   * should have already been initialized along with {@link ServerManager}.
803   */
804  private void initializeZKBasedSystemTrackers()
805    throws IOException, KeeperException, ReplicationException, DeserializationException {
806    if (maintenanceMode) {
807      // in maintenance mode, always use MaintenanceLoadBalancer.
808      conf.unset(LoadBalancer.HBASE_RSGROUP_LOADBALANCER_CLASS);
809      conf.setClass(HConstants.HBASE_MASTER_LOADBALANCER_CLASS, MaintenanceLoadBalancer.class,
810        LoadBalancer.class);
811    }
812    this.balancer = new RSGroupBasedLoadBalancer();
813    this.loadBalancerStateStore = new LoadBalancerStateStore(masterRegion, zooKeeper);
814
815    this.regionNormalizerManager =
816      RegionNormalizerFactory.createNormalizerManager(conf, masterRegion, zooKeeper, this);
817    this.configurationManager.registerObserver(regionNormalizerManager);
818    this.regionNormalizerManager.start();
819
820    this.splitOrMergeStateStore = new SplitOrMergeStateStore(masterRegion, zooKeeper, conf);
821
822    // This is for backwards compatible. We do not need the CP for rs group now but if user want to
823    // load it, we need to enable rs group.
824    String[] cpClasses = conf.getStrings(MasterCoprocessorHost.MASTER_COPROCESSOR_CONF_KEY);
825    if (cpClasses != null) {
826      for (String cpClass : cpClasses) {
827        if (RSGroupAdminEndpoint.class.getName().equals(cpClass)) {
828          RSGroupUtil.enableRSGroup(conf);
829          break;
830        }
831      }
832    }
833    this.rsGroupInfoManager = RSGroupInfoManager.create(this);
834
835    this.replicationPeerManager = ReplicationPeerManager.create(this, clusterId);
836    this.configurationManager.registerObserver(replicationPeerManager);
837    this.replicationPeerModificationStateStore =
838      new ReplicationPeerModificationStateStore(masterRegion);
839
840    this.drainingServerTracker = new DrainingServerTracker(zooKeeper, this, this.serverManager);
841    this.drainingServerTracker.start();
842
843    this.snapshotCleanupStateStore = new SnapshotCleanupStateStore(masterRegion, zooKeeper);
844
845    String clientQuorumServers = conf.get(HConstants.CLIENT_ZOOKEEPER_QUORUM);
846    boolean clientZkObserverMode = conf.getBoolean(HConstants.CLIENT_ZOOKEEPER_OBSERVER_MODE,
847      HConstants.DEFAULT_CLIENT_ZOOKEEPER_OBSERVER_MODE);
848    if (clientQuorumServers != null && !clientZkObserverMode) {
849      // we need to take care of the ZK information synchronization
850      // if given client ZK are not observer nodes
851      ZKWatcher clientZkWatcher = new ZKWatcher(conf,
852        getProcessName() + ":" + rpcServices.getSocketAddress().getPort() + "-clientZK", this,
853        false, true);
854      this.metaLocationSyncer = new MetaLocationSyncer(zooKeeper, clientZkWatcher, this);
855      this.metaLocationSyncer.start();
856      this.masterAddressSyncer = new MasterAddressSyncer(zooKeeper, clientZkWatcher, this);
857      this.masterAddressSyncer.start();
858      // set cluster id is a one-go effort
859      ZKClusterId.setClusterId(clientZkWatcher, fileSystemManager.getClusterId());
860    }
861
862    // Set the cluster as up. If new RSs, they'll be waiting on this before
863    // going ahead with their startup.
864    boolean wasUp = this.clusterStatusTracker.isClusterUp();
865    if (!wasUp) this.clusterStatusTracker.setClusterUp();
866
867    LOG.info("Active/primary master=" + this.serverName + ", sessionid=0x"
868      + Long.toHexString(this.zooKeeper.getRecoverableZooKeeper().getSessionId())
869      + ", setting cluster-up flag (Was=" + wasUp + ")");
870
871    // create/initialize the snapshot manager and other procedure managers
872    this.snapshotManager = new SnapshotManager();
873    this.mpmHost = new MasterProcedureManagerHost();
874    this.mpmHost.register(this.snapshotManager);
875    this.mpmHost.register(new MasterFlushTableProcedureManager());
876    this.mpmHost.loadProcedures(conf);
877    this.mpmHost.initialize(this, this.metricsMaster);
878  }
879
880  // Will be overriden in test to inject customized AssignmentManager
881  @InterfaceAudience.Private
882  protected AssignmentManager createAssignmentManager(MasterServices master,
883    MasterRegion masterRegion) {
884    return new AssignmentManager(master, masterRegion);
885  }
886
887  private void tryMigrateMetaLocationsFromZooKeeper() throws IOException, KeeperException {
888    // try migrate data from zookeeper
889    try (ResultScanner scanner =
890      masterRegion.getScanner(new Scan().addFamily(HConstants.CATALOG_FAMILY))) {
891      if (scanner.next() != null) {
892        // notice that all replicas for a region are in the same row, so the migration can be
893        // done with in a one row put, which means if we have data in catalog family then we can
894        // make sure that the migration is done.
895        LOG.info("The {} family in master local region already has data in it, skip migrating...",
896          HConstants.CATALOG_FAMILY_STR);
897        return;
898      }
899    }
900    // start migrating
901    byte[] row = CatalogFamilyFormat.getMetaKeyForRegion(RegionInfoBuilder.FIRST_META_REGIONINFO);
902    Put put = new Put(row);
903    List<String> metaReplicaNodes = zooKeeper.getMetaReplicaNodes();
904    StringBuilder info = new StringBuilder("Migrating meta locations:");
905    for (String metaReplicaNode : metaReplicaNodes) {
906      int replicaId = zooKeeper.getZNodePaths().getMetaReplicaIdFromZNode(metaReplicaNode);
907      RegionState state = MetaTableLocator.getMetaRegionState(zooKeeper, replicaId);
908      info.append(" ").append(state);
909      put.setTimestamp(state.getStamp());
910      MetaTableAccessor.addRegionInfo(put, state.getRegion());
911      if (state.getServerName() != null) {
912        MetaTableAccessor.addLocation(put, state.getServerName(), HConstants.NO_SEQNUM, replicaId);
913      }
914      put.add(CellBuilderFactory.create(CellBuilderType.SHALLOW_COPY).setRow(put.getRow())
915        .setFamily(HConstants.CATALOG_FAMILY)
916        .setQualifier(RegionStateStore.getStateColumn(replicaId)).setTimestamp(put.getTimestamp())
917        .setType(Cell.Type.Put).setValue(Bytes.toBytes(state.getState().name())).build());
918    }
919    if (!put.isEmpty()) {
920      LOG.info(info.toString());
921      masterRegion.update(r -> r.put(put));
922    } else {
923      LOG.info("No meta location available on zookeeper, skip migrating...");
924    }
925  }
926
927  /**
928   * Finish initialization of HMaster after becoming the primary master.
929   * <p/>
930   * The startup order is a bit complicated but very important, do not change it unless you know
931   * what you are doing.
932   * <ol>
933   * <li>Initialize file system based components - file system manager, wal manager, table
934   * descriptors, etc</li>
935   * <li>Publish cluster id</li>
936   * <li>Here comes the most complicated part - initialize server manager, assignment manager and
937   * region server tracker
938   * <ol type='i'>
939   * <li>Create server manager</li>
940   * <li>Create master local region</li>
941   * <li>Create procedure executor, load the procedures, but do not start workers. We will start it
942   * later after we finish scheduling SCPs to avoid scheduling duplicated SCPs for the same
943   * server</li>
944   * <li>Create assignment manager and start it, load the meta region state, but do not load data
945   * from meta region</li>
946   * <li>Start region server tracker, construct the online servers set and find out dead servers and
947   * schedule SCP for them. The online servers will be constructed by scanning zk, and we will also
948   * scan the wal directory and load from master local region to find out possible live region
949   * servers, and the differences between these two sets are the dead servers</li>
950   * </ol>
951   * </li>
952   * <li>If this is a new deploy, schedule a InitMetaProcedure to initialize meta</li>
953   * <li>Start necessary service threads - balancer, catalog janitor, executor services, and also
954   * the procedure executor, etc. Notice that the balancer must be created first as assignment
955   * manager may use it when assigning regions.</li>
956   * <li>Wait for meta to be initialized if necessary, start table state manager.</li>
957   * <li>Wait for enough region servers to check-in</li>
958   * <li>Let assignment manager load data from meta and construct region states</li>
959   * <li>Start all other things such as chore services, etc</li>
960   * </ol>
961   * <p/>
962   * Notice that now we will not schedule a special procedure to make meta online(unless the first
963   * time where meta has not been created yet), we will rely on SCP to bring meta online.
964   */
965  private void finishActiveMasterInitialization() throws IOException, InterruptedException,
966    KeeperException, ReplicationException, DeserializationException {
967    /*
968     * We are active master now... go initialize components we need to run.
969     */
970    startupTaskGroup.addTask("Initializing Master file system");
971
972    this.masterActiveTime = EnvironmentEdgeManager.currentTime();
973    // TODO: Do this using Dependency Injection, using PicoContainer, Guice or Spring.
974
975    // always initialize the MemStoreLAB as we use a region to store data in master now, see
976    // localStore.
977    initializeMemStoreChunkCreator(null);
978    this.fileSystemManager = new MasterFileSystem(conf);
979    this.walManager = new MasterWalManager(this);
980
981    // warm-up HTDs cache on master initialization
982    if (preLoadTableDescriptors) {
983      startupTaskGroup.addTask("Pre-loading table descriptors");
984      this.tableDescriptors.getAll();
985    }
986
987    // Publish cluster ID; set it in Master too. The superclass RegionServer does this later but
988    // only after it has checked in with the Master. At least a few tests ask Master for clusterId
989    // before it has called its run method and before RegionServer has done the reportForDuty.
990    ClusterId clusterId = fileSystemManager.getClusterId();
991    startupTaskGroup.addTask("Publishing Cluster ID " + clusterId + " in ZooKeeper");
992    ZKClusterId.setClusterId(this.zooKeeper, fileSystemManager.getClusterId());
993    this.clusterId = clusterId.toString();
994
995    // Precaution. Put in place the old hbck1 lock file to fence out old hbase1s running their
996    // hbck1s against an hbase2 cluster; it could do damage. To skip this behavior, set
997    // hbase.write.hbck1.lock.file to false.
998    if (this.conf.getBoolean("hbase.write.hbck1.lock.file", true)) {
999      Pair<Path, FSDataOutputStream> result = null;
1000      try {
1001        result = HBaseFsck.checkAndMarkRunningHbck(this.conf,
1002          HBaseFsck.createLockRetryCounterFactory(this.conf).create());
1003      } finally {
1004        if (result != null) {
1005          Closeables.close(result.getSecond(), true);
1006        }
1007      }
1008    }
1009
1010    startupTaskGroup.addTask("Initialize ServerManager and schedule SCP for crash servers");
1011    // The below two managers must be created before loading procedures, as they will be used during
1012    // loading.
1013    // initialize master local region
1014    masterRegion = MasterRegionFactory.create(this);
1015    rsListStorage = new MasterRegionServerList(masterRegion, this);
1016
1017    // Initialize the ServerManager and register it as a configuration observer
1018    this.serverManager = createServerManager(this, rsListStorage);
1019    this.configurationManager.registerObserver(this.serverManager);
1020
1021    this.syncReplicationReplayWALManager = new SyncReplicationReplayWALManager(this);
1022    if (
1023      !conf.getBoolean(HBASE_SPLIT_WAL_COORDINATED_BY_ZK, DEFAULT_HBASE_SPLIT_COORDINATED_BY_ZK)
1024    ) {
1025      this.splitWALManager = new SplitWALManager(this);
1026    }
1027
1028    tryMigrateMetaLocationsFromZooKeeper();
1029
1030    createProcedureExecutor();
1031    Map<Class<?>, List<Procedure<MasterProcedureEnv>>> procsByType = procedureExecutor
1032      .getActiveProceduresNoCopy().stream().collect(Collectors.groupingBy(p -> p.getClass()));
1033
1034    // Create Assignment Manager
1035    this.assignmentManager = createAssignmentManager(this, masterRegion);
1036    this.assignmentManager.start();
1037    // TODO: TRSP can perform as the sub procedure for other procedures, so even if it is marked as
1038    // completed, it could still be in the procedure list. This is a bit strange but is another
1039    // story, need to verify the implementation for ProcedureExecutor and ProcedureStore.
1040    List<TransitRegionStateProcedure> ritList =
1041      procsByType.getOrDefault(TransitRegionStateProcedure.class, Collections.emptyList()).stream()
1042        .filter(p -> !p.isFinished()).map(p -> (TransitRegionStateProcedure) p)
1043        .collect(Collectors.toList());
1044    this.assignmentManager.setupRIT(ritList);
1045
1046    // Start RegionServerTracker with listing of servers found with exiting SCPs -- these should
1047    // be registered in the deadServers set -- and the servernames loaded from the WAL directory
1048    // and master local region that COULD BE 'alive'(we'll schedule SCPs for each and let SCP figure
1049    // it out).
1050    // We also pass dirs that are already 'splitting'... so we can do some checks down in tracker.
1051    // TODO: Generate the splitting and live Set in one pass instead of two as we currently do.
1052    this.regionServerTracker.upgrade(
1053      procsByType.getOrDefault(ServerCrashProcedure.class, Collections.emptyList()).stream()
1054        .map(p -> (ServerCrashProcedure) p).map(p -> p.getServerName()).collect(Collectors.toSet()),
1055      Sets.union(rsListStorage.getAll(), walManager.getLiveServersFromWALDir()),
1056      walManager.getSplittingServersFromWALDir());
1057    // This manager must be accessed AFTER hbase:meta is confirmed on line..
1058    this.tableStateManager = new TableStateManager(this);
1059
1060    startupTaskGroup.addTask("Initializing ZK system trackers");
1061    initializeZKBasedSystemTrackers();
1062    startupTaskGroup.addTask("Loading last flushed sequence id of regions");
1063    try {
1064      this.serverManager.loadLastFlushedSequenceIds();
1065    } catch (IOException e) {
1066      LOG.info("Failed to load last flushed sequence id of regions" + " from file system", e);
1067    }
1068    // Set ourselves as active Master now our claim has succeeded up in zk.
1069    this.activeMaster = true;
1070
1071    // Start the Zombie master detector after setting master as active, see HBASE-21535
1072    Thread zombieDetector = new Thread(new MasterInitializationMonitor(this),
1073      "ActiveMasterInitializationMonitor-" + EnvironmentEdgeManager.currentTime());
1074    zombieDetector.setDaemon(true);
1075    zombieDetector.start();
1076
1077    if (!maintenanceMode) {
1078      startupTaskGroup.addTask("Initializing master coprocessors");
1079      setQuotasObserver(conf);
1080      initializeCoprocessorHost(conf);
1081    } else {
1082      // start an in process region server for carrying system regions
1083      maintenanceRegionServer =
1084        JVMClusterUtil.createRegionServerThread(getConfiguration(), HRegionServer.class, 0);
1085      maintenanceRegionServer.start();
1086    }
1087
1088    // Checking if meta needs initializing.
1089    startupTaskGroup.addTask("Initializing meta table if this is a new deploy");
1090    InitMetaProcedure initMetaProc = null;
1091    // Print out state of hbase:meta on startup; helps debugging.
1092    if (!this.assignmentManager.getRegionStates().hasTableRegionStates(TableName.META_TABLE_NAME)) {
1093      Optional<InitMetaProcedure> optProc = procedureExecutor.getProcedures().stream()
1094        .filter(p -> p instanceof InitMetaProcedure).map(o -> (InitMetaProcedure) o).findAny();
1095      initMetaProc = optProc.orElseGet(() -> {
1096        // schedule an init meta procedure if meta has not been deployed yet
1097        InitMetaProcedure temp = new InitMetaProcedure();
1098        procedureExecutor.submitProcedure(temp);
1099        return temp;
1100      });
1101    }
1102
1103    // initialize load balancer
1104    this.balancer.setMasterServices(this);
1105    this.balancer.initialize();
1106    this.balancer.updateClusterMetrics(getClusterMetricsWithoutCoprocessor());
1107
1108    // try migrate replication data
1109    ZKReplicationQueueStorageForMigration oldReplicationQueueStorage =
1110      new ZKReplicationQueueStorageForMigration(zooKeeper, conf);
1111    // check whether there are something to migrate and we haven't scheduled a migration procedure
1112    // yet
1113    if (
1114      oldReplicationQueueStorage.hasData() && procedureExecutor.getProcedures().stream()
1115        .allMatch(p -> !(p instanceof MigrateReplicationQueueFromZkToTableProcedure))
1116    ) {
1117      procedureExecutor.submitProcedure(new MigrateReplicationQueueFromZkToTableProcedure());
1118    }
1119    // start up all service threads.
1120    startupTaskGroup.addTask("Initializing master service threads");
1121    startServiceThreads();
1122    // wait meta to be initialized after we start procedure executor
1123    if (initMetaProc != null) {
1124      initMetaProc.await();
1125    }
1126    // Wake up this server to check in
1127    sleeper.skipSleepCycle();
1128
1129    // Wait for region servers to report in.
1130    // With this as part of master initialization, it precludes our being able to start a single
1131    // server that is both Master and RegionServer. Needs more thought. TODO.
1132    String statusStr = "Wait for region servers to report in";
1133    MonitoredTask waitRegionServer = startupTaskGroup.addTask(statusStr);
1134    LOG.info(Objects.toString(waitRegionServer));
1135    waitForRegionServers(waitRegionServer);
1136
1137    // Check if master is shutting down because issue initializing regionservers or balancer.
1138    if (isStopped()) {
1139      return;
1140    }
1141
1142    startupTaskGroup.addTask("Starting assignment manager");
1143    // FIRST HBASE:META READ!!!!
1144    // The below cannot make progress w/o hbase:meta being online.
1145    // This is the FIRST attempt at going to hbase:meta. Meta on-lining is going on in background
1146    // as procedures run -- in particular SCPs for crashed servers... One should put up hbase:meta
1147    // if it is down. It may take a while to come online. So, wait here until meta if for sure
1148    // available. That's what waitForMetaOnline does.
1149    if (!waitForMetaOnline()) {
1150      return;
1151    }
1152
1153    TableDescriptor metaDescriptor = tableDescriptors.get(TableName.META_TABLE_NAME);
1154    final ColumnFamilyDescriptor tableFamilyDesc =
1155      metaDescriptor.getColumnFamily(HConstants.TABLE_FAMILY);
1156    final ColumnFamilyDescriptor replBarrierFamilyDesc =
1157      metaDescriptor.getColumnFamily(HConstants.REPLICATION_BARRIER_FAMILY);
1158
1159    this.assignmentManager.joinCluster();
1160    // The below depends on hbase:meta being online.
1161    this.assignmentManager.processOfflineRegions();
1162    // this must be called after the above processOfflineRegions to prevent race
1163    this.assignmentManager.wakeMetaLoadedEvent();
1164
1165    // for migrating from a version without HBASE-25099, and also for honoring the configuration
1166    // first.
1167    if (conf.get(HConstants.META_REPLICAS_NUM) != null) {
1168      int replicasNumInConf =
1169        conf.getInt(HConstants.META_REPLICAS_NUM, HConstants.DEFAULT_META_REPLICA_NUM);
1170      TableDescriptor metaDesc = tableDescriptors.get(TableName.META_TABLE_NAME);
1171      if (metaDesc.getRegionReplication() != replicasNumInConf) {
1172        // it is possible that we already have some replicas before upgrading, so we must set the
1173        // region replication number in meta TableDescriptor directly first, without creating a
1174        // ModifyTableProcedure, otherwise it may cause a double assign for the meta replicas.
1175        int existingReplicasCount =
1176          assignmentManager.getRegionStates().getRegionsOfTable(TableName.META_TABLE_NAME).size();
1177        if (existingReplicasCount > metaDesc.getRegionReplication()) {
1178          LOG.info("Update replica count of hbase:meta from {}(in TableDescriptor)"
1179            + " to {}(existing ZNodes)", metaDesc.getRegionReplication(), existingReplicasCount);
1180          metaDesc = TableDescriptorBuilder.newBuilder(metaDesc)
1181            .setRegionReplication(existingReplicasCount).build();
1182          tableDescriptors.update(metaDesc);
1183        }
1184        // check again, and issue a ModifyTableProcedure if needed
1185        if (metaDesc.getRegionReplication() != replicasNumInConf) {
1186          LOG.info(
1187            "The {} config is {} while the replica count in TableDescriptor is {}"
1188              + " for hbase:meta, altering...",
1189            HConstants.META_REPLICAS_NUM, replicasNumInConf, metaDesc.getRegionReplication());
1190          procedureExecutor.submitProcedure(new ModifyTableProcedure(
1191            procedureExecutor.getEnvironment(), TableDescriptorBuilder.newBuilder(metaDesc)
1192              .setRegionReplication(replicasNumInConf).build(),
1193            null, metaDesc, false, true));
1194        }
1195      }
1196    }
1197    // Initialize after meta is up as below scans meta
1198    FavoredNodesManager fnm = getFavoredNodesManager();
1199    if (fnm != null) {
1200      fnm.initializeFromMeta();
1201    }
1202
1203    // set cluster status again after user regions are assigned
1204    this.balancer.updateClusterMetrics(getClusterMetricsWithoutCoprocessor());
1205
1206    // Start balancer and meta catalog janitor after meta and regions have been assigned.
1207    startupTaskGroup.addTask("Starting balancer and catalog janitor");
1208    this.clusterStatusChore = new ClusterStatusChore(this, balancer);
1209    getChoreService().scheduleChore(clusterStatusChore);
1210    this.balancerChore = new BalancerChore(this);
1211    if (!disableBalancerChoreForTest) {
1212      getChoreService().scheduleChore(balancerChore);
1213    }
1214    if (regionNormalizerManager != null) {
1215      getChoreService().scheduleChore(regionNormalizerManager.getRegionNormalizerChore());
1216    }
1217    this.catalogJanitorChore = new CatalogJanitor(this);
1218    getChoreService().scheduleChore(catalogJanitorChore);
1219    this.hbckChore = new HbckChore(this);
1220    getChoreService().scheduleChore(hbckChore);
1221    this.serverManager.startChore();
1222
1223    // Only for rolling upgrade, where we need to migrate the data in namespace table to meta table.
1224    if (!waitForNamespaceOnline()) {
1225      return;
1226    }
1227    startupTaskGroup.addTask("Starting cluster schema service");
1228    try {
1229      initClusterSchemaService();
1230    } catch (IllegalStateException e) {
1231      if (
1232        e.getCause() != null && e.getCause() instanceof NoSuchColumnFamilyException
1233          && tableFamilyDesc == null && replBarrierFamilyDesc == null
1234      ) {
1235        LOG.info("ClusterSchema service could not be initialized. This is "
1236          + "expected during HBase 1 to 2 upgrade", e);
1237      } else {
1238        throw e;
1239      }
1240    }
1241
1242    if (this.cpHost != null) {
1243      try {
1244        this.cpHost.preMasterInitialization();
1245      } catch (IOException e) {
1246        LOG.error("Coprocessor preMasterInitialization() hook failed", e);
1247      }
1248    }
1249
1250    LOG.info(String.format("Master has completed initialization %.3fsec",
1251      (EnvironmentEdgeManager.currentTime() - masterActiveTime) / 1000.0f));
1252    this.masterFinishedInitializationTime = EnvironmentEdgeManager.currentTime();
1253    configurationManager.registerObserver(this.balancer);
1254    configurationManager.registerObserver(this.logCleanerPool);
1255    configurationManager.registerObserver(this.logCleaner);
1256    configurationManager.registerObserver(this.regionsRecoveryConfigManager);
1257    configurationManager.registerObserver(this.exclusiveHFileCleanerPool);
1258    if (this.sharedHFileCleanerPool != null) {
1259      configurationManager.registerObserver(this.sharedHFileCleanerPool);
1260    }
1261    if (this.hfileCleaners != null) {
1262      for (HFileCleaner cleaner : hfileCleaners) {
1263        configurationManager.registerObserver(cleaner);
1264      }
1265    }
1266    // Set master as 'initialized'.
1267    setInitialized(true);
1268    startupTaskGroup.markComplete("Initialization successful");
1269    MonitoredTask status =
1270      TaskMonitor.get().createStatus("Progress after master initialized", false, true);
1271
1272    if (tableFamilyDesc == null && replBarrierFamilyDesc == null) {
1273      // create missing CFs in meta table after master is set to 'initialized'.
1274      createMissingCFsInMetaDuringUpgrade(metaDescriptor);
1275
1276      // Throwing this Exception to abort active master is painful but this
1277      // seems the only way to add missing CFs in meta while upgrading from
1278      // HBase 1 to 2 (where HBase 2 has HBASE-23055 & HBASE-23782 checked-in).
1279      // So, why do we abort active master after adding missing CFs in meta?
1280      // When we reach here, we would have already bypassed NoSuchColumnFamilyException
1281      // in initClusterSchemaService(), meaning ClusterSchemaService is not
1282      // correctly initialized but we bypassed it. Similarly, we bypassed
1283      // tableStateManager.start() as well. Hence, we should better abort
1284      // current active master because our main task - adding missing CFs
1285      // in meta table is done (possible only after master state is set as
1286      // initialized) at the expense of bypassing few important tasks as part
1287      // of active master init routine. So now we abort active master so that
1288      // next active master init will not face any issues and all mandatory
1289      // services will be started during master init phase.
1290      throw new PleaseRestartMasterException("Aborting active master after missing"
1291        + " CFs are successfully added in meta. Subsequent active master "
1292        + "initialization should be uninterrupted");
1293    }
1294
1295    if (maintenanceMode) {
1296      LOG.info("Detected repair mode, skipping final initialization steps.");
1297      return;
1298    }
1299
1300    assignmentManager.checkIfShouldMoveSystemRegionAsync();
1301    status.setStatus("Starting quota manager");
1302    initQuotaManager();
1303    if (QuotaUtil.isQuotaEnabled(conf)) {
1304      // Create the quota snapshot notifier
1305      spaceQuotaSnapshotNotifier = createQuotaSnapshotNotifier();
1306      spaceQuotaSnapshotNotifier.initialize(getConnection());
1307      this.quotaObserverChore = new QuotaObserverChore(this, getMasterMetrics());
1308      // Start the chore to read the region FS space reports and act on them
1309      getChoreService().scheduleChore(quotaObserverChore);
1310
1311      this.snapshotQuotaChore = new SnapshotQuotaObserverChore(this, getMasterMetrics());
1312      // Start the chore to read snapshots and add their usage to table/NS quotas
1313      getChoreService().scheduleChore(snapshotQuotaChore);
1314    }
1315    final SlowLogMasterService slowLogMasterService = new SlowLogMasterService(conf, this);
1316    slowLogMasterService.init();
1317
1318    WALEventTrackerTableCreator.createIfNeededAndNotExists(conf, this);
1319    // Create REPLICATION.SINK_TRACKER table if needed.
1320    ReplicationSinkTrackerTableCreator.createIfNeededAndNotExists(conf, this);
1321
1322    // clear the dead servers with same host name and port of online server because we are not
1323    // removing dead server with same hostname and port of rs which is trying to check in before
1324    // master initialization. See HBASE-5916.
1325    this.serverManager.clearDeadServersWithSameHostNameAndPortOfOnlineServer();
1326
1327    // Check and set the znode ACLs if needed in case we are overtaking a non-secure configuration
1328    status.setStatus("Checking ZNode ACLs");
1329    zooKeeper.checkAndSetZNodeAcls();
1330
1331    status.setStatus("Initializing MOB Cleaner");
1332    initMobCleaner();
1333
1334    // delete the stale data for replication sync up tool if necessary
1335    status.setStatus("Cleanup ReplicationSyncUp status if necessary");
1336    Path replicationSyncUpInfoFile =
1337      new Path(new Path(dataRootDir, ReplicationSyncUp.INFO_DIR), ReplicationSyncUp.INFO_FILE);
1338    if (dataFs.exists(replicationSyncUpInfoFile)) {
1339      // info file is available, load the timestamp and use it to clean up stale data in replication
1340      // queue storage.
1341      byte[] data;
1342      try (FSDataInputStream in = dataFs.open(replicationSyncUpInfoFile)) {
1343        data = ByteStreams.toByteArray(in);
1344      }
1345      ReplicationSyncUpToolInfo info = null;
1346      try {
1347        info = JsonMapper.fromJson(Bytes.toString(data), ReplicationSyncUpToolInfo.class);
1348      } catch (JsonParseException e) {
1349        // usually this should be a partial file, which means the ReplicationSyncUp tool did not
1350        // finish properly, so not a problem. Here we do not clean up the status as we do not know
1351        // the reason why the tool did not finish properly, so let users clean the status up
1352        // manually
1353        LOG.warn("failed to parse replication sync up info file, ignore and continue...", e);
1354      }
1355      if (info != null) {
1356        LOG.info("Remove last sequence ids and hfile references which are written before {}({})",
1357          info.getStartTimeMs(), DateTimeFormatter.ISO_DATE_TIME.withZone(ZoneId.systemDefault())
1358            .format(Instant.ofEpochMilli(info.getStartTimeMs())));
1359        replicationPeerManager.getQueueStorage()
1360          .removeLastSequenceIdsAndHFileRefsBefore(info.getStartTimeMs());
1361        // delete the file after removing the stale data, so next time we do not need to do this
1362        // again.
1363        dataFs.delete(replicationSyncUpInfoFile, false);
1364      }
1365    }
1366    status.setStatus("Calling postStartMaster coprocessors");
1367    if (this.cpHost != null) {
1368      // don't let cp initialization errors kill the master
1369      try {
1370        this.cpHost.postStartMaster();
1371      } catch (IOException ioe) {
1372        LOG.error("Coprocessor postStartMaster() hook failed", ioe);
1373      }
1374    }
1375
1376    zombieDetector.interrupt();
1377
1378    /*
1379     * After master has started up, lets do balancer post startup initialization. Since this runs in
1380     * activeMasterManager thread, it should be fine.
1381     */
1382    long start = EnvironmentEdgeManager.currentTime();
1383    this.balancer.postMasterStartupInitialize();
1384    if (LOG.isDebugEnabled()) {
1385      LOG.debug("Balancer post startup initialization complete, took "
1386        + ((EnvironmentEdgeManager.currentTime() - start) / 1000) + " seconds");
1387    }
1388
1389    this.rollingUpgradeChore = new RollingUpgradeChore(this);
1390    getChoreService().scheduleChore(rollingUpgradeChore);
1391
1392    this.oldWALsDirSizeChore = new OldWALsDirSizeChore(this);
1393    getChoreService().scheduleChore(this.oldWALsDirSizeChore);
1394
1395    status.markComplete("Progress after master initialized complete");
1396  }
1397
1398  /**
1399   * Used for testing only to set Mock objects.
1400   * @param hbckChore hbckChore
1401   */
1402  public void setHbckChoreForTesting(HbckChore hbckChore) {
1403    this.hbckChore = hbckChore;
1404  }
1405
1406  /**
1407   * Used for testing only to set Mock objects.
1408   * @param catalogJanitorChore catalogJanitorChore
1409   */
1410  public void setCatalogJanitorChoreForTesting(CatalogJanitor catalogJanitorChore) {
1411    this.catalogJanitorChore = catalogJanitorChore;
1412  }
1413
1414  private void createMissingCFsInMetaDuringUpgrade(TableDescriptor metaDescriptor)
1415    throws IOException {
1416    TableDescriptor newMetaDesc = TableDescriptorBuilder.newBuilder(metaDescriptor)
1417      .setColumnFamily(FSTableDescriptors.getTableFamilyDescForMeta(conf))
1418      .setColumnFamily(FSTableDescriptors.getReplBarrierFamilyDescForMeta()).build();
1419    long pid = this.modifyTable(TableName.META_TABLE_NAME, () -> newMetaDesc, 0, 0, false);
1420    int tries = 30;
1421    while (
1422      !(getMasterProcedureExecutor().isFinished(pid)) && getMasterProcedureExecutor().isRunning()
1423        && tries > 0
1424    ) {
1425      try {
1426        Thread.sleep(1000);
1427      } catch (InterruptedException e) {
1428        throw new IOException("Wait interrupted", e);
1429      }
1430      tries--;
1431    }
1432    if (tries <= 0) {
1433      throw new HBaseIOException(
1434        "Failed to add table and rep_barrier CFs to meta in a given time.");
1435    } else {
1436      Procedure<?> result = getMasterProcedureExecutor().getResult(pid);
1437      if (result != null && result.isFailed()) {
1438        throw new IOException("Failed to add table and rep_barrier CFs to meta. "
1439          + MasterProcedureUtil.unwrapRemoteIOException(result));
1440      }
1441    }
1442  }
1443
1444  /**
1445   * Check hbase:meta is up and ready for reading. For use during Master startup only.
1446   * @return True if meta is UP and online and startup can progress. Otherwise, meta is not online
1447   *         and we will hold here until operator intervention.
1448   */
1449  @InterfaceAudience.Private
1450  public boolean waitForMetaOnline() {
1451    return isRegionOnline(RegionInfoBuilder.FIRST_META_REGIONINFO);
1452  }
1453
1454  /**
1455   * @return True if region is online and scannable else false if an error or shutdown (Otherwise we
1456   *         just block in here holding up all forward-progess).
1457   */
1458  private boolean isRegionOnline(RegionInfo ri) {
1459    RetryCounter rc = null;
1460    while (!isStopped()) {
1461      RegionState rs = this.assignmentManager.getRegionStates().getRegionState(ri);
1462      if (rs != null && rs.isOpened()) {
1463        if (this.getServerManager().isServerOnline(rs.getServerName())) {
1464          return true;
1465        }
1466      }
1467      // Region is not OPEN.
1468      Optional<Procedure<MasterProcedureEnv>> optProc = this.procedureExecutor.getProcedures()
1469        .stream().filter(p -> p instanceof ServerCrashProcedure).findAny();
1470      // TODO: Add a page to refguide on how to do repair. Have this log message point to it.
1471      // Page will talk about loss of edits, how to schedule at least the meta WAL recovery, and
1472      // then how to assign including how to break region lock if one held.
1473      LOG.warn(
1474        "{} is NOT online; state={}; ServerCrashProcedures={}. Master startup cannot "
1475          + "progress, in holding-pattern until region onlined.",
1476        ri.getRegionNameAsString(), rs, optProc.isPresent());
1477      // Check once-a-minute.
1478      if (rc == null) {
1479        rc = new RetryCounterFactory(Integer.MAX_VALUE, 1000, 60_000).create();
1480      }
1481      Threads.sleep(rc.getBackoffTimeAndIncrementAttempts());
1482    }
1483    return false;
1484  }
1485
1486  /**
1487   * Check hbase:namespace table is assigned. If not, startup will hang looking for the ns table
1488   * <p/>
1489   * This is for rolling upgrading, later we will migrate the data in ns table to the ns family of
1490   * meta table. And if this is a new cluster, this method will return immediately as there will be
1491   * no namespace table/region.
1492   * @return True if namespace table is up/online.
1493   */
1494  private boolean waitForNamespaceOnline() throws IOException {
1495    TableState nsTableState =
1496      MetaTableAccessor.getTableState(getConnection(), TableName.NAMESPACE_TABLE_NAME);
1497    if (nsTableState == null || nsTableState.isDisabled()) {
1498      // this means we have already migrated the data and disabled or deleted the namespace table,
1499      // or this is a new deploy which does not have a namespace table from the beginning.
1500      return true;
1501    }
1502    List<RegionInfo> ris =
1503      this.assignmentManager.getRegionStates().getRegionsOfTable(TableName.NAMESPACE_TABLE_NAME);
1504    if (ris.isEmpty()) {
1505      // maybe this will not happen any more, but anyway, no harm to add a check here...
1506      return true;
1507    }
1508    // Else there are namespace regions up in meta. Ensure they are assigned before we go on.
1509    for (RegionInfo ri : ris) {
1510      if (!isRegionOnline(ri)) {
1511        return false;
1512      }
1513    }
1514    return true;
1515  }
1516
1517  /**
1518   * Adds the {@code MasterQuotasObserver} to the list of configured Master observers to
1519   * automatically remove quotas for a table when that table is deleted.
1520   */
1521  @InterfaceAudience.Private
1522  public void updateConfigurationForQuotasObserver(Configuration conf) {
1523    // We're configured to not delete quotas on table deletion, so we don't need to add the obs.
1524    if (
1525      !conf.getBoolean(MasterQuotasObserver.REMOVE_QUOTA_ON_TABLE_DELETE,
1526        MasterQuotasObserver.REMOVE_QUOTA_ON_TABLE_DELETE_DEFAULT)
1527    ) {
1528      return;
1529    }
1530    String[] masterCoprocs = conf.getStrings(CoprocessorHost.MASTER_COPROCESSOR_CONF_KEY);
1531    final int length = null == masterCoprocs ? 0 : masterCoprocs.length;
1532    String[] updatedCoprocs = new String[length + 1];
1533    if (length > 0) {
1534      System.arraycopy(masterCoprocs, 0, updatedCoprocs, 0, masterCoprocs.length);
1535    }
1536    updatedCoprocs[length] = MasterQuotasObserver.class.getName();
1537    conf.setStrings(CoprocessorHost.MASTER_COPROCESSOR_CONF_KEY, updatedCoprocs);
1538  }
1539
1540  private void initMobCleaner() {
1541    this.mobFileCleanerChore = new MobFileCleanerChore(this);
1542    getChoreService().scheduleChore(mobFileCleanerChore);
1543    this.mobFileCompactionChore = new MobFileCompactionChore(this);
1544    getChoreService().scheduleChore(mobFileCompactionChore);
1545  }
1546
1547  /**
1548   * <p>
1549   * Create a {@link ServerManager} instance.
1550   * </p>
1551   * <p>
1552   * Will be overridden in tests.
1553   * </p>
1554   */
1555  @InterfaceAudience.Private
1556  protected ServerManager createServerManager(MasterServices master, RegionServerList storage)
1557    throws IOException {
1558    // We put this out here in a method so can do a Mockito.spy and stub it out
1559    // w/ a mocked up ServerManager.
1560    setupClusterConnection();
1561    return new ServerManager(master, storage);
1562  }
1563
1564  private void waitForRegionServers(final MonitoredTask status)
1565    throws IOException, InterruptedException {
1566    this.serverManager.waitForRegionServers(status);
1567  }
1568
1569  // Will be overridden in tests
1570  @InterfaceAudience.Private
1571  protected void initClusterSchemaService() throws IOException, InterruptedException {
1572    this.clusterSchemaService = new ClusterSchemaServiceImpl(this);
1573    this.clusterSchemaService.startAsync();
1574    try {
1575      this.clusterSchemaService
1576        .awaitRunning(getConfiguration().getInt(HBASE_MASTER_WAIT_ON_SERVICE_IN_SECONDS,
1577          DEFAULT_HBASE_MASTER_WAIT_ON_SERVICE_IN_SECONDS), TimeUnit.SECONDS);
1578    } catch (TimeoutException toe) {
1579      throw new IOException("Timedout starting ClusterSchemaService", toe);
1580    }
1581  }
1582
1583  private void initQuotaManager() throws IOException {
1584    MasterQuotaManager quotaManager = new MasterQuotaManager(this);
1585    quotaManager.start();
1586    this.quotaManager = quotaManager;
1587  }
1588
1589  private SpaceQuotaSnapshotNotifier createQuotaSnapshotNotifier() {
1590    SpaceQuotaSnapshotNotifier notifier =
1591      SpaceQuotaSnapshotNotifierFactory.getInstance().create(getConfiguration());
1592    return notifier;
1593  }
1594
1595  public boolean isCatalogJanitorEnabled() {
1596    return catalogJanitorChore != null ? catalogJanitorChore.getEnabled() : false;
1597  }
1598
1599  boolean isCleanerChoreEnabled() {
1600    boolean hfileCleanerFlag = true, logCleanerFlag = true;
1601
1602    if (getHFileCleaner() != null) {
1603      hfileCleanerFlag = getHFileCleaner().getEnabled();
1604    }
1605
1606    if (logCleaner != null) {
1607      logCleanerFlag = logCleaner.getEnabled();
1608    }
1609
1610    return (hfileCleanerFlag && logCleanerFlag);
1611  }
1612
1613  @Override
1614  public ServerManager getServerManager() {
1615    return this.serverManager;
1616  }
1617
1618  @Override
1619  public MasterFileSystem getMasterFileSystem() {
1620    return this.fileSystemManager;
1621  }
1622
1623  @Override
1624  public MasterWalManager getMasterWalManager() {
1625    return this.walManager;
1626  }
1627
1628  @Override
1629  public SplitWALManager getSplitWALManager() {
1630    return splitWALManager;
1631  }
1632
1633  @Override
1634  public TableStateManager getTableStateManager() {
1635    return tableStateManager;
1636  }
1637
1638  /*
1639   * Start up all services. If any of these threads gets an unhandled exception then they just die
1640   * with a logged message. This should be fine because in general, we do not expect the master to
1641   * get such unhandled exceptions as OOMEs; it should be lightly loaded. See what HRegionServer
1642   * does if need to install an unexpected exception handler.
1643   */
1644  private void startServiceThreads() throws IOException {
1645    // Start the executor service pools
1646    final int masterOpenRegionPoolSize = conf.getInt(HConstants.MASTER_OPEN_REGION_THREADS,
1647      HConstants.MASTER_OPEN_REGION_THREADS_DEFAULT);
1648    executorService.startExecutorService(executorService.new ExecutorConfig()
1649      .setExecutorType(ExecutorType.MASTER_OPEN_REGION).setCorePoolSize(masterOpenRegionPoolSize));
1650    final int masterCloseRegionPoolSize = conf.getInt(HConstants.MASTER_CLOSE_REGION_THREADS,
1651      HConstants.MASTER_CLOSE_REGION_THREADS_DEFAULT);
1652    executorService.startExecutorService(
1653      executorService.new ExecutorConfig().setExecutorType(ExecutorType.MASTER_CLOSE_REGION)
1654        .setCorePoolSize(masterCloseRegionPoolSize));
1655    final int masterServerOpThreads = conf.getInt(HConstants.MASTER_SERVER_OPERATIONS_THREADS,
1656      HConstants.MASTER_SERVER_OPERATIONS_THREADS_DEFAULT);
1657    executorService.startExecutorService(
1658      executorService.new ExecutorConfig().setExecutorType(ExecutorType.MASTER_SERVER_OPERATIONS)
1659        .setCorePoolSize(masterServerOpThreads));
1660    final int masterServerMetaOpsThreads =
1661      conf.getInt(HConstants.MASTER_META_SERVER_OPERATIONS_THREADS,
1662        HConstants.MASTER_META_SERVER_OPERATIONS_THREADS_DEFAULT);
1663    executorService.startExecutorService(executorService.new ExecutorConfig()
1664      .setExecutorType(ExecutorType.MASTER_META_SERVER_OPERATIONS)
1665      .setCorePoolSize(masterServerMetaOpsThreads));
1666    final int masterLogReplayThreads = conf.getInt(HConstants.MASTER_LOG_REPLAY_OPS_THREADS,
1667      HConstants.MASTER_LOG_REPLAY_OPS_THREADS_DEFAULT);
1668    executorService.startExecutorService(executorService.new ExecutorConfig()
1669      .setExecutorType(ExecutorType.M_LOG_REPLAY_OPS).setCorePoolSize(masterLogReplayThreads));
1670    final int masterSnapshotThreads = conf.getInt(SnapshotManager.SNAPSHOT_POOL_THREADS_KEY,
1671      SnapshotManager.SNAPSHOT_POOL_THREADS_DEFAULT);
1672    executorService.startExecutorService(
1673      executorService.new ExecutorConfig().setExecutorType(ExecutorType.MASTER_SNAPSHOT_OPERATIONS)
1674        .setCorePoolSize(masterSnapshotThreads).setAllowCoreThreadTimeout(true));
1675    final int masterMergeDispatchThreads = conf.getInt(HConstants.MASTER_MERGE_DISPATCH_THREADS,
1676      HConstants.MASTER_MERGE_DISPATCH_THREADS_DEFAULT);
1677    executorService.startExecutorService(
1678      executorService.new ExecutorConfig().setExecutorType(ExecutorType.MASTER_MERGE_OPERATIONS)
1679        .setCorePoolSize(masterMergeDispatchThreads).setAllowCoreThreadTimeout(true));
1680
1681    // We depend on there being only one instance of this executor running
1682    // at a time. To do concurrency, would need fencing of enable/disable of
1683    // tables.
1684    // Any time changing this maxThreads to > 1, pls see the comment at
1685    // AccessController#postCompletedCreateTableAction
1686    executorService.startExecutorService(executorService.new ExecutorConfig()
1687      .setExecutorType(ExecutorType.MASTER_TABLE_OPERATIONS).setCorePoolSize(1));
1688    startProcedureExecutor();
1689
1690    // Create log cleaner thread pool
1691    logCleanerPool = DirScanPool.getLogCleanerScanPool(conf);
1692    Map<String, Object> params = new HashMap<>();
1693    params.put(MASTER, this);
1694    // Start log cleaner thread
1695    int cleanerInterval =
1696      conf.getInt(HBASE_MASTER_CLEANER_INTERVAL, DEFAULT_HBASE_MASTER_CLEANER_INTERVAL);
1697    this.logCleaner =
1698      new LogCleaner(cleanerInterval, this, conf, getMasterWalManager().getFileSystem(),
1699        getMasterWalManager().getOldLogDir(), logCleanerPool, params);
1700    getChoreService().scheduleChore(logCleaner);
1701
1702    Path archiveDir = HFileArchiveUtil.getArchivePath(conf);
1703
1704    // Create custom archive hfile cleaners
1705    String[] paths = conf.getStrings(HFileCleaner.HFILE_CLEANER_CUSTOM_PATHS);
1706    // todo: handle the overlap issues for the custom paths
1707
1708    if (paths != null && paths.length > 0) {
1709      if (conf.getStrings(HFileCleaner.HFILE_CLEANER_CUSTOM_PATHS_PLUGINS) == null) {
1710        Set<String> cleanerClasses = new HashSet<>();
1711        String[] cleaners = conf.getStrings(HFileCleaner.MASTER_HFILE_CLEANER_PLUGINS);
1712        if (cleaners != null) {
1713          Collections.addAll(cleanerClasses, cleaners);
1714        }
1715        conf.setStrings(HFileCleaner.HFILE_CLEANER_CUSTOM_PATHS_PLUGINS,
1716          cleanerClasses.toArray(new String[cleanerClasses.size()]));
1717        LOG.info("Archive custom cleaner paths: {}, plugins: {}", Arrays.asList(paths),
1718          cleanerClasses);
1719      }
1720      // share the hfile cleaner pool in custom paths
1721      sharedHFileCleanerPool = DirScanPool.getHFileCleanerScanPool(conf.get(CUSTOM_POOL_SIZE, "6"));
1722      for (int i = 0; i < paths.length; i++) {
1723        Path path = new Path(paths[i].trim());
1724        HFileCleaner cleaner =
1725          new HFileCleaner("ArchiveCustomHFileCleaner-" + path.getName(), cleanerInterval, this,
1726            conf, getMasterFileSystem().getFileSystem(), new Path(archiveDir, path),
1727            HFileCleaner.HFILE_CLEANER_CUSTOM_PATHS_PLUGINS, sharedHFileCleanerPool, params, null);
1728        hfileCleaners.add(cleaner);
1729        hfileCleanerPaths.add(path);
1730      }
1731    }
1732
1733    // Create the whole archive dir cleaner thread pool
1734    exclusiveHFileCleanerPool = DirScanPool.getHFileCleanerScanPool(conf);
1735    hfileCleaners.add(0,
1736      new HFileCleaner(cleanerInterval, this, conf, getMasterFileSystem().getFileSystem(),
1737        archiveDir, exclusiveHFileCleanerPool, params, hfileCleanerPaths));
1738    hfileCleanerPaths.add(0, archiveDir);
1739    // Schedule all the hfile cleaners
1740    for (HFileCleaner hFileCleaner : hfileCleaners) {
1741      getChoreService().scheduleChore(hFileCleaner);
1742    }
1743
1744    // Regions Reopen based on very high storeFileRefCount is considered enabled
1745    // only if hbase.regions.recovery.store.file.ref.count has value > 0
1746    final int maxStoreFileRefCount = conf.getInt(HConstants.STORE_FILE_REF_COUNT_THRESHOLD,
1747      HConstants.DEFAULT_STORE_FILE_REF_COUNT_THRESHOLD);
1748    if (maxStoreFileRefCount > 0) {
1749      this.regionsRecoveryChore = new RegionsRecoveryChore(this, conf, this);
1750      getChoreService().scheduleChore(this.regionsRecoveryChore);
1751    } else {
1752      LOG.info(
1753        "Reopening regions with very high storeFileRefCount is disabled. "
1754          + "Provide threshold value > 0 for {} to enable it.",
1755        HConstants.STORE_FILE_REF_COUNT_THRESHOLD);
1756    }
1757
1758    this.regionsRecoveryConfigManager = new RegionsRecoveryConfigManager(this);
1759
1760    replicationBarrierCleaner =
1761      new ReplicationBarrierCleaner(conf, this, getConnection(), replicationPeerManager);
1762    getChoreService().scheduleChore(replicationBarrierCleaner);
1763
1764    final boolean isSnapshotChoreEnabled = this.snapshotCleanupStateStore.get();
1765    this.snapshotCleanerChore = new SnapshotCleanerChore(this, conf, getSnapshotManager());
1766    if (isSnapshotChoreEnabled) {
1767      getChoreService().scheduleChore(this.snapshotCleanerChore);
1768    } else {
1769      if (LOG.isTraceEnabled()) {
1770        LOG.trace("Snapshot Cleaner Chore is disabled. Not starting up the chore..");
1771      }
1772    }
1773    serviceStarted = true;
1774    if (LOG.isTraceEnabled()) {
1775      LOG.trace("Started service threads");
1776    }
1777  }
1778
1779  protected void stopServiceThreads() {
1780    if (masterJettyServer != null) {
1781      LOG.info("Stopping master jetty server");
1782      try {
1783        masterJettyServer.stop();
1784      } catch (Exception e) {
1785        LOG.error("Failed to stop master jetty server", e);
1786      }
1787    }
1788    stopChoreService();
1789    stopExecutorService();
1790    if (exclusiveHFileCleanerPool != null) {
1791      exclusiveHFileCleanerPool.shutdownNow();
1792      exclusiveHFileCleanerPool = null;
1793    }
1794    if (logCleanerPool != null) {
1795      logCleanerPool.shutdownNow();
1796      logCleanerPool = null;
1797    }
1798    if (sharedHFileCleanerPool != null) {
1799      sharedHFileCleanerPool.shutdownNow();
1800      sharedHFileCleanerPool = null;
1801    }
1802    if (maintenanceRegionServer != null) {
1803      maintenanceRegionServer.getRegionServer().stop(HBASE_MASTER_CLEANER_INTERVAL);
1804    }
1805
1806    LOG.debug("Stopping service threads");
1807    // stop procedure executor prior to other services such as server manager and assignment
1808    // manager, as these services are important for some running procedures. See HBASE-24117 for
1809    // example.
1810    stopProcedureExecutor();
1811
1812    if (regionNormalizerManager != null) {
1813      regionNormalizerManager.stop();
1814    }
1815    if (this.quotaManager != null) {
1816      this.quotaManager.stop();
1817    }
1818
1819    if (this.activeMasterManager != null) {
1820      this.activeMasterManager.stop();
1821    }
1822    if (this.serverManager != null) {
1823      this.serverManager.stop();
1824    }
1825    if (this.assignmentManager != null) {
1826      this.assignmentManager.stop();
1827    }
1828
1829    if (masterRegion != null) {
1830      masterRegion.close(isAborted());
1831    }
1832    if (this.walManager != null) {
1833      this.walManager.stop();
1834    }
1835    if (this.fileSystemManager != null) {
1836      this.fileSystemManager.stop();
1837    }
1838    if (this.mpmHost != null) {
1839      this.mpmHost.stop("server shutting down.");
1840    }
1841    if (this.regionServerTracker != null) {
1842      this.regionServerTracker.stop();
1843    }
1844  }
1845
1846  private void createProcedureExecutor() throws IOException {
1847    final String procedureDispatcherClassName =
1848      conf.get(HBASE_MASTER_RSPROC_DISPATCHER_CLASS, DEFAULT_HBASE_MASTER_RSPROC_DISPATCHER_CLASS);
1849    final RSProcedureDispatcher procedureDispatcher = ReflectionUtils.instantiateWithCustomCtor(
1850      procedureDispatcherClassName, new Class[] { MasterServices.class }, new Object[] { this });
1851    final MasterProcedureEnv procEnv = new MasterProcedureEnv(this, procedureDispatcher);
1852    procedureStore = new RegionProcedureStore(this, masterRegion,
1853      new MasterProcedureEnv.FsUtilsLeaseRecovery(this));
1854    procedureStore.registerListener(new ProcedureStoreListener() {
1855
1856      @Override
1857      public void abortProcess() {
1858        abort("The Procedure Store lost the lease", null);
1859      }
1860    });
1861    MasterProcedureScheduler procedureScheduler = procEnv.getProcedureScheduler();
1862    procedureExecutor = new ProcedureExecutor<>(conf, procEnv, procedureStore, procedureScheduler);
1863    configurationManager.registerObserver(procEnv);
1864
1865    int cpus = Runtime.getRuntime().availableProcessors();
1866    final int numThreads = conf.getInt(MasterProcedureConstants.MASTER_PROCEDURE_THREADS, Math.max(
1867      (cpus > 0 ? cpus / 4 : 0), MasterProcedureConstants.DEFAULT_MIN_MASTER_PROCEDURE_THREADS));
1868    final boolean abortOnCorruption =
1869      conf.getBoolean(MasterProcedureConstants.EXECUTOR_ABORT_ON_CORRUPTION,
1870        MasterProcedureConstants.DEFAULT_EXECUTOR_ABORT_ON_CORRUPTION);
1871    procedureStore.start(numThreads);
1872    // Just initialize it but do not start the workers, we will start the workers later by calling
1873    // startProcedureExecutor. See the javadoc for finishActiveMasterInitialization for more
1874    // details.
1875    procedureExecutor.init(numThreads, abortOnCorruption);
1876    if (!procEnv.getRemoteDispatcher().start()) {
1877      throw new HBaseIOException("Failed start of remote dispatcher");
1878    }
1879  }
1880
1881  // will be override in UT
1882  protected void startProcedureExecutor() throws IOException {
1883    procedureExecutor.startWorkers();
1884  }
1885
1886  /**
1887   * Turn on/off Snapshot Cleanup Chore
1888   * @param on indicates whether Snapshot Cleanup Chore is to be run
1889   */
1890  void switchSnapshotCleanup(final boolean on, final boolean synchronous) throws IOException {
1891    if (synchronous) {
1892      synchronized (this.snapshotCleanerChore) {
1893        switchSnapshotCleanup(on);
1894      }
1895    } else {
1896      switchSnapshotCleanup(on);
1897    }
1898  }
1899
1900  private void switchSnapshotCleanup(final boolean on) throws IOException {
1901    snapshotCleanupStateStore.set(on);
1902    if (on) {
1903      getChoreService().scheduleChore(this.snapshotCleanerChore);
1904    } else {
1905      this.snapshotCleanerChore.cancel();
1906    }
1907  }
1908
1909  private void stopProcedureExecutor() {
1910    if (procedureExecutor != null) {
1911      configurationManager.deregisterObserver(procedureExecutor.getEnvironment());
1912      procedureExecutor.getEnvironment().getRemoteDispatcher().stop();
1913      procedureExecutor.stop();
1914      procedureExecutor.join();
1915      procedureExecutor = null;
1916    }
1917
1918    if (procedureStore != null) {
1919      procedureStore.stop(isAborted());
1920      procedureStore = null;
1921    }
1922  }
1923
1924  protected void stopChores() {
1925    shutdownChore(mobFileCleanerChore);
1926    shutdownChore(mobFileCompactionChore);
1927    shutdownChore(balancerChore);
1928    if (regionNormalizerManager != null) {
1929      shutdownChore(regionNormalizerManager.getRegionNormalizerChore());
1930    }
1931    shutdownChore(clusterStatusChore);
1932    shutdownChore(catalogJanitorChore);
1933    shutdownChore(clusterStatusPublisherChore);
1934    shutdownChore(snapshotQuotaChore);
1935    shutdownChore(logCleaner);
1936    if (hfileCleaners != null) {
1937      for (ScheduledChore chore : hfileCleaners) {
1938        chore.shutdown();
1939      }
1940      hfileCleaners = null;
1941    }
1942    shutdownChore(replicationBarrierCleaner);
1943    shutdownChore(snapshotCleanerChore);
1944    shutdownChore(hbckChore);
1945    shutdownChore(regionsRecoveryChore);
1946    shutdownChore(rollingUpgradeChore);
1947    shutdownChore(oldWALsDirSizeChore);
1948  }
1949
1950  /** Returns Get remote side's InetAddress */
1951  InetAddress getRemoteInetAddress(final int port, final long serverStartCode)
1952    throws UnknownHostException {
1953    // Do it out here in its own little method so can fake an address when
1954    // mocking up in tests.
1955    InetAddress ia = RpcServer.getRemoteIp();
1956
1957    // The call could be from the local regionserver,
1958    // in which case, there is no remote address.
1959    if (ia == null && serverStartCode == startcode) {
1960      InetSocketAddress isa = rpcServices.getSocketAddress();
1961      if (isa != null && isa.getPort() == port) {
1962        ia = isa.getAddress();
1963      }
1964    }
1965    return ia;
1966  }
1967
1968  /** Returns Maximum time we should run balancer for */
1969  private int getMaxBalancingTime() {
1970    // if max balancing time isn't set, defaulting it to period time
1971    int maxBalancingTime =
1972      getConfiguration().getInt(HConstants.HBASE_BALANCER_MAX_BALANCING, getConfiguration()
1973        .getInt(HConstants.HBASE_BALANCER_PERIOD, HConstants.DEFAULT_HBASE_BALANCER_PERIOD));
1974    return maxBalancingTime;
1975  }
1976
1977  /** Returns Maximum number of regions in transition */
1978  private int getMaxRegionsInTransition() {
1979    int numRegions = this.assignmentManager.getRegionStates().getRegionAssignments().size();
1980    return Math.max((int) Math.floor(numRegions * this.maxRitPercent), 1);
1981  }
1982
1983  /**
1984   * It first sleep to the next balance plan start time. Meanwhile, throttling by the max number
1985   * regions in transition to protect availability.
1986   * @param nextBalanceStartTime   The next balance plan start time
1987   * @param maxRegionsInTransition max number of regions in transition
1988   * @param cutoffTime             when to exit balancer
1989   */
1990  private void balanceThrottling(long nextBalanceStartTime, int maxRegionsInTransition,
1991    long cutoffTime) {
1992    boolean interrupted = false;
1993
1994    // Sleep to next balance plan start time
1995    // But if there are zero regions in transition, it can skip sleep to speed up.
1996    while (
1997      !interrupted && EnvironmentEdgeManager.currentTime() < nextBalanceStartTime
1998        && this.assignmentManager.getRegionStates().hasRegionsInTransition()
1999    ) {
2000      try {
2001        Thread.sleep(100);
2002      } catch (InterruptedException ie) {
2003        interrupted = true;
2004      }
2005    }
2006
2007    // Throttling by max number regions in transition
2008    while (
2009      !interrupted && maxRegionsInTransition > 0
2010        && this.assignmentManager.getRegionStates().getRegionsInTransitionCount()
2011            >= maxRegionsInTransition
2012        && EnvironmentEdgeManager.currentTime() <= cutoffTime
2013    ) {
2014      try {
2015        // sleep if the number of regions in transition exceeds the limit
2016        Thread.sleep(100);
2017      } catch (InterruptedException ie) {
2018        interrupted = true;
2019      }
2020    }
2021
2022    if (interrupted) Thread.currentThread().interrupt();
2023  }
2024
2025  public BalanceResponse balance() throws IOException {
2026    return balance(BalanceRequest.defaultInstance());
2027  }
2028
2029  /**
2030   * Trigger a normal balance, see {@link HMaster#balance()} . If the balance is not executed this
2031   * time, the metrics related to the balance will be updated. When balance is running, related
2032   * metrics will be updated at the same time. But if some checking logic failed and cause the
2033   * balancer exit early, we lost the chance to update balancer metrics. This will lead to user
2034   * missing the latest balancer info.
2035   */
2036  public BalanceResponse balanceOrUpdateMetrics() throws IOException {
2037    synchronized (this.balancer) {
2038      BalanceResponse response = balance();
2039      if (!response.isBalancerRan()) {
2040        Map<TableName, Map<ServerName, List<RegionInfo>>> assignments =
2041          this.assignmentManager.getRegionStates().getAssignmentsForBalancer(this.tableStateManager,
2042            this.serverManager.getOnlineServersList());
2043        for (Map<ServerName, List<RegionInfo>> serverMap : assignments.values()) {
2044          serverMap.keySet().removeAll(this.serverManager.getDrainingServersList());
2045        }
2046        this.balancer.updateBalancerLoadInfo(assignments);
2047      }
2048      return response;
2049    }
2050  }
2051
2052  /**
2053   * Checks master state before initiating action over region topology.
2054   * @param action the name of the action under consideration, for logging.
2055   * @return {@code true} when the caller should exit early, {@code false} otherwise.
2056   */
2057  @Override
2058  public boolean skipRegionManagementAction(final String action) {
2059    // Note: this method could be `default` on MasterServices if but for logging.
2060    if (!isInitialized()) {
2061      LOG.debug("Master has not been initialized, don't run {}.", action);
2062      return true;
2063    }
2064    if (this.getServerManager().isClusterShutdown()) {
2065      LOG.info("Cluster is shutting down, don't run {}.", action);
2066      return true;
2067    }
2068    if (isInMaintenanceMode()) {
2069      LOG.info("Master is in maintenance mode, don't run {}.", action);
2070      return true;
2071    }
2072    return false;
2073  }
2074
2075  public BalanceResponse balance(BalanceRequest request) throws IOException {
2076    checkInitialized();
2077
2078    BalanceResponse.Builder responseBuilder = BalanceResponse.newBuilder();
2079
2080    if (loadBalancerStateStore == null || !(loadBalancerStateStore.get() || request.isDryRun())) {
2081      return responseBuilder.build();
2082    }
2083
2084    if (skipRegionManagementAction("balancer")) {
2085      return responseBuilder.build();
2086    }
2087
2088    synchronized (this.balancer) {
2089      // Only allow one balance run at at time.
2090      if (this.assignmentManager.hasRegionsInTransition()) {
2091        List<RegionStateNode> regionsInTransition = assignmentManager.getRegionsInTransition();
2092        // if hbase:meta region is in transition, result of assignment cannot be recorded
2093        // ignore the force flag in that case
2094        boolean metaInTransition = assignmentManager.isMetaRegionInTransition();
2095        List<RegionStateNode> toPrint = regionsInTransition;
2096        int max = 5;
2097        boolean truncated = false;
2098        if (regionsInTransition.size() > max) {
2099          toPrint = regionsInTransition.subList(0, max);
2100          truncated = true;
2101        }
2102
2103        if (!request.isIgnoreRegionsInTransition() || metaInTransition) {
2104          LOG.info("Not running balancer (ignoreRIT=false" + ", metaRIT=" + metaInTransition
2105            + ") because " + regionsInTransition.size() + " region(s) in transition: " + toPrint
2106            + (truncated ? "(truncated list)" : ""));
2107          return responseBuilder.build();
2108        }
2109      }
2110      if (this.serverManager.areDeadServersInProgress()) {
2111        LOG.info("Not running balancer because processing dead regionserver(s): "
2112          + this.serverManager.getDeadServers());
2113        return responseBuilder.build();
2114      }
2115
2116      if (this.cpHost != null) {
2117        try {
2118          if (this.cpHost.preBalance(request)) {
2119            LOG.debug("Coprocessor bypassing balancer request");
2120            return responseBuilder.build();
2121          }
2122        } catch (IOException ioe) {
2123          LOG.error("Error invoking master coprocessor preBalance()", ioe);
2124          return responseBuilder.build();
2125        }
2126      }
2127
2128      Map<TableName, Map<ServerName, List<RegionInfo>>> assignments =
2129        this.assignmentManager.getRegionStates().getAssignmentsForBalancer(tableStateManager,
2130          this.serverManager.getOnlineServersList());
2131      for (Map<ServerName, List<RegionInfo>> serverMap : assignments.values()) {
2132        serverMap.keySet().removeAll(this.serverManager.getDrainingServersList());
2133      }
2134
2135      // Give the balancer the current cluster state.
2136      this.balancer.updateClusterMetrics(getClusterMetricsWithoutCoprocessor());
2137
2138      List<RegionPlan> plans = this.balancer.balanceCluster(assignments);
2139
2140      responseBuilder.setBalancerRan(true).setMovesCalculated(plans == null ? 0 : plans.size());
2141
2142      if (skipRegionManagementAction("balancer")) {
2143        // make one last check that the cluster isn't shutting down before proceeding.
2144        return responseBuilder.build();
2145      }
2146
2147      // For dry run we don't actually want to execute the moves, but we do want
2148      // to execute the coprocessor below
2149      List<RegionPlan> sucRPs =
2150        request.isDryRun() ? Collections.emptyList() : executeRegionPlansWithThrottling(plans);
2151
2152      if (this.cpHost != null) {
2153        try {
2154          this.cpHost.postBalance(request, sucRPs);
2155        } catch (IOException ioe) {
2156          // balancing already succeeded so don't change the result
2157          LOG.error("Error invoking master coprocessor postBalance()", ioe);
2158        }
2159      }
2160
2161      responseBuilder.setMovesExecuted(sucRPs.size());
2162    }
2163
2164    // If LoadBalancer did not generate any plans, it means the cluster is already balanced.
2165    // Return true indicating a success.
2166    return responseBuilder.build();
2167  }
2168
2169  /**
2170   * Execute region plans with throttling
2171   * @param plans to execute
2172   * @return succeeded plans
2173   */
2174  public List<RegionPlan> executeRegionPlansWithThrottling(List<RegionPlan> plans) {
2175    List<RegionPlan> successRegionPlans = new ArrayList<>();
2176    int maxRegionsInTransition = getMaxRegionsInTransition();
2177    long balanceStartTime = EnvironmentEdgeManager.currentTime();
2178    long cutoffTime = balanceStartTime + this.maxBalancingTime;
2179    int rpCount = 0; // number of RegionPlans balanced so far
2180    if (plans != null && !plans.isEmpty()) {
2181      int balanceInterval = this.maxBalancingTime / plans.size();
2182      LOG.info(
2183        "Balancer plans size is " + plans.size() + ", the balance interval is " + balanceInterval
2184          + " ms, and the max number regions in transition is " + maxRegionsInTransition);
2185
2186      for (RegionPlan plan : plans) {
2187        LOG.info("balance " + plan);
2188        // TODO: bulk assign
2189        try {
2190          this.assignmentManager.balance(plan);
2191          this.balancer.updateClusterMetrics(getClusterMetricsWithoutCoprocessor());
2192          this.balancer.throttle(plan);
2193        } catch (HBaseIOException hioe) {
2194          // should ignore failed plans here, avoiding the whole balance plans be aborted
2195          // later calls of balance() can fetch up the failed and skipped plans
2196          LOG.warn("Failed balance plan {}, skipping...", plan, hioe);
2197        } catch (Exception e) {
2198          LOG.warn("Failed throttling assigning a new plan.", e);
2199        }
2200        // rpCount records balance plans processed, does not care if a plan succeeds
2201        rpCount++;
2202        successRegionPlans.add(plan);
2203
2204        if (this.maxBalancingTime > 0) {
2205          balanceThrottling(balanceStartTime + rpCount * balanceInterval, maxRegionsInTransition,
2206            cutoffTime);
2207        }
2208
2209        // if performing next balance exceeds cutoff time, exit the loop
2210        if (
2211          this.maxBalancingTime > 0 && rpCount < plans.size()
2212            && EnvironmentEdgeManager.currentTime() > cutoffTime
2213        ) {
2214          // TODO: After balance, there should not be a cutoff time (keeping it as
2215          // a security net for now)
2216          LOG.debug(
2217            "No more balancing till next balance run; maxBalanceTime=" + this.maxBalancingTime);
2218          break;
2219        }
2220      }
2221    }
2222    LOG.debug("Balancer is going into sleep until next period in {}ms", getConfiguration()
2223      .getInt(HConstants.HBASE_BALANCER_PERIOD, HConstants.DEFAULT_HBASE_BALANCER_PERIOD));
2224    return successRegionPlans;
2225  }
2226
2227  @Override
2228  public RegionNormalizerManager getRegionNormalizerManager() {
2229    return regionNormalizerManager;
2230  }
2231
2232  @Override
2233  public boolean normalizeRegions(final NormalizeTableFilterParams ntfp,
2234    final boolean isHighPriority) throws IOException {
2235    if (regionNormalizerManager == null || !regionNormalizerManager.isNormalizerOn()) {
2236      LOG.debug("Region normalization is disabled, don't run region normalizer.");
2237      return false;
2238    }
2239    if (skipRegionManagementAction("region normalizer")) {
2240      return false;
2241    }
2242    if (assignmentManager.hasRegionsInTransition()) {
2243      return false;
2244    }
2245
2246    final Set<TableName> matchingTables = getTableDescriptors(new LinkedList<>(),
2247      ntfp.getNamespace(), ntfp.getRegex(), ntfp.getTableNames(), false).stream()
2248        .map(TableDescriptor::getTableName).collect(Collectors.toSet());
2249    final Set<TableName> allEnabledTables =
2250      tableStateManager.getTablesInStates(TableState.State.ENABLED);
2251    final List<TableName> targetTables =
2252      new ArrayList<>(Sets.intersection(matchingTables, allEnabledTables));
2253    Collections.shuffle(targetTables);
2254    return regionNormalizerManager.normalizeRegions(targetTables, isHighPriority);
2255  }
2256
2257  /** Returns Client info for use as prefix on an audit log string; who did an action */
2258  @Override
2259  public String getClientIdAuditPrefix() {
2260    return "Client=" + RpcServer.getRequestUserName().orElse(null) + "/"
2261      + RpcServer.getRemoteAddress().orElse(null);
2262  }
2263
2264  /**
2265   * Switch for the background CatalogJanitor thread. Used for testing. The thread will continue to
2266   * run. It will just be a noop if disabled.
2267   * @param b If false, the catalog janitor won't do anything.
2268   */
2269  public void setCatalogJanitorEnabled(final boolean b) {
2270    this.catalogJanitorChore.setEnabled(b);
2271  }
2272
2273  @Override
2274  public long mergeRegions(final RegionInfo[] regionsToMerge, final boolean forcible, final long ng,
2275    final long nonce) throws IOException {
2276    checkInitialized();
2277
2278    final String regionNamesToLog = RegionInfo.getShortNameToLog(regionsToMerge);
2279
2280    if (!isSplitOrMergeEnabled(MasterSwitchType.MERGE)) {
2281      LOG.warn("Merge switch is off! skip merge of " + regionNamesToLog);
2282      throw new DoNotRetryIOException(
2283        "Merge of " + regionNamesToLog + " failed because merge switch is off");
2284    }
2285
2286    if (!getTableDescriptors().get(regionsToMerge[0].getTable()).isMergeEnabled()) {
2287      LOG.warn("Merge is disabled for the table! Skipping merge of {}", regionNamesToLog);
2288      throw new DoNotRetryIOException(
2289        "Merge of " + regionNamesToLog + " failed as region merge is disabled for the table");
2290    }
2291
2292    return MasterProcedureUtil.submitProcedure(new NonceProcedureRunnable(this, ng, nonce) {
2293      @Override
2294      protected void run() throws IOException {
2295        getMaster().getMasterCoprocessorHost().preMergeRegions(regionsToMerge);
2296        String aid = getClientIdAuditPrefix();
2297        LOG.info("{} merge regions {}", aid, regionNamesToLog);
2298        submitProcedure(new MergeTableRegionsProcedure(procedureExecutor.getEnvironment(),
2299          regionsToMerge, forcible));
2300        getMaster().getMasterCoprocessorHost().postMergeRegions(regionsToMerge);
2301      }
2302
2303      @Override
2304      protected String getDescription() {
2305        return "MergeTableProcedure";
2306      }
2307    });
2308  }
2309
2310  @Override
2311  public long splitRegion(final RegionInfo regionInfo, final byte[] splitRow, final long nonceGroup,
2312    final long nonce) throws IOException {
2313    checkInitialized();
2314
2315    if (!isSplitOrMergeEnabled(MasterSwitchType.SPLIT)) {
2316      LOG.warn("Split switch is off! skip split of " + regionInfo);
2317      throw new DoNotRetryIOException(
2318        "Split region " + regionInfo.getRegionNameAsString() + " failed due to split switch off");
2319    }
2320
2321    if (!getTableDescriptors().get(regionInfo.getTable()).isSplitEnabled()) {
2322      LOG.warn("Split is disabled for the table! Skipping split of {}", regionInfo);
2323      throw new DoNotRetryIOException("Split region " + regionInfo.getRegionNameAsString()
2324        + " failed as region split is disabled for the table");
2325    }
2326
2327    return MasterProcedureUtil
2328      .submitProcedure(new MasterProcedureUtil.NonceProcedureRunnable(this, nonceGroup, nonce) {
2329        @Override
2330        protected void run() throws IOException {
2331          getMaster().getMasterCoprocessorHost().preSplitRegion(regionInfo.getTable(), splitRow);
2332          LOG.info(getClientIdAuditPrefix() + " split " + regionInfo.getRegionNameAsString());
2333
2334          // Execute the operation asynchronously
2335          submitProcedure(getAssignmentManager().createSplitProcedure(regionInfo, splitRow));
2336        }
2337
2338        @Override
2339        protected String getDescription() {
2340          return "SplitTableProcedure";
2341        }
2342      });
2343  }
2344
2345  private void warmUpRegion(ServerName server, RegionInfo region) {
2346    FutureUtils.addListener(asyncClusterConnection.getRegionServerAdmin(server)
2347      .warmupRegion(RequestConverter.buildWarmupRegionRequest(region)), (r, e) -> {
2348        if (e != null) {
2349          LOG.warn("Failed to warm up region {} on server {}", region, server, e);
2350        }
2351      });
2352  }
2353
2354  // Public so can be accessed by tests. Blocks until move is done.
2355  // Replace with an async implementation from which you can get
2356  // a success/failure result.
2357  @InterfaceAudience.Private
2358  public void move(final byte[] encodedRegionName, byte[] destServerName) throws IOException {
2359    RegionState regionState =
2360      assignmentManager.getRegionStates().getRegionState(Bytes.toString(encodedRegionName));
2361
2362    RegionInfo hri;
2363    if (regionState != null) {
2364      hri = regionState.getRegion();
2365    } else {
2366      throw new UnknownRegionException(Bytes.toStringBinary(encodedRegionName));
2367    }
2368
2369    ServerName dest;
2370    List<ServerName> exclude = hri.getTable().isSystemTable()
2371      ? assignmentManager.getExcludedServersForSystemTable()
2372      : new ArrayList<>(1);
2373    if (
2374      destServerName != null && exclude.contains(ServerName.valueOf(Bytes.toString(destServerName)))
2375    ) {
2376      LOG.info(Bytes.toString(encodedRegionName) + " can not move to "
2377        + Bytes.toString(destServerName) + " because the server is in exclude list");
2378      destServerName = null;
2379    }
2380    if (destServerName == null || destServerName.length == 0) {
2381      LOG.info("Passed destination servername is null/empty so " + "choosing a server at random");
2382      exclude.add(regionState.getServerName());
2383      final List<ServerName> destServers = this.serverManager.createDestinationServersList(exclude);
2384      dest = balancer.randomAssignment(hri, destServers);
2385      if (dest == null) {
2386        LOG.debug("Unable to determine a plan to assign " + hri);
2387        return;
2388      }
2389    } else {
2390      ServerName candidate = ServerName.valueOf(Bytes.toString(destServerName));
2391      dest = balancer.randomAssignment(hri, Lists.newArrayList(candidate));
2392      if (dest == null) {
2393        LOG.debug("Unable to determine a plan to assign " + hri);
2394        return;
2395      }
2396      // TODO: deal with table on master for rs group.
2397      if (dest.equals(serverName)) {
2398        // To avoid unnecessary region moving later by balancer. Don't put user
2399        // regions on master.
2400        LOG.debug("Skipping move of region " + hri.getRegionNameAsString()
2401          + " to avoid unnecessary region moving later by load balancer,"
2402          + " because it should not be on master");
2403        return;
2404      }
2405    }
2406
2407    if (dest.equals(regionState.getServerName())) {
2408      LOG.debug("Skipping move of region " + hri.getRegionNameAsString()
2409        + " because region already assigned to the same server " + dest + ".");
2410      return;
2411    }
2412
2413    // Now we can do the move
2414    RegionPlan rp = new RegionPlan(hri, regionState.getServerName(), dest);
2415    assert rp.getDestination() != null : rp.toString() + " " + dest;
2416
2417    try {
2418      checkInitialized();
2419      if (this.cpHost != null) {
2420        this.cpHost.preMove(hri, rp.getSource(), rp.getDestination());
2421      }
2422
2423      TransitRegionStateProcedure proc =
2424        this.assignmentManager.createMoveRegionProcedure(rp.getRegionInfo(), rp.getDestination());
2425      if (conf.getBoolean(WARMUP_BEFORE_MOVE, DEFAULT_WARMUP_BEFORE_MOVE)) {
2426        // Warmup the region on the destination before initiating the move.
2427        // A region server could reject the close request because it either does not
2428        // have the specified region or the region is being split.
2429        LOG.info(getClientIdAuditPrefix() + " move " + rp + ", warming up region on "
2430          + rp.getDestination());
2431        warmUpRegion(rp.getDestination(), hri);
2432      }
2433      LOG.info(getClientIdAuditPrefix() + " move " + rp + ", running balancer");
2434      Future<byte[]> future = ProcedureSyncWait.submitProcedure(this.procedureExecutor, proc);
2435      try {
2436        // Is this going to work? Will we throw exception on error?
2437        // TODO: CompletableFuture rather than this stunted Future.
2438        future.get();
2439      } catch (InterruptedException | ExecutionException e) {
2440        throw new HBaseIOException(e);
2441      }
2442      if (this.cpHost != null) {
2443        this.cpHost.postMove(hri, rp.getSource(), rp.getDestination());
2444      }
2445    } catch (IOException ioe) {
2446      if (ioe instanceof HBaseIOException) {
2447        throw (HBaseIOException) ioe;
2448      }
2449      throw new HBaseIOException(ioe);
2450    }
2451  }
2452
2453  @Override
2454  public long createTable(final TableDescriptor tableDescriptor, final byte[][] splitKeys,
2455    final long nonceGroup, final long nonce) throws IOException {
2456    checkInitialized();
2457    TableDescriptor desc = getMasterCoprocessorHost().preCreateTableRegionsInfos(tableDescriptor);
2458    if (desc == null) {
2459      throw new IOException("Creation for " + tableDescriptor + " is canceled by CP");
2460    }
2461    String namespace = desc.getTableName().getNamespaceAsString();
2462    this.clusterSchemaService.getNamespace(namespace);
2463
2464    RegionInfo[] newRegions = ModifyRegionUtils.createRegionInfos(desc, splitKeys);
2465    TableDescriptorChecker.sanityCheck(conf, desc);
2466
2467    return MasterProcedureUtil
2468      .submitProcedure(new MasterProcedureUtil.NonceProcedureRunnable(this, nonceGroup, nonce) {
2469        @Override
2470        protected void run() throws IOException {
2471          getMaster().getMasterCoprocessorHost().preCreateTable(desc, newRegions);
2472
2473          LOG.info(getClientIdAuditPrefix() + " create " + desc);
2474
2475          // TODO: We can handle/merge duplicate requests, and differentiate the case of
2476          // TableExistsException by saying if the schema is the same or not.
2477          //
2478          // We need to wait for the procedure to potentially fail due to "prepare" sanity
2479          // checks. This will block only the beginning of the procedure. See HBASE-19953.
2480          ProcedurePrepareLatch latch = ProcedurePrepareLatch.createBlockingLatch();
2481          submitProcedure(
2482            new CreateTableProcedure(procedureExecutor.getEnvironment(), desc, newRegions, latch));
2483          latch.await();
2484
2485          getMaster().getMasterCoprocessorHost().postCreateTable(desc, newRegions);
2486        }
2487
2488        @Override
2489        protected String getDescription() {
2490          return "CreateTableProcedure";
2491        }
2492      });
2493  }
2494
2495  @Override
2496  public long createSystemTable(final TableDescriptor tableDescriptor) throws IOException {
2497    if (isStopped()) {
2498      throw new MasterNotRunningException();
2499    }
2500
2501    TableName tableName = tableDescriptor.getTableName();
2502    if (!(tableName.isSystemTable())) {
2503      throw new IllegalArgumentException(
2504        "Only system table creation can use this createSystemTable API");
2505    }
2506
2507    RegionInfo[] newRegions = ModifyRegionUtils.createRegionInfos(tableDescriptor, null);
2508
2509    LOG.info(getClientIdAuditPrefix() + " create " + tableDescriptor);
2510
2511    // This special create table is called locally to master. Therefore, no RPC means no need
2512    // to use nonce to detect duplicated RPC call.
2513    long procId = this.procedureExecutor.submitProcedure(
2514      new CreateTableProcedure(procedureExecutor.getEnvironment(), tableDescriptor, newRegions));
2515
2516    return procId;
2517  }
2518
2519  private void startActiveMasterManager(int infoPort) throws KeeperException {
2520    String backupZNode = ZNodePaths.joinZNode(zooKeeper.getZNodePaths().backupMasterAddressesZNode,
2521      serverName.toString());
2522    /*
2523     * Add a ZNode for ourselves in the backup master directory since we may not become the active
2524     * master. If so, we want the actual active master to know we are backup masters, so that it
2525     * won't assign regions to us if so configured. If we become the active master later,
2526     * ActiveMasterManager will delete this node explicitly. If we crash before then, ZooKeeper will
2527     * delete this node for us since it is ephemeral.
2528     */
2529    LOG.info("Adding backup master ZNode " + backupZNode);
2530    if (!MasterAddressTracker.setMasterAddress(zooKeeper, backupZNode, serverName, infoPort)) {
2531      LOG.warn("Failed create of " + backupZNode + " by " + serverName);
2532    }
2533    this.activeMasterManager.setInfoPort(infoPort);
2534    int timeout = conf.getInt(HConstants.ZK_SESSION_TIMEOUT, HConstants.DEFAULT_ZK_SESSION_TIMEOUT);
2535    // If we're a backup master, stall until a primary to write this address
2536    if (conf.getBoolean(HConstants.MASTER_TYPE_BACKUP, HConstants.DEFAULT_MASTER_TYPE_BACKUP)) {
2537      LOG.debug("HMaster started in backup mode. Stalling until master znode is written.");
2538      // This will only be a minute or so while the cluster starts up,
2539      // so don't worry about setting watches on the parent znode
2540      while (!activeMasterManager.hasActiveMaster()) {
2541        LOG.debug("Waiting for master address and cluster state znode to be written.");
2542        Threads.sleep(timeout);
2543      }
2544    }
2545
2546    // Here for the master startup process, we use TaskGroup to monitor the whole progress.
2547    // The UI is similar to how Hadoop designed the startup page for the NameNode.
2548    // See HBASE-21521 for more details.
2549    // We do not cleanup the startupTaskGroup, let the startup progress information
2550    // be permanent in the MEM.
2551    startupTaskGroup = TaskMonitor.createTaskGroup(true, "Master startup");
2552    try {
2553      if (activeMasterManager.blockUntilBecomingActiveMaster(timeout, startupTaskGroup)) {
2554        finishActiveMasterInitialization();
2555      }
2556    } catch (Throwable t) {
2557      startupTaskGroup.abort("Failed to become active master due to:" + t.getMessage());
2558      LOG.error(HBaseMarkers.FATAL, "Failed to become active master", t);
2559      // HBASE-5680: Likely hadoop23 vs hadoop 20.x/1.x incompatibility
2560      if (
2561        t instanceof NoClassDefFoundError
2562          && t.getMessage().contains("org/apache/hadoop/hdfs/protocol/HdfsConstants$SafeModeAction")
2563      ) {
2564        // improved error message for this special case
2565        abort("HBase is having a problem with its Hadoop jars.  You may need to recompile "
2566          + "HBase against Hadoop version " + org.apache.hadoop.util.VersionInfo.getVersion()
2567          + " or change your hadoop jars to start properly", t);
2568      } else {
2569        abort("Unhandled exception. Starting shutdown.", t);
2570      }
2571    }
2572  }
2573
2574  private static boolean isCatalogTable(final TableName tableName) {
2575    return tableName.equals(TableName.META_TABLE_NAME);
2576  }
2577
2578  @Override
2579  public long deleteTable(final TableName tableName, final long nonceGroup, final long nonce)
2580    throws IOException {
2581    checkInitialized();
2582
2583    return MasterProcedureUtil
2584      .submitProcedure(new MasterProcedureUtil.NonceProcedureRunnable(this, nonceGroup, nonce) {
2585        @Override
2586        protected void run() throws IOException {
2587          getMaster().getMasterCoprocessorHost().preDeleteTable(tableName);
2588
2589          LOG.info(getClientIdAuditPrefix() + " delete " + tableName);
2590
2591          // TODO: We can handle/merge duplicate request
2592          //
2593          // We need to wait for the procedure to potentially fail due to "prepare" sanity
2594          // checks. This will block only the beginning of the procedure. See HBASE-19953.
2595          ProcedurePrepareLatch latch = ProcedurePrepareLatch.createBlockingLatch();
2596          submitProcedure(
2597            new DeleteTableProcedure(procedureExecutor.getEnvironment(), tableName, latch));
2598          latch.await();
2599
2600          getMaster().getMasterCoprocessorHost().postDeleteTable(tableName);
2601        }
2602
2603        @Override
2604        protected String getDescription() {
2605          return "DeleteTableProcedure";
2606        }
2607      });
2608  }
2609
2610  @Override
2611  public long truncateTable(final TableName tableName, final boolean preserveSplits,
2612    final long nonceGroup, final long nonce) throws IOException {
2613    checkInitialized();
2614
2615    return MasterProcedureUtil
2616      .submitProcedure(new MasterProcedureUtil.NonceProcedureRunnable(this, nonceGroup, nonce) {
2617        @Override
2618        protected void run() throws IOException {
2619          getMaster().getMasterCoprocessorHost().preTruncateTable(tableName);
2620
2621          LOG.info(getClientIdAuditPrefix() + " truncate " + tableName);
2622          ProcedurePrepareLatch latch = ProcedurePrepareLatch.createLatch(2, 0);
2623          submitProcedure(new TruncateTableProcedure(procedureExecutor.getEnvironment(), tableName,
2624            preserveSplits, latch));
2625          latch.await();
2626
2627          getMaster().getMasterCoprocessorHost().postTruncateTable(tableName);
2628        }
2629
2630        @Override
2631        protected String getDescription() {
2632          return "TruncateTableProcedure";
2633        }
2634      });
2635  }
2636
2637  @Override
2638  public long truncateRegion(final RegionInfo regionInfo, final long nonceGroup, final long nonce)
2639    throws IOException {
2640    checkInitialized();
2641
2642    return MasterProcedureUtil
2643      .submitProcedure(new MasterProcedureUtil.NonceProcedureRunnable(this, nonceGroup, nonce) {
2644        @Override
2645        protected void run() throws IOException {
2646          getMaster().getMasterCoprocessorHost().preTruncateRegion(regionInfo);
2647
2648          LOG.info(
2649            getClientIdAuditPrefix() + " truncate region " + regionInfo.getRegionNameAsString());
2650
2651          // Execute the operation asynchronously
2652          ProcedurePrepareLatch latch = ProcedurePrepareLatch.createLatch(2, 0);
2653          submitProcedure(
2654            new TruncateRegionProcedure(procedureExecutor.getEnvironment(), regionInfo, latch));
2655          latch.await();
2656
2657          getMaster().getMasterCoprocessorHost().postTruncateRegion(regionInfo);
2658        }
2659
2660        @Override
2661        protected String getDescription() {
2662          return "TruncateRegionProcedure";
2663        }
2664      });
2665  }
2666
2667  @Override
2668  public long addColumn(final TableName tableName, final ColumnFamilyDescriptor column,
2669    final long nonceGroup, final long nonce) throws IOException {
2670    checkInitialized();
2671    checkTableExists(tableName);
2672
2673    return modifyTable(tableName, new TableDescriptorGetter() {
2674
2675      @Override
2676      public TableDescriptor get() throws IOException {
2677        TableDescriptor old = getTableDescriptors().get(tableName);
2678        if (old.hasColumnFamily(column.getName())) {
2679          throw new InvalidFamilyOperationException("Column family '" + column.getNameAsString()
2680            + "' in table '" + tableName + "' already exists so cannot be added");
2681        }
2682
2683        return TableDescriptorBuilder.newBuilder(old).setColumnFamily(column).build();
2684      }
2685    }, nonceGroup, nonce, true);
2686  }
2687
2688  /**
2689   * Implement to return TableDescriptor after pre-checks
2690   */
2691  protected interface TableDescriptorGetter {
2692    TableDescriptor get() throws IOException;
2693  }
2694
2695  @Override
2696  public long modifyColumn(final TableName tableName, final ColumnFamilyDescriptor descriptor,
2697    final long nonceGroup, final long nonce) throws IOException {
2698    checkInitialized();
2699    checkTableExists(tableName);
2700    return modifyTable(tableName, new TableDescriptorGetter() {
2701
2702      @Override
2703      public TableDescriptor get() throws IOException {
2704        TableDescriptor old = getTableDescriptors().get(tableName);
2705        if (!old.hasColumnFamily(descriptor.getName())) {
2706          throw new InvalidFamilyOperationException("Family '" + descriptor.getNameAsString()
2707            + "' does not exist, so it cannot be modified");
2708        }
2709
2710        return TableDescriptorBuilder.newBuilder(old).modifyColumnFamily(descriptor).build();
2711      }
2712    }, nonceGroup, nonce, true);
2713  }
2714
2715  @Override
2716  public long modifyColumnStoreFileTracker(TableName tableName, byte[] family, String dstSFT,
2717    long nonceGroup, long nonce) throws IOException {
2718    checkInitialized();
2719    return MasterProcedureUtil
2720      .submitProcedure(new MasterProcedureUtil.NonceProcedureRunnable(this, nonceGroup, nonce) {
2721
2722        @Override
2723        protected void run() throws IOException {
2724          String sft = getMaster().getMasterCoprocessorHost()
2725            .preModifyColumnFamilyStoreFileTracker(tableName, family, dstSFT);
2726          LOG.info("{} modify column {} store file tracker of table {} to {}",
2727            getClientIdAuditPrefix(), Bytes.toStringBinary(family), tableName, sft);
2728          submitProcedure(new ModifyColumnFamilyStoreFileTrackerProcedure(
2729            procedureExecutor.getEnvironment(), tableName, family, sft));
2730          getMaster().getMasterCoprocessorHost().postModifyColumnFamilyStoreFileTracker(tableName,
2731            family, dstSFT);
2732        }
2733
2734        @Override
2735        protected String getDescription() {
2736          return "ModifyColumnFamilyStoreFileTrackerProcedure";
2737        }
2738      });
2739  }
2740
2741  @Override
2742  public long deleteColumn(final TableName tableName, final byte[] columnName,
2743    final long nonceGroup, final long nonce) throws IOException {
2744    checkInitialized();
2745    checkTableExists(tableName);
2746
2747    return modifyTable(tableName, new TableDescriptorGetter() {
2748
2749      @Override
2750      public TableDescriptor get() throws IOException {
2751        TableDescriptor old = getTableDescriptors().get(tableName);
2752
2753        if (!old.hasColumnFamily(columnName)) {
2754          throw new InvalidFamilyOperationException(
2755            "Family '" + Bytes.toString(columnName) + "' does not exist, so it cannot be deleted");
2756        }
2757        if (old.getColumnFamilyCount() == 1) {
2758          throw new InvalidFamilyOperationException("Family '" + Bytes.toString(columnName)
2759            + "' is the only column family in the table, so it cannot be deleted");
2760        }
2761        return TableDescriptorBuilder.newBuilder(old).removeColumnFamily(columnName).build();
2762      }
2763    }, nonceGroup, nonce, true);
2764  }
2765
2766  @Override
2767  public long enableTable(final TableName tableName, final long nonceGroup, final long nonce)
2768    throws IOException {
2769    checkInitialized();
2770
2771    return MasterProcedureUtil
2772      .submitProcedure(new MasterProcedureUtil.NonceProcedureRunnable(this, nonceGroup, nonce) {
2773        @Override
2774        protected void run() throws IOException {
2775          getMaster().getMasterCoprocessorHost().preEnableTable(tableName);
2776
2777          // Normally, it would make sense for this authorization check to exist inside
2778          // AccessController, but because the authorization check is done based on internal state
2779          // (rather than explicit permissions) we'll do the check here instead of in the
2780          // coprocessor.
2781          MasterQuotaManager quotaManager = getMasterQuotaManager();
2782          if (quotaManager != null) {
2783            if (quotaManager.isQuotaInitialized()) {
2784              // skip checking quotas for system tables, see:
2785              // https://issues.apache.org/jira/browse/HBASE-28183
2786              if (!tableName.isSystemTable()) {
2787                SpaceQuotaSnapshot currSnapshotOfTable =
2788                  QuotaTableUtil.getCurrentSnapshotFromQuotaTable(getConnection(), tableName);
2789                if (currSnapshotOfTable != null) {
2790                  SpaceQuotaStatus quotaStatus = currSnapshotOfTable.getQuotaStatus();
2791                  if (
2792                    quotaStatus.isInViolation()
2793                      && SpaceViolationPolicy.DISABLE == quotaStatus.getPolicy().orElse(null)
2794                  ) {
2795                    throw new AccessDeniedException("Enabling the table '" + tableName
2796                      + "' is disallowed due to a violated space quota.");
2797                  }
2798                }
2799              }
2800            } else if (LOG.isTraceEnabled()) {
2801              LOG
2802                .trace("Unable to check for space quotas as the MasterQuotaManager is not enabled");
2803            }
2804          }
2805
2806          LOG.info(getClientIdAuditPrefix() + " enable " + tableName);
2807
2808          // Execute the operation asynchronously - client will check the progress of the operation
2809          // In case the request is from a <1.1 client before returning,
2810          // we want to make sure that the table is prepared to be
2811          // enabled (the table is locked and the table state is set).
2812          // Note: if the procedure throws exception, we will catch it and rethrow.
2813          final ProcedurePrepareLatch prepareLatch = ProcedurePrepareLatch.createLatch();
2814          submitProcedure(
2815            new EnableTableProcedure(procedureExecutor.getEnvironment(), tableName, prepareLatch));
2816          prepareLatch.await();
2817
2818          getMaster().getMasterCoprocessorHost().postEnableTable(tableName);
2819        }
2820
2821        @Override
2822        protected String getDescription() {
2823          return "EnableTableProcedure";
2824        }
2825      });
2826  }
2827
2828  @Override
2829  public long disableTable(final TableName tableName, final long nonceGroup, final long nonce)
2830    throws IOException {
2831    checkInitialized();
2832
2833    return MasterProcedureUtil
2834      .submitProcedure(new MasterProcedureUtil.NonceProcedureRunnable(this, nonceGroup, nonce) {
2835        @Override
2836        protected void run() throws IOException {
2837          getMaster().getMasterCoprocessorHost().preDisableTable(tableName);
2838
2839          LOG.info(getClientIdAuditPrefix() + " disable " + tableName);
2840
2841          // Execute the operation asynchronously - client will check the progress of the operation
2842          // In case the request is from a <1.1 client before returning,
2843          // we want to make sure that the table is prepared to be
2844          // enabled (the table is locked and the table state is set).
2845          // Note: if the procedure throws exception, we will catch it and rethrow.
2846          //
2847          // We need to wait for the procedure to potentially fail due to "prepare" sanity
2848          // checks. This will block only the beginning of the procedure. See HBASE-19953.
2849          final ProcedurePrepareLatch prepareLatch = ProcedurePrepareLatch.createBlockingLatch();
2850          submitProcedure(new DisableTableProcedure(procedureExecutor.getEnvironment(), tableName,
2851            false, prepareLatch));
2852          prepareLatch.await();
2853
2854          getMaster().getMasterCoprocessorHost().postDisableTable(tableName);
2855        }
2856
2857        @Override
2858        protected String getDescription() {
2859          return "DisableTableProcedure";
2860        }
2861      });
2862  }
2863
2864  private long modifyTable(final TableName tableName,
2865    final TableDescriptorGetter newDescriptorGetter, final long nonceGroup, final long nonce,
2866    final boolean shouldCheckDescriptor) throws IOException {
2867    return modifyTable(tableName, newDescriptorGetter, nonceGroup, nonce, shouldCheckDescriptor,
2868      true);
2869  }
2870
2871  private long modifyTable(final TableName tableName,
2872    final TableDescriptorGetter newDescriptorGetter, final long nonceGroup, final long nonce,
2873    final boolean shouldCheckDescriptor, final boolean reopenRegions) throws IOException {
2874    return MasterProcedureUtil
2875      .submitProcedure(new MasterProcedureUtil.NonceProcedureRunnable(this, nonceGroup, nonce) {
2876        @Override
2877        protected void run() throws IOException {
2878          TableDescriptor oldDescriptor = getMaster().getTableDescriptors().get(tableName);
2879          TableDescriptor newDescriptor = getMaster().getMasterCoprocessorHost()
2880            .preModifyTable(tableName, oldDescriptor, newDescriptorGetter.get());
2881          TableDescriptorChecker.sanityCheck(conf, newDescriptor);
2882          LOG.info("{} modify table {} from {} to {}", getClientIdAuditPrefix(), tableName,
2883            oldDescriptor, newDescriptor);
2884
2885          // Execute the operation synchronously - wait for the operation completes before
2886          // continuing.
2887          //
2888          // We need to wait for the procedure to potentially fail due to "prepare" sanity
2889          // checks. This will block only the beginning of the procedure. See HBASE-19953.
2890          ProcedurePrepareLatch latch = ProcedurePrepareLatch.createBlockingLatch();
2891          submitProcedure(new ModifyTableProcedure(procedureExecutor.getEnvironment(),
2892            newDescriptor, latch, oldDescriptor, shouldCheckDescriptor, reopenRegions));
2893          latch.await();
2894
2895          getMaster().getMasterCoprocessorHost().postModifyTable(tableName, oldDescriptor,
2896            newDescriptor);
2897        }
2898
2899        @Override
2900        protected String getDescription() {
2901          return "ModifyTableProcedure";
2902        }
2903      });
2904
2905  }
2906
2907  @Override
2908  public long modifyTable(final TableName tableName, final TableDescriptor newDescriptor,
2909    final long nonceGroup, final long nonce, final boolean reopenRegions) throws IOException {
2910    checkInitialized();
2911    return modifyTable(tableName, new TableDescriptorGetter() {
2912      @Override
2913      public TableDescriptor get() throws IOException {
2914        return newDescriptor;
2915      }
2916    }, nonceGroup, nonce, false, reopenRegions);
2917
2918  }
2919
2920  @Override
2921  public long modifyTableStoreFileTracker(TableName tableName, String dstSFT, long nonceGroup,
2922    long nonce) throws IOException {
2923    checkInitialized();
2924    return MasterProcedureUtil
2925      .submitProcedure(new MasterProcedureUtil.NonceProcedureRunnable(this, nonceGroup, nonce) {
2926
2927        @Override
2928        protected void run() throws IOException {
2929          String sft = getMaster().getMasterCoprocessorHost()
2930            .preModifyTableStoreFileTracker(tableName, dstSFT);
2931          LOG.info("{} modify table store file tracker of table {} to {}", getClientIdAuditPrefix(),
2932            tableName, sft);
2933          submitProcedure(new ModifyTableStoreFileTrackerProcedure(
2934            procedureExecutor.getEnvironment(), tableName, sft));
2935          getMaster().getMasterCoprocessorHost().postModifyTableStoreFileTracker(tableName, sft);
2936        }
2937
2938        @Override
2939        protected String getDescription() {
2940          return "ModifyTableStoreFileTrackerProcedure";
2941        }
2942      });
2943  }
2944
2945  public long restoreSnapshot(final SnapshotDescription snapshotDesc, final long nonceGroup,
2946    final long nonce, final boolean restoreAcl, final String customSFT) throws IOException {
2947    checkInitialized();
2948    getSnapshotManager().checkSnapshotSupport();
2949
2950    // Ensure namespace exists. Will throw exception if non-known NS.
2951    final TableName dstTable = TableName.valueOf(snapshotDesc.getTable());
2952    getClusterSchema().getNamespace(dstTable.getNamespaceAsString());
2953
2954    return MasterProcedureUtil
2955      .submitProcedure(new MasterProcedureUtil.NonceProcedureRunnable(this, nonceGroup, nonce) {
2956        @Override
2957        protected void run() throws IOException {
2958          setProcId(getSnapshotManager().restoreOrCloneSnapshot(snapshotDesc, getNonceKey(),
2959            restoreAcl, customSFT));
2960        }
2961
2962        @Override
2963        protected String getDescription() {
2964          return "RestoreSnapshotProcedure";
2965        }
2966      });
2967  }
2968
2969  private void checkTableExists(final TableName tableName)
2970    throws IOException, TableNotFoundException {
2971    if (!tableDescriptors.exists(tableName)) {
2972      throw new TableNotFoundException(tableName);
2973    }
2974  }
2975
2976  @Override
2977  public void checkTableModifiable(final TableName tableName)
2978    throws IOException, TableNotFoundException, TableNotDisabledException {
2979    if (isCatalogTable(tableName)) {
2980      throw new IOException("Can't modify catalog tables");
2981    }
2982    checkTableExists(tableName);
2983    TableState ts = getTableStateManager().getTableState(tableName);
2984    if (!ts.isDisabled()) {
2985      throw new TableNotDisabledException("Not DISABLED; " + ts);
2986    }
2987  }
2988
2989  public ClusterMetrics getClusterMetricsWithoutCoprocessor() throws InterruptedIOException {
2990    return getClusterMetricsWithoutCoprocessor(EnumSet.allOf(Option.class));
2991  }
2992
2993  public ClusterMetrics getClusterMetricsWithoutCoprocessor(EnumSet<Option> options)
2994    throws InterruptedIOException {
2995    ClusterMetricsBuilder builder = ClusterMetricsBuilder.newBuilder();
2996    // given that hbase1 can't submit the request with Option,
2997    // we return all information to client if the list of Option is empty.
2998    if (options.isEmpty()) {
2999      options = EnumSet.allOf(Option.class);
3000    }
3001
3002    // TASKS and/or LIVE_SERVERS will populate this map, which will be given to the builder if
3003    // not null after option processing completes.
3004    Map<ServerName, ServerMetrics> serverMetricsMap = null;
3005
3006    for (Option opt : options) {
3007      switch (opt) {
3008        case HBASE_VERSION:
3009          builder.setHBaseVersion(VersionInfo.getVersion());
3010          break;
3011        case CLUSTER_ID:
3012          builder.setClusterId(getClusterId());
3013          break;
3014        case MASTER:
3015          builder.setMasterName(getServerName());
3016          break;
3017        case BACKUP_MASTERS:
3018          builder.setBackerMasterNames(getBackupMasters());
3019          break;
3020        case TASKS: {
3021          // Master tasks
3022          builder.setMasterTasks(TaskMonitor.get().getTasks().stream()
3023            .map(task -> ServerTaskBuilder.newBuilder().setDescription(task.getDescription())
3024              .setStatus(task.getStatus())
3025              .setState(ServerTask.State.valueOf(task.getState().name()))
3026              .setStartTime(task.getStartTime()).setCompletionTime(task.getCompletionTimestamp())
3027              .build())
3028            .collect(Collectors.toList()));
3029          // TASKS is also synonymous with LIVE_SERVERS for now because task information for
3030          // regionservers is carried in ServerLoad.
3031          // Add entries to serverMetricsMap for all live servers, if we haven't already done so
3032          if (serverMetricsMap == null) {
3033            serverMetricsMap = getOnlineServers();
3034          }
3035          break;
3036        }
3037        case LIVE_SERVERS: {
3038          // Add entries to serverMetricsMap for all live servers, if we haven't already done so
3039          if (serverMetricsMap == null) {
3040            serverMetricsMap = getOnlineServers();
3041          }
3042          break;
3043        }
3044        case DEAD_SERVERS: {
3045          if (serverManager != null) {
3046            builder.setDeadServerNames(
3047              new ArrayList<>(serverManager.getDeadServers().copyServerNames()));
3048          }
3049          break;
3050        }
3051        case UNKNOWN_SERVERS: {
3052          if (serverManager != null) {
3053            builder.setUnknownServerNames(getUnknownServers());
3054          }
3055          break;
3056        }
3057        case MASTER_COPROCESSORS: {
3058          if (cpHost != null) {
3059            builder.setMasterCoprocessorNames(Arrays.asList(getMasterCoprocessors()));
3060          }
3061          break;
3062        }
3063        case REGIONS_IN_TRANSITION: {
3064          if (assignmentManager != null) {
3065            builder.setRegionsInTransition(
3066              assignmentManager.getRegionStates().getRegionsStateInTransition());
3067          }
3068          break;
3069        }
3070        case BALANCER_ON: {
3071          if (loadBalancerStateStore != null) {
3072            builder.setBalancerOn(loadBalancerStateStore.get());
3073          }
3074          break;
3075        }
3076        case MASTER_INFO_PORT: {
3077          if (infoServer != null) {
3078            builder.setMasterInfoPort(infoServer.getPort());
3079          }
3080          break;
3081        }
3082        case SERVERS_NAME: {
3083          if (serverManager != null) {
3084            builder.setServerNames(serverManager.getOnlineServersList());
3085          }
3086          break;
3087        }
3088        case TABLE_TO_REGIONS_COUNT: {
3089          if (isActiveMaster() && isInitialized() && assignmentManager != null) {
3090            try {
3091              Map<TableName, RegionStatesCount> tableRegionStatesCountMap = new HashMap<>();
3092              Map<String, TableDescriptor> tableDescriptorMap = getTableDescriptors().getAll();
3093              for (TableDescriptor tableDescriptor : tableDescriptorMap.values()) {
3094                TableName tableName = tableDescriptor.getTableName();
3095                RegionStatesCount regionStatesCount =
3096                  assignmentManager.getRegionStatesCount(tableName);
3097                tableRegionStatesCountMap.put(tableName, regionStatesCount);
3098              }
3099              builder.setTableRegionStatesCount(tableRegionStatesCountMap);
3100            } catch (IOException e) {
3101              LOG.error("Error while populating TABLE_TO_REGIONS_COUNT for Cluster Metrics..", e);
3102            }
3103          }
3104          break;
3105        }
3106        case DECOMMISSIONED_SERVERS: {
3107          if (serverManager != null) {
3108            builder.setDecommissionedServerNames(serverManager.getDrainingServersList());
3109          }
3110          break;
3111        }
3112      }
3113    }
3114
3115    if (serverMetricsMap != null) {
3116      builder.setLiveServerMetrics(serverMetricsMap);
3117    }
3118
3119    return builder.build();
3120  }
3121
3122  private List<ServerName> getUnknownServers() {
3123    if (serverManager != null) {
3124      final Set<ServerName> serverNames = getAssignmentManager().getRegionStates().getRegionStates()
3125        .stream().map(RegionState::getServerName).collect(Collectors.toSet());
3126      final List<ServerName> unknownServerNames = serverNames.stream()
3127        .filter(sn -> sn != null && serverManager.isServerUnknown(sn)).collect(Collectors.toList());
3128      return unknownServerNames;
3129    }
3130    return null;
3131  }
3132
3133  private Map<ServerName, ServerMetrics> getOnlineServers() {
3134    if (serverManager != null) {
3135      final Map<ServerName, ServerMetrics> map = new HashMap<>();
3136      serverManager.getOnlineServers().entrySet().forEach(e -> map.put(e.getKey(), e.getValue()));
3137      return map;
3138    }
3139    return null;
3140  }
3141
3142  /** Returns cluster status */
3143  public ClusterMetrics getClusterMetrics() throws IOException {
3144    return getClusterMetrics(EnumSet.allOf(Option.class));
3145  }
3146
3147  public ClusterMetrics getClusterMetrics(EnumSet<Option> options) throws IOException {
3148    if (cpHost != null) {
3149      cpHost.preGetClusterMetrics();
3150    }
3151    ClusterMetrics status = getClusterMetricsWithoutCoprocessor(options);
3152    if (cpHost != null) {
3153      cpHost.postGetClusterMetrics(status);
3154    }
3155    return status;
3156  }
3157
3158  /** Returns info port of active master or 0 if any exception occurs. */
3159  public int getActiveMasterInfoPort() {
3160    return activeMasterManager.getActiveMasterInfoPort();
3161  }
3162
3163  /**
3164   * @param sn is ServerName of the backup master
3165   * @return info port of backup master or 0 if any exception occurs.
3166   */
3167  public int getBackupMasterInfoPort(final ServerName sn) {
3168    return activeMasterManager.getBackupMasterInfoPort(sn);
3169  }
3170
3171  /**
3172   * The set of loaded coprocessors is stored in a static set. Since it's statically allocated, it
3173   * does not require that HMaster's cpHost be initialized prior to accessing it.
3174   * @return a String representation of the set of names of the loaded coprocessors.
3175   */
3176  public static String getLoadedCoprocessors() {
3177    return CoprocessorHost.getLoadedCoprocessors().toString();
3178  }
3179
3180  /** Returns timestamp in millis when HMaster was started. */
3181  public long getMasterStartTime() {
3182    return startcode;
3183  }
3184
3185  /** Returns timestamp in millis when HMaster became the active master. */
3186  @Override
3187  public long getMasterActiveTime() {
3188    return masterActiveTime;
3189  }
3190
3191  /** Returns timestamp in millis when HMaster finished becoming the active master */
3192  public long getMasterFinishedInitializationTime() {
3193    return masterFinishedInitializationTime;
3194  }
3195
3196  public int getNumWALFiles() {
3197    return 0;
3198  }
3199
3200  public ProcedureStore getProcedureStore() {
3201    return procedureStore;
3202  }
3203
3204  public int getRegionServerInfoPort(final ServerName sn) {
3205    int port = this.serverManager.getInfoPort(sn);
3206    return port == 0
3207      ? conf.getInt(HConstants.REGIONSERVER_INFO_PORT, HConstants.DEFAULT_REGIONSERVER_INFOPORT)
3208      : port;
3209  }
3210
3211  @Override
3212  public String getRegionServerVersion(ServerName sn) {
3213    // Will return "0.0.0" if the server is not online to prevent move system region to unknown
3214    // version RS.
3215    return this.serverManager.getVersion(sn);
3216  }
3217
3218  @Override
3219  public void checkIfShouldMoveSystemRegionAsync() {
3220    assignmentManager.checkIfShouldMoveSystemRegionAsync();
3221  }
3222
3223  /** Returns array of coprocessor SimpleNames. */
3224  public String[] getMasterCoprocessors() {
3225    Set<String> masterCoprocessors = getMasterCoprocessorHost().getCoprocessors();
3226    return masterCoprocessors.toArray(new String[masterCoprocessors.size()]);
3227  }
3228
3229  @Override
3230  public void abort(String reason, Throwable cause) {
3231    if (!setAbortRequested() || isStopped()) {
3232      LOG.debug("Abort called but aborted={}, stopped={}", isAborted(), isStopped());
3233      return;
3234    }
3235    if (cpHost != null) {
3236      // HBASE-4014: dump a list of loaded coprocessors.
3237      LOG.error(HBaseMarkers.FATAL,
3238        "Master server abort: loaded coprocessors are: " + getLoadedCoprocessors());
3239    }
3240    String msg = "***** ABORTING master " + this + ": " + reason + " *****";
3241    if (cause != null) {
3242      LOG.error(HBaseMarkers.FATAL, msg, cause);
3243    } else {
3244      LOG.error(HBaseMarkers.FATAL, msg);
3245    }
3246
3247    try {
3248      stopMaster();
3249    } catch (IOException e) {
3250      LOG.error("Exception occurred while stopping master", e);
3251    }
3252  }
3253
3254  @Override
3255  public MasterCoprocessorHost getMasterCoprocessorHost() {
3256    return cpHost;
3257  }
3258
3259  @Override
3260  public MasterQuotaManager getMasterQuotaManager() {
3261    return quotaManager;
3262  }
3263
3264  @Override
3265  public ProcedureExecutor<MasterProcedureEnv> getMasterProcedureExecutor() {
3266    return procedureExecutor;
3267  }
3268
3269  @Override
3270  public ServerName getServerName() {
3271    return this.serverName;
3272  }
3273
3274  @Override
3275  public AssignmentManager getAssignmentManager() {
3276    return this.assignmentManager;
3277  }
3278
3279  @Override
3280  public CatalogJanitor getCatalogJanitor() {
3281    return this.catalogJanitorChore;
3282  }
3283
3284  public MemoryBoundedLogMessageBuffer getRegionServerFatalLogBuffer() {
3285    return rsFatals;
3286  }
3287
3288  public TaskGroup getStartupProgress() {
3289    return startupTaskGroup;
3290  }
3291
3292  /**
3293   * Shutdown the cluster. Master runs a coordinated stop of all RegionServers and then itself.
3294   */
3295  public void shutdown() throws IOException {
3296    TraceUtil.trace(() -> {
3297      if (cpHost != null) {
3298        cpHost.preShutdown();
3299      }
3300
3301      // Tell the servermanager cluster shutdown has been called. This makes it so when Master is
3302      // last running server, it'll stop itself. Next, we broadcast the cluster shutdown by setting
3303      // the cluster status as down. RegionServers will notice this change in state and will start
3304      // shutting themselves down. When last has exited, Master can go down.
3305      if (this.serverManager != null) {
3306        this.serverManager.shutdownCluster();
3307      }
3308      if (this.clusterStatusTracker != null) {
3309        try {
3310          this.clusterStatusTracker.setClusterDown();
3311        } catch (KeeperException e) {
3312          LOG.error("ZooKeeper exception trying to set cluster as down in ZK", e);
3313        }
3314      }
3315      // Stop the procedure executor. Will stop any ongoing assign, unassign, server crash etc.,
3316      // processing so we can go down.
3317      if (this.procedureExecutor != null) {
3318        this.procedureExecutor.stop();
3319      }
3320      // Shutdown our cluster connection. This will kill any hosted RPCs that might be going on;
3321      // this is what we want especially if the Master is in startup phase doing call outs to
3322      // hbase:meta, etc. when cluster is down. Without ths connection close, we'd have to wait on
3323      // the rpc to timeout.
3324      if (this.asyncClusterConnection != null) {
3325        this.asyncClusterConnection.close();
3326      }
3327    }, "HMaster.shutdown");
3328  }
3329
3330  public void stopMaster() throws IOException {
3331    if (cpHost != null) {
3332      cpHost.preStopMaster();
3333    }
3334    stop("Stopped by " + Thread.currentThread().getName());
3335  }
3336
3337  @Override
3338  public void stop(String msg) {
3339    if (!this.stopped) {
3340      LOG.info("***** STOPPING master '" + this + "' *****");
3341      this.stopped = true;
3342      LOG.info("STOPPED: " + msg);
3343      // Wakes run() if it is sleeping
3344      sleeper.skipSleepCycle();
3345      if (this.activeMasterManager != null) {
3346        this.activeMasterManager.stop();
3347      }
3348    }
3349  }
3350
3351  protected void checkServiceStarted() throws ServerNotRunningYetException {
3352    if (!serviceStarted) {
3353      throw new ServerNotRunningYetException("Server is not running yet");
3354    }
3355  }
3356
3357  void checkInitialized() throws PleaseHoldException, ServerNotRunningYetException,
3358    MasterNotRunningException, MasterStoppedException {
3359    checkServiceStarted();
3360    if (!isInitialized()) {
3361      throw new PleaseHoldException("Master is initializing");
3362    }
3363    if (isStopped()) {
3364      throw new MasterStoppedException();
3365    }
3366  }
3367
3368  /**
3369   * Report whether this master is currently the active master or not. If not active master, we are
3370   * parked on ZK waiting to become active. This method is used for testing.
3371   * @return true if active master, false if not.
3372   */
3373  @Override
3374  public boolean isActiveMaster() {
3375    return activeMaster;
3376  }
3377
3378  /**
3379   * Report whether this master has completed with its initialization and is ready. If ready, the
3380   * master is also the active master. A standby master is never ready. This method is used for
3381   * testing.
3382   * @return true if master is ready to go, false if not.
3383   */
3384  @Override
3385  public boolean isInitialized() {
3386    return initialized.isReady();
3387  }
3388
3389  /**
3390   * Report whether this master is started This method is used for testing.
3391   * @return true if master is ready to go, false if not.
3392   */
3393  public boolean isOnline() {
3394    return serviceStarted;
3395  }
3396
3397  /**
3398   * Report whether this master is in maintenance mode.
3399   * @return true if master is in maintenanceMode
3400   */
3401  @Override
3402  public boolean isInMaintenanceMode() {
3403    return maintenanceMode;
3404  }
3405
3406  public void setInitialized(boolean isInitialized) {
3407    procedureExecutor.getEnvironment().setEventReady(initialized, isInitialized);
3408  }
3409
3410  /**
3411   * Mainly used in procedure related tests, where we will restart ProcedureExecutor and
3412   * AssignmentManager, but we do not want to restart master(to speed up the test), so we need to
3413   * disable rpc for a while otherwise some critical rpc requests such as
3414   * reportRegionStateTransition could fail and cause region server to abort.
3415   */
3416  @RestrictedApi(explanation = "Should only be called in tests", link = "",
3417      allowedOnPath = ".*/src/test/.*")
3418  public void setServiceStarted(boolean started) {
3419    this.serviceStarted = started;
3420  }
3421
3422  @Override
3423  public ProcedureEvent<?> getInitializedEvent() {
3424    return initialized;
3425  }
3426
3427  /**
3428   * Compute the average load across all region servers. Currently, this uses a very naive
3429   * computation - just uses the number of regions being served, ignoring stats about number of
3430   * requests.
3431   * @return the average load
3432   */
3433  public double getAverageLoad() {
3434    if (this.assignmentManager == null) {
3435      return 0;
3436    }
3437
3438    RegionStates regionStates = this.assignmentManager.getRegionStates();
3439    if (regionStates == null) {
3440      return 0;
3441    }
3442    return regionStates.getAverageLoad();
3443  }
3444
3445  @Override
3446  public boolean registerService(Service instance) {
3447    /*
3448     * No stacking of instances is allowed for a single service name
3449     */
3450    Descriptors.ServiceDescriptor serviceDesc = instance.getDescriptorForType();
3451    String serviceName = CoprocessorRpcUtils.getServiceName(serviceDesc);
3452    if (coprocessorServiceHandlers.containsKey(serviceName)) {
3453      LOG.error("Coprocessor service " + serviceName
3454        + " already registered, rejecting request from " + instance);
3455      return false;
3456    }
3457
3458    coprocessorServiceHandlers.put(serviceName, instance);
3459    if (LOG.isDebugEnabled()) {
3460      LOG.debug("Registered master coprocessor service: service=" + serviceName);
3461    }
3462    return true;
3463  }
3464
3465  /**
3466   * Utility for constructing an instance of the passed HMaster class.
3467   * @return HMaster instance.
3468   */
3469  public static HMaster constructMaster(Class<? extends HMaster> masterClass,
3470    final Configuration conf) {
3471    try {
3472      Constructor<? extends HMaster> c = masterClass.getConstructor(Configuration.class);
3473      return c.newInstance(conf);
3474    } catch (Exception e) {
3475      Throwable error = e;
3476      if (
3477        e instanceof InvocationTargetException
3478          && ((InvocationTargetException) e).getTargetException() != null
3479      ) {
3480        error = ((InvocationTargetException) e).getTargetException();
3481      }
3482      throw new RuntimeException("Failed construction of Master: " + masterClass.toString() + ". ",
3483        error);
3484    }
3485  }
3486
3487  /**
3488   * @see org.apache.hadoop.hbase.master.HMasterCommandLine
3489   */
3490  public static void main(String[] args) {
3491    LOG.info("STARTING service " + HMaster.class.getSimpleName());
3492    VersionInfo.logVersion();
3493    new HMasterCommandLine(HMaster.class).doMain(args);
3494  }
3495
3496  public HFileCleaner getHFileCleaner() {
3497    return this.hfileCleaners.get(0);
3498  }
3499
3500  public List<HFileCleaner> getHFileCleaners() {
3501    return this.hfileCleaners;
3502  }
3503
3504  public LogCleaner getLogCleaner() {
3505    return this.logCleaner;
3506  }
3507
3508  /** Returns the underlying snapshot manager */
3509  @Override
3510  public SnapshotManager getSnapshotManager() {
3511    return this.snapshotManager;
3512  }
3513
3514  /** Returns the underlying MasterProcedureManagerHost */
3515  @Override
3516  public MasterProcedureManagerHost getMasterProcedureManagerHost() {
3517    return mpmHost;
3518  }
3519
3520  @Override
3521  public ClusterSchema getClusterSchema() {
3522    return this.clusterSchemaService;
3523  }
3524
3525  /**
3526   * Create a new Namespace.
3527   * @param namespaceDescriptor descriptor for new Namespace
3528   * @param nonceGroup          Identifier for the source of the request, a client or process.
3529   * @param nonce               A unique identifier for this operation from the client or process
3530   *                            identified by <code>nonceGroup</code> (the source must ensure each
3531   *                            operation gets a unique id).
3532   * @return procedure id
3533   */
3534  long createNamespace(final NamespaceDescriptor namespaceDescriptor, final long nonceGroup,
3535    final long nonce) throws IOException {
3536    checkInitialized();
3537
3538    TableName.isLegalNamespaceName(Bytes.toBytes(namespaceDescriptor.getName()));
3539
3540    return MasterProcedureUtil
3541      .submitProcedure(new MasterProcedureUtil.NonceProcedureRunnable(this, nonceGroup, nonce) {
3542        @Override
3543        protected void run() throws IOException {
3544          getMaster().getMasterCoprocessorHost().preCreateNamespace(namespaceDescriptor);
3545          // We need to wait for the procedure to potentially fail due to "prepare" sanity
3546          // checks. This will block only the beginning of the procedure. See HBASE-19953.
3547          ProcedurePrepareLatch latch = ProcedurePrepareLatch.createBlockingLatch();
3548          LOG.info(getClientIdAuditPrefix() + " creating " + namespaceDescriptor);
3549          // Execute the operation synchronously - wait for the operation to complete before
3550          // continuing.
3551          setProcId(getClusterSchema().createNamespace(namespaceDescriptor, getNonceKey(), latch));
3552          latch.await();
3553          getMaster().getMasterCoprocessorHost().postCreateNamespace(namespaceDescriptor);
3554        }
3555
3556        @Override
3557        protected String getDescription() {
3558          return "CreateNamespaceProcedure";
3559        }
3560      });
3561  }
3562
3563  /**
3564   * Modify an existing Namespace.
3565   * @param nonceGroup Identifier for the source of the request, a client or process.
3566   * @param nonce      A unique identifier for this operation from the client or process identified
3567   *                   by <code>nonceGroup</code> (the source must ensure each operation gets a
3568   *                   unique id).
3569   * @return procedure id
3570   */
3571  long modifyNamespace(final NamespaceDescriptor newNsDescriptor, final long nonceGroup,
3572    final long nonce) throws IOException {
3573    checkInitialized();
3574
3575    TableName.isLegalNamespaceName(Bytes.toBytes(newNsDescriptor.getName()));
3576
3577    return MasterProcedureUtil
3578      .submitProcedure(new MasterProcedureUtil.NonceProcedureRunnable(this, nonceGroup, nonce) {
3579        @Override
3580        protected void run() throws IOException {
3581          NamespaceDescriptor oldNsDescriptor = getNamespace(newNsDescriptor.getName());
3582          getMaster().getMasterCoprocessorHost().preModifyNamespace(oldNsDescriptor,
3583            newNsDescriptor);
3584          // We need to wait for the procedure to potentially fail due to "prepare" sanity
3585          // checks. This will block only the beginning of the procedure. See HBASE-19953.
3586          ProcedurePrepareLatch latch = ProcedurePrepareLatch.createBlockingLatch();
3587          LOG.info(getClientIdAuditPrefix() + " modify " + newNsDescriptor);
3588          // Execute the operation synchronously - wait for the operation to complete before
3589          // continuing.
3590          setProcId(getClusterSchema().modifyNamespace(newNsDescriptor, getNonceKey(), latch));
3591          latch.await();
3592          getMaster().getMasterCoprocessorHost().postModifyNamespace(oldNsDescriptor,
3593            newNsDescriptor);
3594        }
3595
3596        @Override
3597        protected String getDescription() {
3598          return "ModifyNamespaceProcedure";
3599        }
3600      });
3601  }
3602
3603  /**
3604   * Delete an existing Namespace. Only empty Namespaces (no tables) can be removed.
3605   * @param nonceGroup Identifier for the source of the request, a client or process.
3606   * @param nonce      A unique identifier for this operation from the client or process identified
3607   *                   by <code>nonceGroup</code> (the source must ensure each operation gets a
3608   *                   unique id).
3609   * @return procedure id
3610   */
3611  long deleteNamespace(final String name, final long nonceGroup, final long nonce)
3612    throws IOException {
3613    checkInitialized();
3614
3615    return MasterProcedureUtil
3616      .submitProcedure(new MasterProcedureUtil.NonceProcedureRunnable(this, nonceGroup, nonce) {
3617        @Override
3618        protected void run() throws IOException {
3619          getMaster().getMasterCoprocessorHost().preDeleteNamespace(name);
3620          LOG.info(getClientIdAuditPrefix() + " delete " + name);
3621          // Execute the operation synchronously - wait for the operation to complete before
3622          // continuing.
3623          //
3624          // We need to wait for the procedure to potentially fail due to "prepare" sanity
3625          // checks. This will block only the beginning of the procedure. See HBASE-19953.
3626          ProcedurePrepareLatch latch = ProcedurePrepareLatch.createBlockingLatch();
3627          setProcId(submitProcedure(
3628            new DeleteNamespaceProcedure(procedureExecutor.getEnvironment(), name, latch)));
3629          latch.await();
3630          // Will not be invoked in the face of Exception thrown by the Procedure's execution
3631          getMaster().getMasterCoprocessorHost().postDeleteNamespace(name);
3632        }
3633
3634        @Override
3635        protected String getDescription() {
3636          return "DeleteNamespaceProcedure";
3637        }
3638      });
3639  }
3640
3641  /**
3642   * Get a Namespace
3643   * @param name Name of the Namespace
3644   * @return Namespace descriptor for <code>name</code>
3645   */
3646  NamespaceDescriptor getNamespace(String name) throws IOException {
3647    checkInitialized();
3648    if (this.cpHost != null) this.cpHost.preGetNamespaceDescriptor(name);
3649    NamespaceDescriptor nsd = this.clusterSchemaService.getNamespace(name);
3650    if (this.cpHost != null) this.cpHost.postGetNamespaceDescriptor(nsd);
3651    return nsd;
3652  }
3653
3654  /**
3655   * Get all Namespaces
3656   * @return All Namespace descriptors
3657   */
3658  List<NamespaceDescriptor> getNamespaces() throws IOException {
3659    checkInitialized();
3660    final List<NamespaceDescriptor> nsds = new ArrayList<>();
3661    if (cpHost != null) {
3662      cpHost.preListNamespaceDescriptors(nsds);
3663    }
3664    nsds.addAll(this.clusterSchemaService.getNamespaces());
3665    if (this.cpHost != null) {
3666      this.cpHost.postListNamespaceDescriptors(nsds);
3667    }
3668    return nsds;
3669  }
3670
3671  /**
3672   * List namespace names
3673   * @return All namespace names
3674   */
3675  public List<String> listNamespaces() throws IOException {
3676    checkInitialized();
3677    List<String> namespaces = new ArrayList<>();
3678    if (cpHost != null) {
3679      cpHost.preListNamespaces(namespaces);
3680    }
3681    for (NamespaceDescriptor namespace : clusterSchemaService.getNamespaces()) {
3682      namespaces.add(namespace.getName());
3683    }
3684    if (cpHost != null) {
3685      cpHost.postListNamespaces(namespaces);
3686    }
3687    return namespaces;
3688  }
3689
3690  @Override
3691  public List<TableName> listTableNamesByNamespace(String name) throws IOException {
3692    checkInitialized();
3693    return listTableNames(name, null, true);
3694  }
3695
3696  @Override
3697  public List<TableDescriptor> listTableDescriptorsByNamespace(String name) throws IOException {
3698    checkInitialized();
3699    return listTableDescriptors(name, null, null, true);
3700  }
3701
3702  @Override
3703  public boolean abortProcedure(final long procId, final boolean mayInterruptIfRunning)
3704    throws IOException {
3705    if (cpHost != null) {
3706      cpHost.preAbortProcedure(this.procedureExecutor, procId);
3707    }
3708
3709    final boolean result = this.procedureExecutor.abort(procId, mayInterruptIfRunning);
3710
3711    if (cpHost != null) {
3712      cpHost.postAbortProcedure();
3713    }
3714
3715    return result;
3716  }
3717
3718  @Override
3719  public List<Procedure<?>> getProcedures() throws IOException {
3720    if (cpHost != null) {
3721      cpHost.preGetProcedures();
3722    }
3723
3724    @SuppressWarnings({ "unchecked", "rawtypes" })
3725    List<Procedure<?>> procList = (List) this.procedureExecutor.getProcedures();
3726
3727    if (cpHost != null) {
3728      cpHost.postGetProcedures(procList);
3729    }
3730
3731    return procList;
3732  }
3733
3734  @Override
3735  public List<LockedResource> getLocks() throws IOException {
3736    if (cpHost != null) {
3737      cpHost.preGetLocks();
3738    }
3739
3740    MasterProcedureScheduler procedureScheduler =
3741      procedureExecutor.getEnvironment().getProcedureScheduler();
3742
3743    final List<LockedResource> lockedResources = procedureScheduler.getLocks();
3744
3745    if (cpHost != null) {
3746      cpHost.postGetLocks(lockedResources);
3747    }
3748
3749    return lockedResources;
3750  }
3751
3752  /**
3753   * Returns the list of table descriptors that match the specified request
3754   * @param namespace        the namespace to query, or null if querying for all
3755   * @param regex            The regular expression to match against, or null if querying for all
3756   * @param tableNameList    the list of table names, or null if querying for all
3757   * @param includeSysTables False to match only against userspace tables
3758   * @return the list of table descriptors
3759   */
3760  public List<TableDescriptor> listTableDescriptors(final String namespace, final String regex,
3761    final List<TableName> tableNameList, final boolean includeSysTables) throws IOException {
3762    List<TableDescriptor> htds = new ArrayList<>();
3763    if (cpHost != null) {
3764      cpHost.preGetTableDescriptors(tableNameList, htds, regex);
3765    }
3766    htds = getTableDescriptors(htds, namespace, regex, tableNameList, includeSysTables);
3767    if (cpHost != null) {
3768      cpHost.postGetTableDescriptors(tableNameList, htds, regex);
3769    }
3770    return htds;
3771  }
3772
3773  /**
3774   * Returns the list of table names that match the specified request
3775   * @param regex            The regular expression to match against, or null if querying for all
3776   * @param namespace        the namespace to query, or null if querying for all
3777   * @param includeSysTables False to match only against userspace tables
3778   * @return the list of table names
3779   */
3780  public List<TableName> listTableNames(final String namespace, final String regex,
3781    final boolean includeSysTables) throws IOException {
3782    List<TableDescriptor> htds = new ArrayList<>();
3783    if (cpHost != null) {
3784      cpHost.preGetTableNames(htds, regex);
3785    }
3786    htds = getTableDescriptors(htds, namespace, regex, null, includeSysTables);
3787    if (cpHost != null) {
3788      cpHost.postGetTableNames(htds, regex);
3789    }
3790    List<TableName> result = new ArrayList<>(htds.size());
3791    for (TableDescriptor htd : htds)
3792      result.add(htd.getTableName());
3793    return result;
3794  }
3795
3796  /**
3797   * Return a list of table table descriptors after applying any provided filter parameters. Note
3798   * that the user-facing description of this filter logic is presented on the class-level javadoc
3799   * of {@link NormalizeTableFilterParams}.
3800   */
3801  private List<TableDescriptor> getTableDescriptors(final List<TableDescriptor> htds,
3802    final String namespace, final String regex, final List<TableName> tableNameList,
3803    final boolean includeSysTables) throws IOException {
3804    if (tableNameList == null || tableNameList.isEmpty()) {
3805      // request for all TableDescriptors
3806      Collection<TableDescriptor> allHtds;
3807      if (namespace != null && namespace.length() > 0) {
3808        // Do a check on the namespace existence. Will fail if does not exist.
3809        this.clusterSchemaService.getNamespace(namespace);
3810        allHtds = tableDescriptors.getByNamespace(namespace).values();
3811      } else {
3812        allHtds = tableDescriptors.getAll().values();
3813      }
3814      for (TableDescriptor desc : allHtds) {
3815        if (
3816          tableStateManager.isTablePresent(desc.getTableName())
3817            && (includeSysTables || !desc.getTableName().isSystemTable())
3818        ) {
3819          htds.add(desc);
3820        }
3821      }
3822    } else {
3823      for (TableName s : tableNameList) {
3824        if (tableStateManager.isTablePresent(s)) {
3825          TableDescriptor desc = tableDescriptors.get(s);
3826          if (desc != null) {
3827            htds.add(desc);
3828          }
3829        }
3830      }
3831    }
3832
3833    // Retains only those matched by regular expression.
3834    if (regex != null) filterTablesByRegex(htds, Pattern.compile(regex));
3835    return htds;
3836  }
3837
3838  /**
3839   * Removes the table descriptors that don't match the pattern.
3840   * @param descriptors list of table descriptors to filter
3841   * @param pattern     the regex to use
3842   */
3843  private static void filterTablesByRegex(final Collection<TableDescriptor> descriptors,
3844    final Pattern pattern) {
3845    final String defaultNS = NamespaceDescriptor.DEFAULT_NAMESPACE_NAME_STR;
3846    Iterator<TableDescriptor> itr = descriptors.iterator();
3847    while (itr.hasNext()) {
3848      TableDescriptor htd = itr.next();
3849      String tableName = htd.getTableName().getNameAsString();
3850      boolean matched = pattern.matcher(tableName).matches();
3851      if (!matched && htd.getTableName().getNamespaceAsString().equals(defaultNS)) {
3852        matched = pattern.matcher(defaultNS + TableName.NAMESPACE_DELIM + tableName).matches();
3853      }
3854      if (!matched) {
3855        itr.remove();
3856      }
3857    }
3858  }
3859
3860  @Override
3861  public long getLastMajorCompactionTimestamp(TableName table) throws IOException {
3862    return getClusterMetrics(EnumSet.of(Option.LIVE_SERVERS))
3863      .getLastMajorCompactionTimestamp(table);
3864  }
3865
3866  @Override
3867  public long getLastMajorCompactionTimestampForRegion(byte[] regionName) throws IOException {
3868    return getClusterMetrics(EnumSet.of(Option.LIVE_SERVERS))
3869      .getLastMajorCompactionTimestamp(regionName);
3870  }
3871
3872  /**
3873   * Gets the mob file compaction state for a specific table. Whether all the mob files are selected
3874   * is known during the compaction execution, but the statistic is done just before compaction
3875   * starts, it is hard to know the compaction type at that time, so the rough statistics are chosen
3876   * for the mob file compaction. Only two compaction states are available,
3877   * CompactionState.MAJOR_AND_MINOR and CompactionState.NONE.
3878   * @param tableName The current table name.
3879   * @return If a given table is in mob file compaction now.
3880   */
3881  public GetRegionInfoResponse.CompactionState getMobCompactionState(TableName tableName) {
3882    AtomicInteger compactionsCount = mobCompactionStates.get(tableName);
3883    if (compactionsCount != null && compactionsCount.get() != 0) {
3884      return GetRegionInfoResponse.CompactionState.MAJOR_AND_MINOR;
3885    }
3886    return GetRegionInfoResponse.CompactionState.NONE;
3887  }
3888
3889  public void reportMobCompactionStart(TableName tableName) throws IOException {
3890    IdLock.Entry lockEntry = null;
3891    try {
3892      lockEntry = mobCompactionLock.getLockEntry(tableName.hashCode());
3893      AtomicInteger compactionsCount = mobCompactionStates.get(tableName);
3894      if (compactionsCount == null) {
3895        compactionsCount = new AtomicInteger(0);
3896        mobCompactionStates.put(tableName, compactionsCount);
3897      }
3898      compactionsCount.incrementAndGet();
3899    } finally {
3900      if (lockEntry != null) {
3901        mobCompactionLock.releaseLockEntry(lockEntry);
3902      }
3903    }
3904  }
3905
3906  public void reportMobCompactionEnd(TableName tableName) throws IOException {
3907    IdLock.Entry lockEntry = null;
3908    try {
3909      lockEntry = mobCompactionLock.getLockEntry(tableName.hashCode());
3910      AtomicInteger compactionsCount = mobCompactionStates.get(tableName);
3911      if (compactionsCount != null) {
3912        int count = compactionsCount.decrementAndGet();
3913        // remove the entry if the count is 0.
3914        if (count == 0) {
3915          mobCompactionStates.remove(tableName);
3916        }
3917      }
3918    } finally {
3919      if (lockEntry != null) {
3920        mobCompactionLock.releaseLockEntry(lockEntry);
3921      }
3922    }
3923  }
3924
3925  /**
3926   * Queries the state of the {@link LoadBalancerStateStore}. If the balancer is not initialized,
3927   * false is returned.
3928   * @return The state of the load balancer, or false if the load balancer isn't defined.
3929   */
3930  public boolean isBalancerOn() {
3931    return !isInMaintenanceMode() && loadBalancerStateStore != null && loadBalancerStateStore.get();
3932  }
3933
3934  /**
3935   * Queries the state of the {@link RegionNormalizerStateStore}. If it's not initialized, false is
3936   * returned.
3937   */
3938  public boolean isNormalizerOn() {
3939    return !isInMaintenanceMode() && getRegionNormalizerManager().isNormalizerOn();
3940  }
3941
3942  /**
3943   * Queries the state of the {@link SplitOrMergeStateStore}. If it is not initialized, false is
3944   * returned. If switchType is illegal, false will return.
3945   * @param switchType see {@link org.apache.hadoop.hbase.client.MasterSwitchType}
3946   * @return The state of the switch
3947   */
3948  @Override
3949  public boolean isSplitOrMergeEnabled(MasterSwitchType switchType) {
3950    return !isInMaintenanceMode() && splitOrMergeStateStore != null
3951      && splitOrMergeStateStore.isSplitOrMergeEnabled(switchType);
3952  }
3953
3954  /**
3955   * Fetch the configured {@link LoadBalancer} class name. If none is set, a default is returned.
3956   * <p/>
3957   * Notice that, the base load balancer will always be {@link RSGroupBasedLoadBalancer} now, so
3958   * this method will return the balancer used inside each rs group.
3959   * @return The name of the {@link LoadBalancer} in use.
3960   */
3961  public String getLoadBalancerClassName() {
3962    return conf.get(HConstants.HBASE_MASTER_LOADBALANCER_CLASS,
3963      LoadBalancerFactory.getDefaultLoadBalancerClass().getName());
3964  }
3965
3966  public SplitOrMergeStateStore getSplitOrMergeStateStore() {
3967    return splitOrMergeStateStore;
3968  }
3969
3970  @Override
3971  public RSGroupBasedLoadBalancer getLoadBalancer() {
3972    return balancer;
3973  }
3974
3975  @Override
3976  public FavoredNodesManager getFavoredNodesManager() {
3977    return balancer.getFavoredNodesManager();
3978  }
3979
3980  private long executePeerProcedure(AbstractPeerProcedure<?> procedure) throws IOException {
3981    if (!isReplicationPeerModificationEnabled()) {
3982      throw new IOException("Replication peer modification disabled");
3983    }
3984    long procId = procedureExecutor.submitProcedure(procedure);
3985    procedure.getLatch().await();
3986    return procId;
3987  }
3988
3989  @Override
3990  public long addReplicationPeer(String peerId, ReplicationPeerConfig peerConfig, boolean enabled)
3991    throws ReplicationException, IOException {
3992    LOG.info(getClientIdAuditPrefix() + " creating replication peer, id=" + peerId + ", config="
3993      + peerConfig + ", state=" + (enabled ? "ENABLED" : "DISABLED"));
3994    return executePeerProcedure(new AddPeerProcedure(peerId, peerConfig, enabled));
3995  }
3996
3997  @Override
3998  public long removeReplicationPeer(String peerId) throws ReplicationException, IOException {
3999    LOG.info(getClientIdAuditPrefix() + " removing replication peer, id=" + peerId);
4000    return executePeerProcedure(new RemovePeerProcedure(peerId));
4001  }
4002
4003  @Override
4004  public long enableReplicationPeer(String peerId) throws ReplicationException, IOException {
4005    LOG.info(getClientIdAuditPrefix() + " enable replication peer, id=" + peerId);
4006    return executePeerProcedure(new EnablePeerProcedure(peerId));
4007  }
4008
4009  @Override
4010  public long disableReplicationPeer(String peerId) throws ReplicationException, IOException {
4011    LOG.info(getClientIdAuditPrefix() + " disable replication peer, id=" + peerId);
4012    return executePeerProcedure(new DisablePeerProcedure(peerId));
4013  }
4014
4015  @Override
4016  public ReplicationPeerConfig getReplicationPeerConfig(String peerId)
4017    throws ReplicationException, IOException {
4018    if (cpHost != null) {
4019      cpHost.preGetReplicationPeerConfig(peerId);
4020    }
4021    LOG.info(getClientIdAuditPrefix() + " get replication peer config, id=" + peerId);
4022    ReplicationPeerConfig peerConfig = this.replicationPeerManager.getPeerConfig(peerId)
4023      .orElseThrow(() -> new ReplicationPeerNotFoundException(peerId));
4024    if (cpHost != null) {
4025      cpHost.postGetReplicationPeerConfig(peerId);
4026    }
4027    return peerConfig;
4028  }
4029
4030  @Override
4031  public long updateReplicationPeerConfig(String peerId, ReplicationPeerConfig peerConfig)
4032    throws ReplicationException, IOException {
4033    LOG.info(getClientIdAuditPrefix() + " update replication peer config, id=" + peerId
4034      + ", config=" + peerConfig);
4035    return executePeerProcedure(new UpdatePeerConfigProcedure(peerId, peerConfig));
4036  }
4037
4038  @Override
4039  public List<ReplicationPeerDescription> listReplicationPeers(String regex)
4040    throws ReplicationException, IOException {
4041    if (cpHost != null) {
4042      cpHost.preListReplicationPeers(regex);
4043    }
4044    LOG.debug("{} list replication peers, regex={}", getClientIdAuditPrefix(), regex);
4045    Pattern pattern = regex == null ? null : Pattern.compile(regex);
4046    List<ReplicationPeerDescription> peers = this.replicationPeerManager.listPeers(pattern);
4047    if (cpHost != null) {
4048      cpHost.postListReplicationPeers(regex);
4049    }
4050    return peers;
4051  }
4052
4053  @Override
4054  public long transitReplicationPeerSyncReplicationState(String peerId, SyncReplicationState state)
4055    throws ReplicationException, IOException {
4056    LOG.info(
4057      getClientIdAuditPrefix()
4058        + " transit current cluster state to {} in a synchronous replication peer id={}",
4059      state, peerId);
4060    return executePeerProcedure(new TransitPeerSyncReplicationStateProcedure(peerId, state));
4061  }
4062
4063  @Override
4064  public boolean replicationPeerModificationSwitch(boolean on) throws IOException {
4065    return replicationPeerModificationStateStore.set(on);
4066  }
4067
4068  @Override
4069  public boolean isReplicationPeerModificationEnabled() {
4070    return replicationPeerModificationStateStore.get();
4071  }
4072
4073  /**
4074   * Mark region server(s) as decommissioned (previously called 'draining') to prevent additional
4075   * regions from getting assigned to them. Also unload the regions on the servers asynchronously.0
4076   * @param servers Region servers to decommission.
4077   */
4078  public void decommissionRegionServers(final List<ServerName> servers, final boolean offload)
4079    throws IOException {
4080    List<ServerName> serversAdded = new ArrayList<>(servers.size());
4081    // Place the decommission marker first.
4082    String parentZnode = getZooKeeper().getZNodePaths().drainingZNode;
4083    for (ServerName server : servers) {
4084      try {
4085        String node = ZNodePaths.joinZNode(parentZnode, server.getServerName());
4086        ZKUtil.createAndFailSilent(getZooKeeper(), node);
4087      } catch (KeeperException ke) {
4088        throw new HBaseIOException(
4089          this.zooKeeper.prefix("Unable to decommission '" + server.getServerName() + "'."), ke);
4090      }
4091      if (this.serverManager.addServerToDrainList(server)) {
4092        serversAdded.add(server);
4093      }
4094    }
4095    // Move the regions off the decommissioned servers.
4096    if (offload) {
4097      final List<ServerName> destServers = this.serverManager.createDestinationServersList();
4098      for (ServerName server : serversAdded) {
4099        final List<RegionInfo> regionsOnServer = this.assignmentManager.getRegionsOnServer(server);
4100        for (RegionInfo hri : regionsOnServer) {
4101          ServerName dest = balancer.randomAssignment(hri, destServers);
4102          if (dest == null) {
4103            throw new HBaseIOException("Unable to determine a plan to move " + hri);
4104          }
4105          RegionPlan rp = new RegionPlan(hri, server, dest);
4106          this.assignmentManager.moveAsync(rp);
4107        }
4108      }
4109    }
4110  }
4111
4112  /**
4113   * List region servers marked as decommissioned (previously called 'draining') to not get regions
4114   * assigned to them.
4115   * @return List of decommissioned servers.
4116   */
4117  public List<ServerName> listDecommissionedRegionServers() {
4118    return this.serverManager.getDrainingServersList();
4119  }
4120
4121  /**
4122   * Remove decommission marker (previously called 'draining') from a region server to allow regions
4123   * assignments. Load regions onto the server asynchronously if a list of regions is given
4124   * @param server Region server to remove decommission marker from.
4125   */
4126  public void recommissionRegionServer(final ServerName server,
4127    final List<byte[]> encodedRegionNames) throws IOException {
4128    // Remove the server from decommissioned (draining) server list.
4129    String parentZnode = getZooKeeper().getZNodePaths().drainingZNode;
4130    String node = ZNodePaths.joinZNode(parentZnode, server.getServerName());
4131    try {
4132      ZKUtil.deleteNodeFailSilent(getZooKeeper(), node);
4133    } catch (KeeperException ke) {
4134      throw new HBaseIOException(
4135        this.zooKeeper.prefix("Unable to recommission '" + server.getServerName() + "'."), ke);
4136    }
4137    this.serverManager.removeServerFromDrainList(server);
4138
4139    // Load the regions onto the server if we are given a list of regions.
4140    if (encodedRegionNames == null || encodedRegionNames.isEmpty()) {
4141      return;
4142    }
4143    if (!this.serverManager.isServerOnline(server)) {
4144      return;
4145    }
4146    for (byte[] encodedRegionName : encodedRegionNames) {
4147      RegionState regionState =
4148        assignmentManager.getRegionStates().getRegionState(Bytes.toString(encodedRegionName));
4149      if (regionState == null) {
4150        LOG.warn("Unknown region " + Bytes.toStringBinary(encodedRegionName));
4151        continue;
4152      }
4153      RegionInfo hri = regionState.getRegion();
4154      if (server.equals(regionState.getServerName())) {
4155        LOG.info("Skipping move of region " + hri.getRegionNameAsString()
4156          + " because region already assigned to the same server " + server + ".");
4157        continue;
4158      }
4159      RegionPlan rp = new RegionPlan(hri, regionState.getServerName(), server);
4160      this.assignmentManager.moveAsync(rp);
4161    }
4162  }
4163
4164  @Override
4165  public LockManager getLockManager() {
4166    return lockManager;
4167  }
4168
4169  public QuotaObserverChore getQuotaObserverChore() {
4170    return this.quotaObserverChore;
4171  }
4172
4173  public SpaceQuotaSnapshotNotifier getSpaceQuotaSnapshotNotifier() {
4174    return this.spaceQuotaSnapshotNotifier;
4175  }
4176
4177  @SuppressWarnings("unchecked")
4178  private RemoteProcedure<MasterProcedureEnv, ?> getRemoteProcedure(long procId) {
4179    Procedure<?> procedure = procedureExecutor.getProcedure(procId);
4180    if (procedure == null) {
4181      return null;
4182    }
4183    assert procedure instanceof RemoteProcedure;
4184    return (RemoteProcedure<MasterProcedureEnv, ?>) procedure;
4185  }
4186
4187  public void remoteProcedureCompleted(long procId) {
4188    LOG.debug("Remote procedure done, pid={}", procId);
4189    RemoteProcedure<MasterProcedureEnv, ?> procedure = getRemoteProcedure(procId);
4190    if (procedure != null) {
4191      procedure.remoteOperationCompleted(procedureExecutor.getEnvironment());
4192    }
4193  }
4194
4195  public void remoteProcedureFailed(long procId, RemoteProcedureException error) {
4196    LOG.debug("Remote procedure failed, pid={}", procId, error);
4197    RemoteProcedure<MasterProcedureEnv, ?> procedure = getRemoteProcedure(procId);
4198    if (procedure != null) {
4199      procedure.remoteOperationFailed(procedureExecutor.getEnvironment(), error);
4200    }
4201  }
4202
4203  /**
4204   * Reopen regions provided in the argument
4205   * @param tableName   The current table name
4206   * @param regionNames The region names of the regions to reopen
4207   * @param nonceGroup  Identifier for the source of the request, a client or process
4208   * @param nonce       A unique identifier for this operation from the client or process identified
4209   *                    by <code>nonceGroup</code> (the source must ensure each operation gets a
4210   *                    unique id).
4211   * @return procedure Id
4212   * @throws IOException if reopening region fails while running procedure
4213   */
4214  long reopenRegions(final TableName tableName, final List<byte[]> regionNames,
4215    final long nonceGroup, final long nonce) throws IOException {
4216
4217    return MasterProcedureUtil
4218      .submitProcedure(new MasterProcedureUtil.NonceProcedureRunnable(this, nonceGroup, nonce) {
4219
4220        @Override
4221        protected void run() throws IOException {
4222          submitProcedure(new ReopenTableRegionsProcedure(tableName, regionNames));
4223        }
4224
4225        @Override
4226        protected String getDescription() {
4227          return "ReopenTableRegionsProcedure";
4228        }
4229
4230      });
4231
4232  }
4233
4234  @Override
4235  public ReplicationPeerManager getReplicationPeerManager() {
4236    return replicationPeerManager;
4237  }
4238
4239  @Override
4240  public ReplicationLogCleanerBarrier getReplicationLogCleanerBarrier() {
4241    return replicationLogCleanerBarrier;
4242  }
4243
4244  @Override
4245  public Semaphore getSyncReplicationPeerLock() {
4246    return syncReplicationPeerLock;
4247  }
4248
4249  public HashMap<String, List<Pair<ServerName, ReplicationLoadSource>>>
4250    getReplicationLoad(ServerName[] serverNames) {
4251    List<ReplicationPeerDescription> peerList = this.getReplicationPeerManager().listPeers(null);
4252    if (peerList == null) {
4253      return null;
4254    }
4255    HashMap<String, List<Pair<ServerName, ReplicationLoadSource>>> replicationLoadSourceMap =
4256      new HashMap<>(peerList.size());
4257    peerList.stream()
4258      .forEach(peer -> replicationLoadSourceMap.put(peer.getPeerId(), new ArrayList<>()));
4259    for (ServerName serverName : serverNames) {
4260      List<ReplicationLoadSource> replicationLoadSources =
4261        getServerManager().getLoad(serverName).getReplicationLoadSourceList();
4262      for (ReplicationLoadSource replicationLoadSource : replicationLoadSources) {
4263        List<Pair<ServerName, ReplicationLoadSource>> replicationLoadSourceList =
4264          replicationLoadSourceMap.get(replicationLoadSource.getPeerID());
4265        if (replicationLoadSourceList == null) {
4266          LOG.debug("{} does not exist, but it exists "
4267            + "in znode(/hbase/replication/rs). when the rs restarts, peerId is deleted, so "
4268            + "we just need to ignore it", replicationLoadSource.getPeerID());
4269          continue;
4270        }
4271        replicationLoadSourceList.add(new Pair<>(serverName, replicationLoadSource));
4272      }
4273    }
4274    for (List<Pair<ServerName, ReplicationLoadSource>> loads : replicationLoadSourceMap.values()) {
4275      if (loads.size() > 0) {
4276        loads.sort(Comparator.comparingLong(load -> (-1) * load.getSecond().getReplicationLag()));
4277      }
4278    }
4279    return replicationLoadSourceMap;
4280  }
4281
4282  /**
4283   * This method modifies the master's configuration in order to inject replication-related features
4284   */
4285  @InterfaceAudience.Private
4286  public static void decorateMasterConfiguration(Configuration conf) {
4287    String plugins = conf.get(HBASE_MASTER_LOGCLEANER_PLUGINS);
4288    String cleanerClass = ReplicationLogCleaner.class.getCanonicalName();
4289    if (plugins == null || !plugins.contains(cleanerClass)) {
4290      conf.set(HBASE_MASTER_LOGCLEANER_PLUGINS, plugins + "," + cleanerClass);
4291    }
4292    if (ReplicationUtils.isReplicationForBulkLoadDataEnabled(conf)) {
4293      plugins = conf.get(HFileCleaner.MASTER_HFILE_CLEANER_PLUGINS);
4294      cleanerClass = ReplicationHFileCleaner.class.getCanonicalName();
4295      if (!plugins.contains(cleanerClass)) {
4296        conf.set(HFileCleaner.MASTER_HFILE_CLEANER_PLUGINS, plugins + "," + cleanerClass);
4297      }
4298    }
4299  }
4300
4301  public SnapshotQuotaObserverChore getSnapshotQuotaObserverChore() {
4302    return this.snapshotQuotaChore;
4303  }
4304
4305  public ActiveMasterManager getActiveMasterManager() {
4306    return activeMasterManager;
4307  }
4308
4309  @Override
4310  public SyncReplicationReplayWALManager getSyncReplicationReplayWALManager() {
4311    return this.syncReplicationReplayWALManager;
4312  }
4313
4314  @Override
4315  public HbckChore getHbckChore() {
4316    return this.hbckChore;
4317  }
4318
4319  @Override
4320  public void runReplicationBarrierCleaner() {
4321    ReplicationBarrierCleaner rbc = this.replicationBarrierCleaner;
4322    if (rbc != null) {
4323      rbc.chore();
4324    }
4325  }
4326
4327  @Override
4328  public RSGroupInfoManager getRSGroupInfoManager() {
4329    return rsGroupInfoManager;
4330  }
4331
4332  /**
4333   * Get the compaction state of the table
4334   * @param tableName The table name
4335   * @return CompactionState Compaction state of the table
4336   */
4337  public CompactionState getCompactionState(final TableName tableName) {
4338    CompactionState compactionState = CompactionState.NONE;
4339    try {
4340      List<RegionInfo> regions = assignmentManager.getRegionStates().getRegionsOfTable(tableName);
4341      for (RegionInfo regionInfo : regions) {
4342        ServerName serverName =
4343          assignmentManager.getRegionStates().getRegionServerOfRegion(regionInfo);
4344        if (serverName == null) {
4345          continue;
4346        }
4347        ServerMetrics sl = serverManager.getLoad(serverName);
4348        if (sl == null) {
4349          continue;
4350        }
4351        RegionMetrics regionMetrics = sl.getRegionMetrics().get(regionInfo.getRegionName());
4352        if (regionMetrics == null) {
4353          LOG.warn("Can not get compaction details for the region: {} , it may be not online.",
4354            regionInfo.getRegionNameAsString());
4355          continue;
4356        }
4357        if (regionMetrics.getCompactionState() == CompactionState.MAJOR) {
4358          if (compactionState == CompactionState.MINOR) {
4359            compactionState = CompactionState.MAJOR_AND_MINOR;
4360          } else {
4361            compactionState = CompactionState.MAJOR;
4362          }
4363        } else if (regionMetrics.getCompactionState() == CompactionState.MINOR) {
4364          if (compactionState == CompactionState.MAJOR) {
4365            compactionState = CompactionState.MAJOR_AND_MINOR;
4366          } else {
4367            compactionState = CompactionState.MINOR;
4368          }
4369        }
4370      }
4371    } catch (Exception e) {
4372      compactionState = null;
4373      LOG.error("Exception when get compaction state for " + tableName.getNameAsString(), e);
4374    }
4375    return compactionState;
4376  }
4377
4378  @Override
4379  public MetaLocationSyncer getMetaLocationSyncer() {
4380    return metaLocationSyncer;
4381  }
4382
4383  @RestrictedApi(explanation = "Should only be called in tests", link = "",
4384      allowedOnPath = ".*/src/test/.*")
4385  public MasterRegion getMasterRegion() {
4386    return masterRegion;
4387  }
4388
4389  @Override
4390  public void onConfigurationChange(Configuration newConf) {
4391    try {
4392      Superusers.initialize(newConf);
4393    } catch (IOException e) {
4394      LOG.warn("Failed to initialize SuperUsers on reloading of the configuration");
4395    }
4396    // append the quotas observer back to the master coprocessor key
4397    setQuotasObserver(newConf);
4398    // update region server coprocessor if the configuration has changed.
4399    if (
4400      CoprocessorConfigurationUtil.checkConfigurationChange(getConfiguration(), newConf,
4401        CoprocessorHost.MASTER_COPROCESSOR_CONF_KEY) && !maintenanceMode
4402    ) {
4403      LOG.info("Update the master coprocessor(s) because the configuration has changed");
4404      initializeCoprocessorHost(newConf);
4405    }
4406  }
4407
4408  @Override
4409  protected NamedQueueRecorder createNamedQueueRecord() {
4410    final boolean isBalancerDecisionRecording =
4411      conf.getBoolean(BaseLoadBalancer.BALANCER_DECISION_BUFFER_ENABLED,
4412        BaseLoadBalancer.DEFAULT_BALANCER_DECISION_BUFFER_ENABLED);
4413    final boolean isBalancerRejectionRecording =
4414      conf.getBoolean(BaseLoadBalancer.BALANCER_REJECTION_BUFFER_ENABLED,
4415        BaseLoadBalancer.DEFAULT_BALANCER_REJECTION_BUFFER_ENABLED);
4416    if (isBalancerDecisionRecording || isBalancerRejectionRecording) {
4417      return NamedQueueRecorder.getInstance(conf);
4418    } else {
4419      return null;
4420    }
4421  }
4422
4423  @Override
4424  protected boolean clusterMode() {
4425    return true;
4426  }
4427
4428  public String getClusterId() {
4429    if (activeMaster) {
4430      return clusterId;
4431    }
4432    return cachedClusterId.getFromCacheOrFetch();
4433  }
4434
4435  public Optional<ServerName> getActiveMaster() {
4436    return activeMasterManager.getActiveMasterServerName();
4437  }
4438
4439  public List<ServerName> getBackupMasters() {
4440    return activeMasterManager.getBackupMasters();
4441  }
4442
4443  @Override
4444  public Iterator<ServerName> getBootstrapNodes() {
4445    return regionServerTracker.getRegionServers().iterator();
4446  }
4447
4448  @Override
4449  public List<HRegionLocation> getMetaLocations() {
4450    return metaRegionLocationCache.getMetaRegionLocations();
4451  }
4452
4453  @Override
4454  public void flushMasterStore() throws IOException {
4455    LOG.info("Force flush master local region.");
4456    if (this.cpHost != null) {
4457      try {
4458        cpHost.preMasterStoreFlush();
4459      } catch (IOException ioe) {
4460        LOG.error("Error invoking master coprocessor preMasterStoreFlush()", ioe);
4461      }
4462    }
4463    masterRegion.flush(true);
4464    if (this.cpHost != null) {
4465      try {
4466        cpHost.postMasterStoreFlush();
4467      } catch (IOException ioe) {
4468        LOG.error("Error invoking master coprocessor postMasterStoreFlush()", ioe);
4469      }
4470    }
4471  }
4472
4473  public Collection<ServerName> getLiveRegionServers() {
4474    return regionServerTracker.getRegionServers();
4475  }
4476
4477  @RestrictedApi(explanation = "Should only be called in tests", link = "",
4478      allowedOnPath = ".*/src/test/.*")
4479  void setLoadBalancer(RSGroupBasedLoadBalancer loadBalancer) {
4480    this.balancer = loadBalancer;
4481  }
4482
4483  @RestrictedApi(explanation = "Should only be called in tests", link = "",
4484      allowedOnPath = ".*/src/test/.*")
4485  void setAssignmentManager(AssignmentManager assignmentManager) {
4486    this.assignmentManager = assignmentManager;
4487  }
4488
4489  @RestrictedApi(explanation = "Should only be called in tests", link = "",
4490      allowedOnPath = ".*/src/test/.*")
4491  static void setDisableBalancerChoreForTest(boolean disable) {
4492    disableBalancerChoreForTest = disable;
4493  }
4494
4495  private void setQuotasObserver(Configuration conf) {
4496    // Add the Observer to delete quotas on table deletion before starting all CPs by
4497    // default with quota support, avoiding if user specifically asks to not load this Observer.
4498    if (QuotaUtil.isQuotaEnabled(conf)) {
4499      updateConfigurationForQuotasObserver(conf);
4500    }
4501  }
4502
4503  private void initializeCoprocessorHost(Configuration conf) {
4504    // initialize master side coprocessors before we start handling requests
4505    this.cpHost = new MasterCoprocessorHost(this, conf);
4506  }
4507
4508  @Override
4509  public long flushTable(TableName tableName, List<byte[]> columnFamilies, long nonceGroup,
4510    long nonce) throws IOException {
4511    checkInitialized();
4512
4513    if (
4514      !getConfiguration().getBoolean(MasterFlushTableProcedureManager.FLUSH_PROCEDURE_ENABLED,
4515        MasterFlushTableProcedureManager.FLUSH_PROCEDURE_ENABLED_DEFAULT)
4516    ) {
4517      throw new DoNotRetryIOException("FlushTableProcedureV2 is DISABLED");
4518    }
4519
4520    return MasterProcedureUtil
4521      .submitProcedure(new MasterProcedureUtil.NonceProcedureRunnable(this, nonceGroup, nonce) {
4522        @Override
4523        protected void run() throws IOException {
4524          getMaster().getMasterCoprocessorHost().preTableFlush(tableName);
4525          LOG.info(getClientIdAuditPrefix() + " flush " + tableName);
4526          submitProcedure(
4527            new FlushTableProcedure(procedureExecutor.getEnvironment(), tableName, columnFamilies));
4528          getMaster().getMasterCoprocessorHost().postTableFlush(tableName);
4529        }
4530
4531        @Override
4532        protected String getDescription() {
4533          return "FlushTableProcedure";
4534        }
4535      });
4536  }
4537}