Uses of Class
org.apache.hadoop.hbase.HBaseConfiguration

Packages that use HBaseConfiguration
org.apache.hadoop.hbase   
org.apache.hadoop.hbase.client   
org.apache.hadoop.hbase.client.transactional This package provides support for atomic transactions. 
org.apache.hadoop.hbase.master   
org.apache.hadoop.hbase.regionserver   
org.apache.hadoop.hbase.regionserver.transactional   
org.apache.hadoop.hbase.rest   
org.apache.hadoop.hbase.thrift Provides an HBase Thrift service. 
org.apache.hadoop.hbase.util   
org.apache.hadoop.hbase.util.migration.v5 Package of classes used instantiating objects written with pre-version 5 versions of HBase. 
 

Uses of HBaseConfiguration in org.apache.hadoop.hbase
 

Methods in org.apache.hadoop.hbase that return HBaseConfiguration
static HBaseConfiguration LocalHBaseCluster.doLocal(HBaseConfiguration c)
          Changes hbase.master from 'local' to 'localhost:PORT' in passed Configuration instance.
 

Methods in org.apache.hadoop.hbase with parameters of type HBaseConfiguration
static HBaseConfiguration LocalHBaseCluster.doLocal(HBaseConfiguration c)
          Changes hbase.master from 'local' to 'localhost:PORT' in passed Configuration instance.
 void RegionHistorian.online(HBaseConfiguration c)
           
 

Constructors in org.apache.hadoop.hbase with parameters of type HBaseConfiguration
LocalHBaseCluster(HBaseConfiguration conf)
          Constructor.
LocalHBaseCluster(HBaseConfiguration conf, int noRegionServers)
          Constructor.
 

Uses of HBaseConfiguration in org.apache.hadoop.hbase.client
 

Methods in org.apache.hadoop.hbase.client with parameters of type HBaseConfiguration
static void HBaseAdmin.checkHBaseAvailable(HBaseConfiguration conf)
          Check to see if HBase is running.
static void HConnectionManager.deleteConnectionInfo(HBaseConfiguration conf, boolean stopProxy)
          Delete connection information for the instance specified by the configuration
static HConnection HConnectionManager.getConnection(HBaseConfiguration conf)
          Get the connection object for the instance specified by the configuration If no current connection exists, create a new connection for that instance
static boolean HTable.isTableEnabled(HBaseConfiguration conf, byte[] tableName)
           
static boolean HTable.isTableEnabled(HBaseConfiguration conf, String tableName)
           
 

Constructors in org.apache.hadoop.hbase.client with parameters of type HBaseConfiguration
HBaseAdmin(HBaseConfiguration conf)
          Constructor
HTable(HBaseConfiguration conf, byte[] tableName)
          Creates an object to access a HBase table
HTable(HBaseConfiguration conf, String tableName)
          Creates an object to access a HBase table
 

Uses of HBaseConfiguration in org.apache.hadoop.hbase.client.transactional
 

Constructors in org.apache.hadoop.hbase.client.transactional with parameters of type HBaseConfiguration
TransactionalTable(HBaseConfiguration conf, byte[] tableName)
           
TransactionalTable(HBaseConfiguration conf, String tableName)
           
TransactionManager(HBaseConfiguration conf)
           
TransactionManager(TransactionLogger transactionLogger, HBaseConfiguration conf)
           
 

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

Methods in org.apache.hadoop.hbase.master that return HBaseConfiguration
 HBaseConfiguration HMaster.getConfiguration()
           
 

Constructors in org.apache.hadoop.hbase.master with parameters of type HBaseConfiguration
HMaster(HBaseConfiguration conf)
          Build the HMaster out of a raw configuration item.
HMaster(org.apache.hadoop.fs.Path rd, HServerAddress address, HBaseConfiguration conf)
          Build the HMaster
 

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

Fields in org.apache.hadoop.hbase.regionserver declared as HBaseConfiguration
protected  HBaseConfiguration HRegionServer.conf
           
 

Methods in org.apache.hadoop.hbase.regionserver that return HBaseConfiguration
 HBaseConfiguration HRegion.getConf()
           
 HBaseConfiguration HRegionServer.getConfiguration()
           
 

Methods in org.apache.hadoop.hbase.regionserver with parameters of type HBaseConfiguration
static HRegion HRegion.createHRegion(HRegionInfo info, org.apache.hadoop.fs.Path rootDir, HBaseConfiguration conf)
          Convenience method creating new HRegions.
static HRegion HRegion.openHRegion(HRegionInfo info, org.apache.hadoop.fs.Path rootDir, HLog log, HBaseConfiguration conf)
          Convenience method to open a HRegion outside of an HRegionServer context.
 

Constructors in org.apache.hadoop.hbase.regionserver with parameters of type HBaseConfiguration
HRegion(org.apache.hadoop.fs.Path basedir, HLog log, org.apache.hadoop.fs.FileSystem fs, HBaseConfiguration conf, HRegionInfo regionInfo, FlushRequester flushListener)
          HRegion constructor.
HRegionServer(HBaseConfiguration conf)
          Starts a HRegionServer at the default location
HRegionServer(HServerAddress address, HBaseConfiguration conf)
          Starts a HRegionServer at the specified location
HStore(org.apache.hadoop.fs.Path basedir, HRegionInfo info, HColumnDescriptor family, org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path reconstructionLog, HBaseConfiguration conf, org.apache.hadoop.util.Progressable reporter)
          An HStore is a set of zero or more MapFiles, which stretch backwards over time.
 

Uses of HBaseConfiguration in org.apache.hadoop.hbase.regionserver.transactional
 

Constructors in org.apache.hadoop.hbase.regionserver.transactional with parameters of type HBaseConfiguration
TransactionalRegionServer(HBaseConfiguration conf)
           
TransactionalRegionServer(HServerAddress address, HBaseConfiguration conf)
           
 

Uses of HBaseConfiguration in org.apache.hadoop.hbase.rest
 

Fields in org.apache.hadoop.hbase.rest declared as HBaseConfiguration
protected  HBaseConfiguration GenericHandler.conf
           
 

Constructors in org.apache.hadoop.hbase.rest with parameters of type HBaseConfiguration
GenericHandler(HBaseConfiguration conf, HBaseAdmin admin)
           
MetaHandler(HBaseConfiguration conf, HBaseAdmin admin)
           
RowHandler(HBaseConfiguration conf, HBaseAdmin admin)
           
ScannerHandler(HBaseConfiguration conf, HBaseAdmin admin)
           
TableHandler(HBaseConfiguration conf, HBaseAdmin admin)
           
 

Uses of HBaseConfiguration in org.apache.hadoop.hbase.thrift
 

Fields in org.apache.hadoop.hbase.thrift declared as HBaseConfiguration
protected  HBaseConfiguration ThriftServer.HBaseHandler.conf
           
 

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

Methods in org.apache.hadoop.hbase.util with parameters of type HBaseConfiguration
static void MetaUtils.changeOnlineStatus(HBaseConfiguration c, byte[] row, boolean onlineOffline)
          Set a single region on/offline.
static org.apache.hadoop.fs.Path FSUtils.getRootDir(HBaseConfiguration c)
           
 

Constructors in org.apache.hadoop.hbase.util with parameters of type HBaseConfiguration
Merge(HBaseConfiguration conf)
           
MetaUtils(HBaseConfiguration conf)
           
Migrate(HBaseConfiguration conf)
           
 

Uses of HBaseConfiguration in org.apache.hadoop.hbase.util.migration.v5
 

Methods in org.apache.hadoop.hbase.util.migration.v5 that return HBaseConfiguration
 HBaseConfiguration HRegion.getConf()
           
 

Methods in org.apache.hadoop.hbase.util.migration.v5 with parameters of type HBaseConfiguration
static void MetaUtils.changeOnlineStatus(HBaseConfiguration c, byte[] row, boolean onlineOffline)
          Set a single region on/offline.
static HRegion HRegion.createHRegion(HRegionInfo info, org.apache.hadoop.fs.Path rootDir, HBaseConfiguration conf)
          Convenience method creating new HRegions.
 void RegionHistorian.online(HBaseConfiguration c)
           
static HRegion HRegion.openHRegion(HRegionInfo info, org.apache.hadoop.fs.Path rootDir, HLog log, HBaseConfiguration conf)
          Convenience method to open a HRegion outside of an HRegionServer context.
 

Constructors in org.apache.hadoop.hbase.util.migration.v5 with parameters of type HBaseConfiguration
HRegion(org.apache.hadoop.fs.Path basedir, HLog log, org.apache.hadoop.fs.FileSystem fs, HBaseConfiguration conf, HRegionInfo regionInfo, org.apache.hadoop.fs.Path initialFiles, FlushRequester flushListener)
          HRegion constructor.
HRegion(org.apache.hadoop.fs.Path basedir, HLog log, org.apache.hadoop.fs.FileSystem fs, HBaseConfiguration conf, HRegionInfo regionInfo, org.apache.hadoop.fs.Path initialFiles, FlushRequester flushListener, org.apache.hadoop.util.Progressable reporter)
          HRegion constructor.
HStore(org.apache.hadoop.fs.Path basedir, HRegionInfo info, HColumnDescriptor family, org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path reconstructionLog, HBaseConfiguration conf, org.apache.hadoop.util.Progressable reporter)
          An HStore is a set of zero or more MapFiles, which stretch backwards over time.
MetaUtils(HBaseConfiguration conf)
           
 



Copyright © 2008 The Apache Software Foundation