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

Packages that use Stoppable
org.apache.hadoop.hbase   
org.apache.hadoop.hbase.ipc Tools to help define network clients and servers. 
org.apache.hadoop.hbase.master   
org.apache.hadoop.hbase.master.cleaner   
org.apache.hadoop.hbase.master.snapshot   
org.apache.hadoop.hbase.regionserver   
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.ipc
 

Subinterfaces of Stoppable in org.apache.hadoop.hbase.ipc
 interface HRegionInterface
          Clients interact with HRegionServers using a handle to the HRegionInterface.
 

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

Subinterfaces of Stoppable in org.apache.hadoop.hbase.master
 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, String serverName)
          Wrapper around #SplitLogManager(ZooKeeperWatcher, Configuration, Stoppable, String, TaskFinisher) 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, String serverName, 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.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.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.
 

Methods in org.apache.hadoop.hbase.regionserver with parameters of type Stoppable
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.
 

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
 ReplicationSourceInterface ReplicationSourceManager.getReplicationSource(org.apache.hadoop.conf.Configuration conf, org.apache.hadoop.fs.FileSystem fs, ReplicationSourceManager manager, Stoppable stopper, AtomicBoolean replicating, String peerId)
          Factory method to create a replication source
 void ReplicationSource.init(org.apache.hadoop.conf.Configuration conf, org.apache.hadoop.fs.FileSystem fs, ReplicationSourceManager manager, Stoppable stopper, AtomicBoolean replicating, String peerClusterZnode)
          Instantiation method used by region servers
 void ReplicationSourceInterface.init(org.apache.hadoop.conf.Configuration conf, org.apache.hadoop.fs.FileSystem fs, ReplicationSourceManager manager, Stoppable stopper, AtomicBoolean replicating, String peerClusterId)
          Initializer for the source
 

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
ReplicationSourceManager(ReplicationZookeeper zkHelper, org.apache.hadoop.conf.Configuration conf, Stoppable stopper, org.apache.hadoop.fs.FileSystem fs, AtomicBoolean replicating, org.apache.hadoop.fs.Path logDir, org.apache.hadoop.fs.Path oldLogDir)
          Creates a replication manager and sets the watch on all the other registered region servers
 

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)
           
 



Copyright © 2014 The Apache Software Foundation. All Rights Reserved.