|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use HBaseConfiguration | |
---|---|
org.apache.hadoop.hbase | |
org.apache.hadoop.hbase.client | Provides HBase Client |
org.apache.hadoop.hbase.client.tableindexed | This package provides support for secondary indexing by maintaining a separate, "index", table for each index. |
org.apache.hadoop.hbase.client.transactional | This package provides support for atomic transactions. |
org.apache.hadoop.hbase.master | |
org.apache.hadoop.hbase.migration.nineteen.regionserver | |
org.apache.hadoop.hbase.regionserver | |
org.apache.hadoop.hbase.regionserver.tableindexed | |
org.apache.hadoop.hbase.regionserver.transactional | |
org.apache.hadoop.hbase.rest | Provides an HBase REST service. |
org.apache.hadoop.hbase.stargate | Stargate |
org.apache.hadoop.hbase.thrift | Provides an HBase Thrift service. |
org.apache.hadoop.hbase.util | |
org.apache.hadoop.hbase.zookeeper |
Uses of HBaseConfiguration in org.apache.hadoop.hbase |
---|
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 configuration |
static HConnectionManager.ClientZKWatcher |
HConnectionManager.getClientZooKeeperWatcher(HBaseConfiguration conf)
Get a watcher of a zookeeper connection for a given quorum address. |
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 ServerConnection |
ServerConnectionManager.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 |
|
HConnectionManager.ClientZKWatcher(HBaseConfiguration conf)
Takes a configuration to pass it to ZKW but won't instanciate it |
|
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 |
|
HTablePool(HBaseConfiguration config,
int maxSize)
Constructor to set maximum versions and use the specified configuration. |
Uses of HBaseConfiguration in org.apache.hadoop.hbase.client.tableindexed |
---|
Constructors in org.apache.hadoop.hbase.client.tableindexed with parameters of type HBaseConfiguration | |
---|---|
IndexedTable(HBaseConfiguration conf,
byte[] tableName)
|
|
IndexedTableAdmin(HBaseConfiguration conf)
Constructor |
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. |
Uses of HBaseConfiguration in org.apache.hadoop.hbase.migration.nineteen.regionserver |
---|
Constructors in org.apache.hadoop.hbase.migration.nineteen.regionserver with parameters of type HBaseConfiguration | |
---|---|
HStoreFile(HBaseConfiguration conf,
org.apache.hadoop.fs.FileSystem fs,
org.apache.hadoop.fs.Path basedir,
int encodedName,
byte[] colFamily,
long fileId,
Reference ref)
Constructor that fully initializes the object |
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 BlockCache |
StoreFile.getBlockCache(HBaseConfiguration conf)
Returns the block cache or null in case none should be used. |
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. |
static List<org.apache.hadoop.fs.Path> |
HLog.splitLog(org.apache.hadoop.fs.Path rootDir,
org.apache.hadoop.fs.Path srcDir,
org.apache.hadoop.fs.FileSystem fs,
HBaseConfiguration conf)
Split up a bunch of regionserver commit log files that are no longer being written to, into new files, one per region for region to replay on startup. |
Constructors in org.apache.hadoop.hbase.regionserver with parameters of type HBaseConfiguration | |
---|---|
HLog(org.apache.hadoop.fs.FileSystem fs,
org.apache.hadoop.fs.Path dir,
HBaseConfiguration conf,
LogRollListener listener)
Create an edit log at the given dir location. |
|
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 |
|
Store(org.apache.hadoop.fs.Path basedir,
HRegion region,
HColumnDescriptor family,
org.apache.hadoop.fs.FileSystem fs,
org.apache.hadoop.fs.Path reconstructionLog,
HBaseConfiguration conf,
org.apache.hadoop.util.Progressable reporter)
Constructor |
Uses of HBaseConfiguration in org.apache.hadoop.hbase.regionserver.tableindexed |
---|
Constructors in org.apache.hadoop.hbase.regionserver.tableindexed with parameters of type HBaseConfiguration | |
---|---|
IndexedRegionServer(HBaseConfiguration conf)
|
Uses of HBaseConfiguration in org.apache.hadoop.hbase.regionserver.transactional |
---|
Constructors in org.apache.hadoop.hbase.regionserver.transactional with parameters of type HBaseConfiguration | |
---|---|
TransactionalRegion(org.apache.hadoop.fs.Path basedir,
HLog log,
org.apache.hadoop.fs.FileSystem fs,
HBaseConfiguration conf,
HRegionInfo regionInfo,
FlushRequester flushListener,
Leases transactionalLeases)
|
|
TransactionalRegionServer(HBaseConfiguration conf)
|
Uses of HBaseConfiguration in org.apache.hadoop.hbase.rest |
---|
Fields in org.apache.hadoop.hbase.rest declared as HBaseConfiguration | |
---|---|
protected HBaseConfiguration |
AbstractModel.conf
|
Methods in org.apache.hadoop.hbase.rest with parameters of type HBaseConfiguration | |
---|---|
protected AbstractModel |
TableController.generateModel(HBaseConfiguration conf,
HBaseAdmin admin)
|
protected AbstractModel |
TimestampController.generateModel(HBaseConfiguration conf,
HBaseAdmin admin)
|
protected abstract AbstractModel |
AbstractController.generateModel(HBaseConfiguration conf,
HBaseAdmin a)
|
protected AbstractModel |
DatabaseController.generateModel(HBaseConfiguration conf,
HBaseAdmin admin)
|
protected AbstractModel |
ScannerController.generateModel(HBaseConfiguration conf,
HBaseAdmin a)
|
protected AbstractModel |
RowController.generateModel(HBaseConfiguration conf,
HBaseAdmin admin)
|
void |
AbstractController.initialize(HBaseConfiguration conf,
HBaseAdmin admin)
|
void |
AbstractModel.initialize(HBaseConfiguration conf,
HBaseAdmin admin)
|
Constructors in org.apache.hadoop.hbase.rest with parameters of type HBaseConfiguration | |
---|---|
DatabaseModel(HBaseConfiguration conf,
HBaseAdmin admin)
|
|
RowModel(HBaseConfiguration conf,
HBaseAdmin admin)
|
|
ScannerModel(HBaseConfiguration config,
HBaseAdmin admin)
|
|
TableModel(HBaseConfiguration config,
HBaseAdmin admin)
|
|
TimestampModel(HBaseConfiguration conf,
HBaseAdmin admin)
|
Uses of HBaseConfiguration in org.apache.hadoop.hbase.stargate |
---|
Methods in org.apache.hadoop.hbase.stargate that return HBaseConfiguration | |
---|---|
protected HBaseConfiguration |
RESTServlet.getConfiguration()
|
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)
|
static void |
Migrate.rewrite(HBaseConfiguration conf,
org.apache.hadoop.fs.FileSystem fs,
org.apache.hadoop.fs.Path mf)
Rewrite the passed 0.19 mapfile as a 0.20 file. |
Constructors in org.apache.hadoop.hbase.util with parameters of type HBaseConfiguration | |
---|---|
Merge(HBaseConfiguration conf)
|
|
MetaUtils(HBaseConfiguration conf)
|
|
Migrate(HBaseConfiguration c)
|
Uses of HBaseConfiguration in org.apache.hadoop.hbase.zookeeper |
---|
Methods in org.apache.hadoop.hbase.zookeeper with parameters of type HBaseConfiguration | |
---|---|
static Properties |
HQuorumPeer.makeZKProps(HBaseConfiguration conf)
Make a Properties object holding ZooKeeper config equivalent to zoo.cfg. |
static Properties |
HQuorumPeer.parseZooCfg(HBaseConfiguration conf,
InputStream inputStream)
Parse ZooKeeper's zoo.cfg, injecting HBase Configuration variables in. |
Constructors in org.apache.hadoop.hbase.zookeeper with parameters of type HBaseConfiguration | |
---|---|
ZooKeeperWrapper(HBaseConfiguration conf,
org.apache.zookeeper.Watcher watcher)
Create a ZooKeeperWrapper. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |