Uses of Interface
org.apache.hadoop.hbase.Stoppable

Packages that use Stoppable
org.apache.hadoop.hbase   
org.apache.hadoop.hbase.backup.example   
org.apache.hadoop.hbase.master   
org.apache.hadoop.hbase.master.balancer   
org.apache.hadoop.hbase.master.cleaner   
org.apache.hadoop.hbase.master.snapshot   
org.apache.hadoop.hbase.procedure   
org.apache.hadoop.hbase.regionserver   
org.apache.hadoop.hbase.regionserver.compactions   
org.apache.hadoop.hbase.replication Multi Cluster Replication 
org.apache.hadoop.hbase.replication.master   
org.apache.hadoop.hbase.replication.regionserver   
org.apache.hadoop.hbase.util   
org.apache.hadoop.hbase.zookeeper   
 

Uses of Stoppable in org.apache.hadoop.hbase
 

Subinterfaces of Stoppable in org.apache.hadoop.hbase
 interface Server
          Defines the set of shared functions implemented by HBase servers (Masters and RegionServers).
 

Fields in org.apache.hadoop.hbase declared as Stoppable
protected  Stoppable Chore.stopper
           
 

Constructors in org.apache.hadoop.hbase with parameters of type Stoppable
Chore(String name, int p, Stoppable stopper)
           
HealthCheckChore(int sleepTime, Stoppable stopper, org.apache.hadoop.conf.Configuration conf)
           
 

Uses of Stoppable in org.apache.hadoop.hbase.backup.example
 

Classes in org.apache.hadoop.hbase.backup.example that implement Stoppable
 class LongTermArchivingHFileCleaner
          BaseHFileCleanerDelegate that only cleans HFiles that don't belong to a table that is currently being archived.
 

Uses of Stoppable in org.apache.hadoop.hbase.master
 

Subinterfaces of Stoppable in org.apache.hadoop.hbase.master
 interface LoadBalancer
          Makes decisions about the placement and movement of Regions across RegionServers.
 interface MasterServices
          Services Master supplies
 

Classes in org.apache.hadoop.hbase.master that implement Stoppable
 class HMaster
          HMaster is the "master server" for HBase.
static class HMasterCommandLine.LocalHMaster
           
 

Constructors in org.apache.hadoop.hbase.master with parameters of type Stoppable
AssignmentManager.TimeoutMonitor(int period, Stoppable stopper, ServerManager serverManager, int timeout)
          Creates a periodic monitor to check for time outs on region transition operations.
AssignmentManager.TimerUpdater(int period, Stoppable stopper)
           
SplitLogManager(ZooKeeperWatcher zkw, org.apache.hadoop.conf.Configuration conf, Stoppable stopper, MasterServices master, ServerName serverName, boolean masterRecovery)
          Wrapper around SplitLogManager.SplitLogManager(ZooKeeperWatcher zkw, Configuration conf, Stoppable stopper, MasterServices master, ServerName serverName, boolean masterRecovery, TaskFinisher tf) that provides a task finisher for copying recovered edits to their final destination.
SplitLogManager(ZooKeeperWatcher zkw, org.apache.hadoop.conf.Configuration conf, Stoppable stopper, MasterServices master, ServerName serverName, boolean masterRecovery, SplitLogManager.TaskFinisher tf)
          Its OK to construct this object even when region-servers are not online.
 

Uses of Stoppable in org.apache.hadoop.hbase.master.balancer
 

Classes in org.apache.hadoop.hbase.master.balancer that implement Stoppable
 class BaseLoadBalancer
          The base class for load balancers.
 class FavoredNodeLoadBalancer
          An implementation of the LoadBalancer that assigns favored nodes for each region.
 class SimpleLoadBalancer
          Makes decisions about the placement and movement of Regions across RegionServers.
 class StochasticLoadBalancer
          This is a best effort load balancer.
 

Uses of Stoppable in org.apache.hadoop.hbase.master.cleaner
 

Subinterfaces of Stoppable in org.apache.hadoop.hbase.master.cleaner
 interface FileCleanerDelegate
          General interface for cleaning files from a folder (generally an archive or backup folder).
 

Classes in org.apache.hadoop.hbase.master.cleaner that implement Stoppable
 class BaseFileCleanerDelegate
          Base class for file cleaners which allows subclasses to implement a simple isFileDeletable method (which used to be the FileCleanerDelegate contract).
 class BaseHFileCleanerDelegate
          Base class for the hfile cleaning function inside the master.
 class BaseLogCleanerDelegate
          Base class for the log cleaning function inside the master.
 class HFileLinkCleaner
          HFileLink cleaner that determines if a hfile should be deleted.
 class TimeToLiveHFileCleaner
          HFile cleaner that uses the timestamp of the hfile to determine if it should be deleted.
 class TimeToLiveLogCleaner
          Log cleaner that uses the timestamp of the hlog to determine if it should be deleted.
 

Constructors in org.apache.hadoop.hbase.master.cleaner with parameters of type Stoppable
CleanerChore(String name, int sleepPeriod, Stoppable s, org.apache.hadoop.conf.Configuration conf, org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path oldFileDir, String confKey)
           
HFileCleaner(int period, Stoppable stopper, org.apache.hadoop.conf.Configuration conf, org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path directory)
           
LogCleaner(int p, Stoppable s, org.apache.hadoop.conf.Configuration conf, org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path oldLogDir)
           
 

Uses of Stoppable in org.apache.hadoop.hbase.master.snapshot
 

Classes in org.apache.hadoop.hbase.master.snapshot that implement Stoppable
 class SnapshotFileCache
          Intelligently keep track of all the files for all the snapshots.
 class SnapshotHFileCleaner
          Implementation of a file cleaner that checks if a hfile is still used by snapshots of HBase tables.
 class SnapshotLogCleaner
          Implementation of a log cleaner that checks if a log is still used by snapshots of HBase tables.
 class SnapshotManager
          This class manages the procedure of taking and restoring snapshots.
 

Uses of Stoppable in org.apache.hadoop.hbase.procedure
 

Classes in org.apache.hadoop.hbase.procedure that implement Stoppable
 class MasterProcedureManager
          A life-cycle management interface for globally barriered procedures on master.
 

Uses of Stoppable in org.apache.hadoop.hbase.regionserver
 

Subinterfaces of Stoppable in org.apache.hadoop.hbase.regionserver
(package private)  interface org.apache.hadoop.hbase.regionserver.OnlineRegions
          Interface to Map of online regions.
 interface RegionServerServices
          Services provided by HRegionServer
 

Classes in org.apache.hadoop.hbase.regionserver that implement Stoppable
 class HRegionServer
          HRegionServer makes a set of HRegions available to clients.
protected static class HRegionServer.MovedRegionsCleaner
          Creates a Chore thread to clean the moved region cache.
 

Methods in org.apache.hadoop.hbase.regionserver with parameters of type Stoppable
 Chore ServerNonceManager.createCleanupChore(Stoppable stoppable)
          Creates a chore that is used to clean up old nonces.
static void ShutdownHook.install(org.apache.hadoop.conf.Configuration conf, org.apache.hadoop.fs.FileSystem fs, Stoppable stop, Thread threadToJoin)
          Install a shutdown hook that calls stop on the passed Stoppable and then thread joins against the passed threadToJoin.
 boolean ServerNonceManager.startOperation(long group, long nonce, Stoppable stoppable)
          Starts the operation if operation with such nonce has not already succeeded.
 

Uses of Stoppable in org.apache.hadoop.hbase.regionserver.compactions
 

Subinterfaces of Stoppable in org.apache.hadoop.hbase.regionserver.compactions
 interface CompactionThroughputController
          A utility that constrains the total throughput of one or more simultaneous flows (compactions) by sleeping when necessary.
 

Classes in org.apache.hadoop.hbase.regionserver.compactions that implement Stoppable
 class NoLimitCompactionThroughputController
          A dummy CompactionThroughputController that does nothing.
 class PressureAwareCompactionThroughputController
          A throughput controller which uses the follow schema to limit throughput If compaction pressure is greater than 1.0, no limitation. In off peak hours, use a fixed throughput limitation "hbase.hstore.compaction.throughput.offpeak" In normal hours, the max throughput is tune between "hbase.hstore.compaction.throughput.lower.bound" and "hbase.hstore.compaction.throughput.higher.bound", using the formula "lower + (higer - lower) * compactionPressure", where compactionPressure is in range [0.0, 1.0]
 

Uses of Stoppable in org.apache.hadoop.hbase.replication
 

Methods in org.apache.hadoop.hbase.replication with parameters of type Stoppable
static ReplicationTracker ReplicationFactory.getReplicationTracker(ZooKeeperWatcher zookeeper, ReplicationPeers replicationPeers, org.apache.hadoop.conf.Configuration conf, Abortable abortable, Stoppable stopper)
           
 

Constructors in org.apache.hadoop.hbase.replication with parameters of type Stoppable
ReplicationTrackerZKImpl(ZooKeeperWatcher zookeeper, ReplicationPeers replicationPeers, org.apache.hadoop.conf.Configuration conf, Abortable abortable, Stoppable stopper)
           
 

Uses of Stoppable in org.apache.hadoop.hbase.replication.master
 

Classes in org.apache.hadoop.hbase.replication.master that implement Stoppable
 class ReplicationLogCleaner
          Implementation of a log cleaner that checks if a log is still scheduled for replication before deleting it when its TTL is over.
 

Uses of Stoppable in org.apache.hadoop.hbase.replication.regionserver
 

Methods in org.apache.hadoop.hbase.replication.regionserver with parameters of type Stoppable
 void ReplicationSourceInterface.init(org.apache.hadoop.conf.Configuration conf, org.apache.hadoop.fs.FileSystem fs, ReplicationSourceManager manager, ReplicationQueues replicationQueues, ReplicationPeers replicationPeers, Stoppable stopper, String peerClusterZnode, UUID clusterId, ReplicationEndpoint replicationEndpoint, MetricsSource metrics)
          Initializer for the source
 void ReplicationSource.init(org.apache.hadoop.conf.Configuration conf, org.apache.hadoop.fs.FileSystem fs, ReplicationSourceManager manager, ReplicationQueues replicationQueues, ReplicationPeers replicationPeers, Stoppable stopper, String peerClusterZnode, UUID clusterId, ReplicationEndpoint replicationEndpoint, MetricsSource metrics)
          Instantiation method used by region servers
 

Constructors in org.apache.hadoop.hbase.replication.regionserver with parameters of type Stoppable
ReplicationSink(org.apache.hadoop.conf.Configuration conf, Stoppable stopper)
          Create a sink for replication
 

Uses of Stoppable in org.apache.hadoop.hbase.util
 

Constructors in org.apache.hadoop.hbase.util with parameters of type Stoppable
Sleeper(int sleep, Stoppable stopper)
           
 

Uses of Stoppable in org.apache.hadoop.hbase.zookeeper
 

Constructors in org.apache.hadoop.hbase.zookeeper with parameters of type Stoppable
ZKLeaderManager(ZooKeeperWatcher watcher, String leaderZNode, byte[] identifier, Stoppable candidate)
          Deprecated.  
 



Copyright © 2007–2016 The Apache Software Foundation. All rights reserved.