Package | Description |
---|---|
org.apache.hadoop.hbase | |
org.apache.hadoop.hbase.client |
Provides HBase Client
|
Modifier and Type | Field and Description |
---|---|
static HTableDescriptor |
HTableDescriptor.NAMESPACE_TABLEDESC
Deprecated.
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
Durability setting 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 | 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) and
Admin.deleteTable(TableName) |
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) and
Admin.deleteTable(TableName) |
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) and
Admin.disableTable(org.apache.hadoop.hbase.TableName) |
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) and
Admin.disableTable(org.apache.hadoop.hbase.TableName) |
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) and
Admin.enableTable(org.apache.hadoop.hbase.TableName) |
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) and
Admin.enableTable(org.apache.hadoop.hbase.TableName) |
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[] |
Admin.getTableDescriptors(List<String> names)
Deprecated.
since 2.0 version and will be removed in 3.0 version. use
Admin.listTableDescriptors(List) |
HTableDescriptor[] |
Admin.getTableDescriptorsByTableName(List<TableName> tableNames)
Deprecated.
since 2.0 version and will be removed in 3.0 version. use
Admin.listTableDescriptors(List) |
HTableDescriptor[] |
Admin.listTableDescriptorsByNamespace(String name)
Deprecated.
since 2.0 version and will be removed in 3.0 version. use
Admin.listTableDescriptorsByNamespace(byte[]) |
HTableDescriptor[] |
Admin.listTables()
Deprecated.
since 2.0 version and will be removed in 3.0 version. Use
Admin.listTableDescriptors() . |
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[] |
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[] |
Admin.listTables(String regex)
Deprecated.
since 2.0 version and will be removed in 3.0 version. Use
Admin.listTableDescriptors(Pattern) instead. |
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) . |
Copyright © 2007–2020 The Apache Software Foundation. All rights reserved.