/** * Copyright 2010 The Apache Software Foundation * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.hadoop.hbase.regionserver; import java.io.IOException; import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.hbase.HRegionInfo; import org.apache.hadoop.hbase.catalog.CatalogTracker; import org.apache.hadoop.hbase.ipc.RpcServer; import org.apache.hadoop.hbase.regionserver.wal.HLog; import org.apache.zookeeper.KeeperException; /** * Services provided by {@link HRegionServer} */ public interface RegionServerServices extends OnlineRegions { /** * @return True if this regionserver is stopping. */ public boolean isStopping(); /** @return the HLog for a particular region. Pass null for getting the * default (common) WAL */ public HLog getWAL(HRegionInfo regionInfo) throws IOException; /** * @return Implementation of {@link CompactionRequestor} or null. */ public CompactionRequestor getCompactionRequester(); /** * @return Implementation of {@link FlushRequester} or null. */ public FlushRequester getFlushRequester(); /** * @return the RegionServerAccounting for this Region Server */ public RegionServerAccounting getRegionServerAccounting(); /** * Tasks to perform after region open to complete deploy of region on * regionserver * * @param r Region to open. * @param ct Instance of {@link CatalogTracker} * @param daughter True if this is daughter of a split * @throws KeeperException * @throws IOException */ public void postOpenDeployTasks(final HRegion r, final CatalogTracker ct, final boolean daughter) throws KeeperException, IOException; /** * Returns a reference to the region server's RPC server */ public RpcServer getRpcServer(); /** * Remove passed <code>hri</code> from the internal list of regions in transition on this * regionserver. * @param hri Region to remove. * @return True if removed */ public boolean removeFromRegionsInTransition(HRegionInfo hri); /** * @param hri * @return True if the internal list of regions in transition includes the * passed <code>hri</code>. */ public boolean containsKeyInRegionsInTransition(HRegionInfo hri); /** * @return Return the FileSystem object used by the regionserver */ public FileSystem getFileSystem(); /** * @return The RegionServer's "Leases" service */ public Leases getLeases(); }