Package | Description |
---|---|
org.apache.hadoop.hbase | |
org.apache.hadoop.hbase.thrift |
Provides an HBase Thrift
service.
|
Modifier and Type | Method and Description |
---|---|
HColumnDescriptor[] |
HTableDescriptor.getColumnFamilies()
Deprecated.
since 2.0.0 and will be removed in 3.0.0.
|
HColumnDescriptor |
HTableDescriptor.getFamily(byte[] column)
Deprecated.
since 2.0.0 and will be removed in 3.0.0. Use
HTableDescriptor.getColumnFamily(byte[])
instead. |
static HColumnDescriptor |
HColumnDescriptor.parseFrom(byte[] bytes)
Deprecated.
|
HColumnDescriptor |
HTableDescriptor.removeFamily(byte[] column)
Deprecated.
Removes the HColumnDescriptor with name specified by the parameter column
from the table descriptor
|
HColumnDescriptor |
HColumnDescriptor.setBlockCacheEnabled(boolean value)
Deprecated.
|
HColumnDescriptor |
HColumnDescriptor.setBlocksize(int value)
Deprecated.
|
HColumnDescriptor |
HColumnDescriptor.setBloomFilterType(BloomType value)
Deprecated.
|
HColumnDescriptor |
HColumnDescriptor.setCacheBloomsOnWrite(boolean value)
Deprecated.
|
HColumnDescriptor |
HColumnDescriptor.setCacheDataOnWrite(boolean value)
Deprecated.
|
HColumnDescriptor |
HColumnDescriptor.setCacheIndexesOnWrite(boolean value)
Deprecated.
|
HColumnDescriptor |
HColumnDescriptor.setCompactionCompressionType(Compression.Algorithm value)
Deprecated.
Compression types supported in hbase.
|
HColumnDescriptor |
HColumnDescriptor.setCompressionType(Compression.Algorithm value)
Deprecated.
Compression types supported in hbase.
|
HColumnDescriptor |
HColumnDescriptor.setCompressTags(boolean value)
Deprecated.
Set whether the tags should be compressed along with DataBlockEncoding.
|
HColumnDescriptor |
HColumnDescriptor.setConfiguration(String key,
String value)
Deprecated.
Setter for storing a configuration setting.
|
HColumnDescriptor |
HColumnDescriptor.setDataBlockEncoding(DataBlockEncoding value)
Deprecated.
Set data block encoding algorithm used in block cache.
|
HColumnDescriptor |
HColumnDescriptor.setDFSReplication(short value)
Deprecated.
Set the replication factor to hfile(s) belonging to this family
|
HColumnDescriptor |
HColumnDescriptor.setEncryptionKey(byte[] value)
Deprecated.
Set the raw crypto key attribute for the family
|
HColumnDescriptor |
HColumnDescriptor.setEncryptionType(String value)
Deprecated.
Set the encryption algorithm for use with this family
|
HColumnDescriptor |
HColumnDescriptor.setEvictBlocksOnClose(boolean value)
Deprecated.
|
HColumnDescriptor |
HColumnDescriptor.setInMemory(boolean value)
Deprecated.
|
HColumnDescriptor |
HColumnDescriptor.setInMemoryCompaction(MemoryCompactionPolicy value)
Deprecated.
|
HColumnDescriptor |
HColumnDescriptor.setKeepDeletedCells(KeepDeletedCells value)
Deprecated.
|
HColumnDescriptor |
HColumnDescriptor.setMaxVersions(int value)
Deprecated.
|
HColumnDescriptor |
HColumnDescriptor.setMinVersions(int value)
Deprecated.
|
HColumnDescriptor |
HColumnDescriptor.setMobCompactPartitionPolicy(MobCompactPartitionPolicy value)
Deprecated.
Set the mob compact partition policy for the family.
|
HColumnDescriptor |
HColumnDescriptor.setMobEnabled(boolean value)
Deprecated.
Enables the mob for the family.
|
HColumnDescriptor |
HColumnDescriptor.setMobThreshold(long value)
Deprecated.
Sets the mob threshold of the family.
|
HColumnDescriptor |
HColumnDescriptor.setNewVersionBehavior(boolean newVersionBehavior)
Deprecated.
|
HColumnDescriptor |
HColumnDescriptor.setPrefetchBlocksOnOpen(boolean value)
Deprecated.
|
HColumnDescriptor |
HColumnDescriptor.setScope(int value)
Deprecated.
|
HColumnDescriptor |
HColumnDescriptor.setStoragePolicy(String value)
Deprecated.
Set the storage policy for use with this family
|
HColumnDescriptor |
HColumnDescriptor.setTimeToLive(int value)
Deprecated.
|
HColumnDescriptor |
HColumnDescriptor.setTimeToLive(String value)
Deprecated.
|
HColumnDescriptor |
HColumnDescriptor.setValue(byte[] key,
byte[] value)
Deprecated.
|
HColumnDescriptor |
HColumnDescriptor.setValue(String key,
String value)
Deprecated.
|
HColumnDescriptor |
HColumnDescriptor.setVersions(int minVersions,
int maxVersions)
Deprecated.
Set minimum and maximum versions to keep
|
protected HColumnDescriptor |
HTableDescriptor.toHColumnDescriptor(ColumnFamilyDescriptor desc)
Deprecated.
Return a HColumnDescriptor for user to keep the compatibility as much as possible.
|
Modifier and Type | Method and Description |
---|---|
Collection<HColumnDescriptor> |
HTableDescriptor.getFamilies()
Deprecated.
since 2.0.0 and will be removed in 3.0.0. Use
HTableDescriptor.getColumnFamilies() instead. |
Modifier and Type | Method and Description |
---|---|
HTableDescriptor |
HTableDescriptor.addFamily(HColumnDescriptor family)
Deprecated.
Adds a column family.
|
int |
HColumnDescriptor.compareTo(HColumnDescriptor other)
Deprecated.
|
HTableDescriptor |
HTableDescriptor.modifyFamily(HColumnDescriptor family)
Deprecated.
Modifies the existing column family.
|
Constructor and Description |
---|
HColumnDescriptor(HColumnDescriptor desc)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0
(HBASE-18433).
Use
ColumnFamilyDescriptorBuilder.copy(ColumnFamilyDescriptor) . |
HColumnDescriptor(HColumnDescriptor desc,
boolean deepClone)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static org.apache.hadoop.hbase.thrift.generated.ColumnDescriptor |
ThriftUtilities.colDescFromHbase(HColumnDescriptor in)
This utility method creates a new Thrift ColumnDescriptor "struct" based on
an Hbase HColumnDescriptor object.
|
Copyright © 2007–2020 The Apache Software Foundation. All rights reserved.