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

Packages that use HTableDescriptor
org.apache.hadoop.hbase   
org.apache.hadoop.hbase.client   
org.apache.hadoop.hbase.ipc   
org.apache.hadoop.hbase.master   
org.apache.hadoop.hbase.regionserver   
 

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.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[] 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.createTableAsync(HTableDescriptor desc)
          Creates a new table but does not block and wait for it to come online.
 void HBaseAdmin.modifyTableMeta(byte[] tableName, HTableDescriptor desc)
          Modify a table's HTableDescriptor
 

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)
          Creates a new table
 void HMasterInterface.modifyTableMeta(byte[] tableName, HTableDescriptor desc)
          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)
           
 void HMaster.modifyTableMeta(byte[] tableName, HTableDescriptor desc)
           
 

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

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

Methods in org.apache.hadoop.hbase.regionserver with parameters of type HTableDescriptor
static void HRegion.makeColumnFamilyDirs(org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path basedir, int encodedRegionName, byte[] colFamily, HTableDescriptor tabledesc)
          Make the directories for a specific column family
 



Copyright © 2008 The Apache Software Foundation