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

Packages that use HTableDescriptor
org.apache.hadoop.hbase   
org.apache.hadoop.hbase.avro Provides an HBase Avro service. 
org.apache.hadoop.hbase.client Provides HBase Client 
org.apache.hadoop.hbase.ipc Tools to help define network clients and servers. 
org.apache.hadoop.hbase.master   
org.apache.hadoop.hbase.master.handler   
org.apache.hadoop.hbase.regionserver   
org.apache.hadoop.hbase.rest.client   
org.apache.hadoop.hbase.rest.model   
 

Uses of HTableDescriptor in org.apache.hadoop.hbase
 

Fields in org.apache.hadoop.hbase declared as HTableDescriptor
static HTableDescriptor HTableDescriptor.META_TABLEDESC
          Table descriptor for .META. catalog table
static HTableDescriptor HTableDescriptor.ROOT_TABLEDESC
          Table descriptor for -ROOT- catalog table
protected  HTableDescriptor HRegionInfo.tableDesc
           
 

Methods in org.apache.hadoop.hbase that return HTableDescriptor
 HTableDescriptor HRegionInfo.getTableDesc()
           
 

Methods in org.apache.hadoop.hbase with parameters of type HTableDescriptor
 int HTableDescriptor.compareTo(HTableDescriptor other)
           
 void HRegionInfo.setTableDesc(HTableDescriptor newDesc)
           
 

Constructors in org.apache.hadoop.hbase with parameters of type HTableDescriptor
HRegionInfo(HTableDescriptor tableDesc, byte[] startKey, byte[] endKey)
          Construct HRegionInfo with explicit parameters
HRegionInfo(HTableDescriptor tableDesc, byte[] startKey, byte[] endKey, boolean split)
          Construct HRegionInfo with explicit parameters
HRegionInfo(HTableDescriptor tableDesc, byte[] startKey, byte[] endKey, boolean split, long regionid)
          Construct HRegionInfo with explicit parameters
HTableDescriptor(HTableDescriptor desc)
          Constructor.
 

Uses of HTableDescriptor in org.apache.hadoop.hbase.avro
 

Methods in org.apache.hadoop.hbase.avro that return HTableDescriptor
static HTableDescriptor AvroUtil.atdToHTD(ATableDescriptor atd)
           
 

Methods in org.apache.hadoop.hbase.avro with parameters of type HTableDescriptor
static ATableDescriptor AvroUtil.htdToATD(HTableDescriptor table)
           
 

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

Subclasses of HTableDescriptor in org.apache.hadoop.hbase.client
 class UnmodifyableHTableDescriptor
          Read-only table descriptor.
 

Methods in org.apache.hadoop.hbase.client that return HTableDescriptor
 HTableDescriptor HConnection.getHTableDescriptor(byte[] tableName)
           
 HTableDescriptor HTable.getTableDescriptor()
           
 HTableDescriptor HTableInterface.getTableDescriptor()
          Gets the table descriptor for this table.
 HTableDescriptor HBaseAdmin.getTableDescriptor(byte[] tableName)
          Method for getting the tableDescriptor
 HTableDescriptor[] HConnection.listTables()
          List all the userspace tables.
 HTableDescriptor[] HBaseAdmin.listTables()
          List all the userspace tables.
 

Methods in org.apache.hadoop.hbase.client with parameters of type HTableDescriptor
 void HBaseAdmin.createTable(HTableDescriptor desc)
          Creates a new table.
 void HBaseAdmin.createTable(HTableDescriptor desc, byte[][] splitKeys)
          Creates a new table with an initial set of empty regions defined by the specified split keys.
 void HBaseAdmin.createTable(HTableDescriptor desc, byte[] startKey, byte[] endKey, int numRegions)
          Creates a new table with the specified number of regions.
 void HBaseAdmin.createTableAsync(HTableDescriptor desc, byte[][] splitKeys)
          Creates a new table but does not block and wait for it to come online.
 void HBaseAdmin.modifyTable(byte[] tableName, HTableDescriptor htd)
          Modify an existing table, more IRB friendly version.
 

Uses of HTableDescriptor in org.apache.hadoop.hbase.ipc
 

Methods in org.apache.hadoop.hbase.ipc with parameters of type HTableDescriptor
 void HMasterInterface.createTable(HTableDescriptor desc, byte[][] splitKeys)
          Creates a new table.
 void HMasterInterface.modifyTable(byte[] tableName, HTableDescriptor htd)
          Modify a table's metadata
 

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

Methods in org.apache.hadoop.hbase.master with parameters of type HTableDescriptor
 void HMaster.createTable(HTableDescriptor desc, byte[][] splitKeys)
           
 void HMaster.createTable(HTableDescriptor desc, byte[][] splitKeys, boolean sync)
           
 void HMaster.modifyTable(byte[] tableName, HTableDescriptor htd)
           
 

Uses of HTableDescriptor in org.apache.hadoop.hbase.master.handler
 

Constructors in org.apache.hadoop.hbase.master.handler with parameters of type HTableDescriptor
ModifyTableHandler(byte[] tableName, HTableDescriptor htd, Server server, MasterServices masterServices)
           
 

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

Methods in org.apache.hadoop.hbase.regionserver that return HTableDescriptor
 HTableDescriptor HRegion.getTableDesc()
           
 

Uses of HTableDescriptor in org.apache.hadoop.hbase.rest.client
 

Methods in org.apache.hadoop.hbase.rest.client that return HTableDescriptor
 HTableDescriptor RemoteHTable.getTableDescriptor()
           
 

Methods in org.apache.hadoop.hbase.rest.client with parameters of type HTableDescriptor
 void RemoteAdmin.createTable(HTableDescriptor desc)
          Creates a new table.
 

Uses of HTableDescriptor in org.apache.hadoop.hbase.rest.model
 

Methods in org.apache.hadoop.hbase.rest.model that return HTableDescriptor
 HTableDescriptor TableSchemaModel.getTableDescriptor()
           
 

Constructors in org.apache.hadoop.hbase.rest.model with parameters of type HTableDescriptor
TableSchemaModel(HTableDescriptor htd)
          Constructor
 



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