| Package | Description | 
|---|---|
| org.apache.hadoop.hbase | |
| org.apache.hadoop.hbase.client | Provides HBase Client | 
| Modifier and Type | Field and Description | 
|---|---|
| static HTableDescriptor | HTableDescriptor. NAMESPACE_TABLEDESCDeprecated.  Table descriptor for namespace table | 
| Modifier and Type | Method and Description | 
|---|---|
| HTableDescriptor | HTableDescriptor. addCoprocessor(String className)Deprecated.  Add a table coprocessor to this table. | 
| HTableDescriptor | HTableDescriptor. addCoprocessor(String className,
              org.apache.hadoop.fs.Path jarFilePath,
              int priority,
              Map<String,String> kvs)Deprecated.  Add a table coprocessor to this table. | 
| HTableDescriptor | HTableDescriptor. addCoprocessorWithSpec(String specStr)Deprecated.  Add a table coprocessor to this table. | 
| HTableDescriptor | HTableDescriptor. addFamily(HColumnDescriptor family)Deprecated.  Adds a column family. | 
| HTableDescriptor | HTableDescriptor. modifyFamily(HColumnDescriptor family)Deprecated.  Modifies the existing column family. | 
| static HTableDescriptor | HTableDescriptor. parseFrom(byte[] bytes)Deprecated.  Parse the serialized representation of a  HTableDescriptor | 
| HTableDescriptor | HTableDescriptor. setCompactionEnabled(boolean isEnable)Deprecated.  Setting the table compaction enable flag. | 
| HTableDescriptor | HTableDescriptor. setConfiguration(String key,
                String value)Deprecated.  Setter for storing a configuration setting in map. | 
| HTableDescriptor | HTableDescriptor. setDurability(Durability durability)Deprecated.  Sets the  Durabilitysetting for the table. | 
| HTableDescriptor | HTableDescriptor. setErasureCodingPolicy(String policy)Deprecated.  Sets the HDFS erasure coding policy for the table. | 
| HTableDescriptor | HTableDescriptor. setFlushPolicyClassName(String clazz)Deprecated.  This sets the class associated with the flush policy which determines determines the stores
 need to be flushed when flushing a region. | 
| HTableDescriptor | HTableDescriptor. setMaxFileSize(long maxFileSize)Deprecated.  Sets the maximum size upto which a region can grow to after which a region split is triggered. | 
| HTableDescriptor | HTableDescriptor. setMaxFileSize(String maxFileSize)Deprecated.  | 
| HTableDescriptor | HTableDescriptor. setMemStoreFlushSize(long memstoreFlushSize)Deprecated.  Represents the maximum size of the memstore after which the contents of the memstore are
 flushed to the filesystem. | 
| HTableDescriptor | HTableDescriptor. setMemStoreFlushSize(String memStoreFlushSize)Deprecated.  | 
| HTableDescriptor | HTableDescriptor. setMergeEnabled(boolean isEnable)Deprecated.  Setting the table region merge enable flag. | 
| HTableDescriptor | HTableDescriptor. setNormalizationEnabled(boolean isEnable)Deprecated.  Setting the table normalization enable flag. | 
| HTableDescriptor | HTableDescriptor. setNormalizerTargetRegionCount(int regionCount)Deprecated.  | 
| HTableDescriptor | HTableDescriptor. setNormalizerTargetRegionSize(long regionSize)Deprecated.  | 
| HTableDescriptor | HTableDescriptor. setOwner(User owner)Deprecated. 
 since 0.94.1 | 
| HTableDescriptor | HTableDescriptor. setOwnerString(String ownerString)Deprecated. 
 since 0.94.1 | 
| HTableDescriptor | HTableDescriptor. setPriority(int priority)Deprecated.  | 
| HTableDescriptor | HTableDescriptor. setReadOnly(boolean readOnly)Deprecated.  Setting the table as read only sets all the columns in the table as read only. | 
| HTableDescriptor | HTableDescriptor. setRegionMemstoreReplication(boolean memstoreReplication)Deprecated. 
 As of release 2.0.0, this will be removed in HBase 3.0.0. Use
              setRegionMemStoreReplication(boolean)instead | 
| HTableDescriptor | HTableDescriptor. setRegionMemStoreReplication(boolean memstoreReplication)Deprecated.  Enable or Disable the memstore replication from the primary region to the replicas. | 
| HTableDescriptor | HTableDescriptor. setRegionReplication(int regionReplication)Deprecated.  Sets the number of replicas per region. | 
| HTableDescriptor | HTableDescriptor. setRegionSplitPolicyClassName(String clazz)Deprecated.  This sets the class associated with the region split policy which determines when a region
 split should occur. | 
| HTableDescriptor | HTableDescriptor. setSplitEnabled(boolean isEnable)Deprecated.  Setting the table region split enable flag. | 
| HTableDescriptor | HTableDescriptor. setValue(byte[] key,
        byte[] value)Deprecated.  Setter for storing metadata as a (key, value) pair in map | 
| HTableDescriptor | HTableDescriptor. setValue(Bytes key,
        Bytes value)Deprecated.  | 
| HTableDescriptor | HTableDescriptor. setValue(String key,
        String value)Deprecated.  Setter for storing metadata as a (key, value) pair in map | 
| Modifier and Type | Method and Description | 
|---|---|
| int | HTableDescriptor. compareTo(HTableDescriptor other)Deprecated.  Compares the descriptor with another descriptor which is passed as a parameter. | 
| Constructor and Description | 
|---|
| HTableDescriptor(HTableDescriptor desc)Deprecated.  Construct a table descriptor by cloning the descriptor passed as a parameter. | 
| HTableDescriptor(HTableDescriptor desc,
                boolean deepClone)Deprecated.  | 
| HTableDescriptor(TableName name,
                HTableDescriptor desc)Deprecated.  Construct a table descriptor by cloning the descriptor passed as a parameter but using a
 different table name. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | ImmutableHTableDescriptorDeprecated.  | 
| Modifier and Type | Method and Description | 
|---|---|
| HTableDescriptor[] | Admin. deleteTables(Pattern pattern)Deprecated. 
 since 2.0 version and will be removed in 3.0 version This is just a trivial helper
             method without any magic. Consider using
              Admin.listTableDescriptors(java.util.regex.Pattern)andAdmin.deleteTable(TableName) | 
| HTableDescriptor[] | HBaseAdmin. deleteTables(Pattern pattern)Delete tables matching the passed in pattern and wait on completion. | 
| HTableDescriptor[] | Admin. deleteTables(String regex)Deprecated. 
 since 2.0 version and will be removed in 3.0 version This is just a trivial helper
             method without any magic. Consider using  Admin.listTableDescriptors(Pattern)andAdmin.deleteTable(TableName) | 
| HTableDescriptor[] | HBaseAdmin. deleteTables(String regex) | 
| HTableDescriptor[] | Admin. disableTables(Pattern pattern)Deprecated. 
 since 2.0 version and will be removed in 3.0 version This is just a trivial helper
             method without any magic. Consider using
              Admin.listTableDescriptors(java.util.regex.Pattern)andAdmin.disableTable(org.apache.hadoop.hbase.TableName) | 
| HTableDescriptor[] | HBaseAdmin. disableTables(Pattern pattern) | 
| HTableDescriptor[] | Admin. disableTables(String regex)Deprecated. 
 since 2.0 version and will be removed in 3.0 version This is just a trivial helper
             method without any magic. Consider using  Admin.listTableDescriptors(Pattern)andAdmin.disableTable(org.apache.hadoop.hbase.TableName) | 
| HTableDescriptor[] | HBaseAdmin. disableTables(String regex) | 
| HTableDescriptor[] | Admin. enableTables(Pattern pattern)Deprecated. 
 since 2.0 version and will be removed in 3.0 version This is just a trivial helper
             method without any magic. Consider using
              Admin.listTableDescriptors(java.util.regex.Pattern)andAdmin.enableTable(org.apache.hadoop.hbase.TableName) | 
| HTableDescriptor[] | HBaseAdmin. enableTables(Pattern pattern) | 
| HTableDescriptor[] | Admin. enableTables(String regex)Deprecated. 
 since 2.0 version and will be removed in 3.0 version This is just a trivial helper
             method without any magic. Consider using  Admin.listTableDescriptors(Pattern)andAdmin.enableTable(org.apache.hadoop.hbase.TableName) | 
| HTableDescriptor[] | HBaseAdmin. enableTables(String regex) | 
| HTableDescriptor | HTable. getTableDescriptor()Deprecated.  | 
| default HTableDescriptor | Table. getTableDescriptor()Deprecated. 
 since 2.0 version and will be removed in 3.0 version. use  Table.getDescriptor() | 
| HTableDescriptor | Admin. getTableDescriptor(TableName tableName)Deprecated. 
 since 2.0 version and will be removed in 3.0 version. Use
              Admin.getDescriptor(TableName). | 
| HTableDescriptor | HBaseAdmin. getTableDescriptor(TableName tableName) | 
| HTableDescriptor[] | Admin. getTableDescriptors(List<String> names)Deprecated. 
 since 2.0 version and will be removed in 3.0 version. use
              Admin.listTableDescriptors(List) | 
| HTableDescriptor[] | HBaseAdmin. getTableDescriptors(List<String> names) | 
| HTableDescriptor[] | Admin. getTableDescriptorsByTableName(List<TableName> tableNames)Deprecated. 
 since 2.0 version and will be removed in 3.0 version. use
              Admin.listTableDescriptors(List) | 
| HTableDescriptor[] | HBaseAdmin. getTableDescriptorsByTableName(List<TableName> tableNames) | 
| HTableDescriptor[] | Admin. listTableDescriptorsByNamespace(String name)Deprecated. 
 since 2.0 version and will be removed in 3.0 version. use
              Admin.listTableDescriptorsByNamespace(byte[]) | 
| HTableDescriptor[] | HBaseAdmin. listTableDescriptorsByNamespace(String name) | 
| HTableDescriptor[] | Admin. listTables()Deprecated. 
 since 2.0 version and will be removed in 3.0 version. Use
              Admin.listTableDescriptors(). | 
| HTableDescriptor[] | HBaseAdmin. listTables() | 
| HTableDescriptor[] | Admin. listTables(Pattern pattern)Deprecated. 
 since 2.0 version and will be removed in 3.0 version. Use
              Admin.listTableDescriptors(java.util.regex.Pattern). | 
| HTableDescriptor[] | HBaseAdmin. listTables(Pattern pattern) | 
| HTableDescriptor[] | Admin. listTables(Pattern pattern,
          boolean includeSysTables)Deprecated. 
 since 2.0 version and will be removed in 3.0 version. Use
              Admin.listTableDescriptors(java.util.regex.Pattern, boolean). | 
| HTableDescriptor[] | HBaseAdmin. listTables(Pattern pattern,
          boolean includeSysTables) | 
| HTableDescriptor[] | Admin. listTables(String regex)Deprecated. 
 since 2.0 version and will be removed in 3.0 version. Use
              Admin.listTableDescriptors(Pattern)instead. | 
| HTableDescriptor[] | HBaseAdmin. listTables(String regex) | 
| HTableDescriptor[] | Admin. listTables(String regex,
          boolean includeSysTables)Deprecated. 
 since 2.0 version and will be removed in 3.0 version. Use
              Admin.listTableDescriptors(Pattern, boolean). | 
| HTableDescriptor[] | HBaseAdmin. listTables(String regex,
          boolean includeSysTables) | 
| Constructor and Description | 
|---|
| ImmutableHTableDescriptor(HTableDescriptor desc)Deprecated.  | 
Copyright © 2007–2020 The Apache Software Foundation. All rights reserved.