Package | Description |
---|---|
org.apache.hadoop.hbase | |
org.apache.hadoop.hbase.client |
Provides HBase Client
|
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.
Parse a serialized representation of a
HColumnDescriptor |
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.
Set or clear the block cache enabled flag.
|
HColumnDescriptor |
HColumnDescriptor.setBlocksize(int value)
Deprecated.
Set block size to use when writing
|
HColumnDescriptor |
HColumnDescriptor.setBlocksize(String value)
Deprecated.
|
HColumnDescriptor |
HColumnDescriptor.setBloomFilterType(BloomType value)
Deprecated.
Set the bloom filter type.
|
HColumnDescriptor |
HColumnDescriptor.setCacheBloomsOnWrite(boolean value)
Deprecated.
Set or clear the cache bloom filters on write flag.
|
HColumnDescriptor |
HColumnDescriptor.setCacheDataInL1(boolean value)
Deprecated.
Since 2.0 and will be removed in 3.0 with out any replacement. Caching data in on
heap Cache, when there are both on heap LRU Cache and Bucket Cache will no longer
be supported from 2.0.
|
HColumnDescriptor |
HColumnDescriptor.setCacheDataOnWrite(boolean value)
Deprecated.
Set or clear the cache data on write flag.
|
HColumnDescriptor |
HColumnDescriptor.setCacheIndexesOnWrite(boolean value)
Deprecated.
Set or clear the cache indexes on write flag.
|
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 n
|
HColumnDescriptor |
HColumnDescriptor.setEvictBlocksOnClose(boolean value)
Deprecated.
Set or clear the evict bloom filters on close flag.
|
HColumnDescriptor |
HColumnDescriptor.setInMemory(boolean value)
Deprecated.
Set or clear the in memory flag.
|
HColumnDescriptor |
HColumnDescriptor.setInMemoryCompaction(MemoryCompactionPolicy value)
Deprecated.
Set the in memory compaction policy.
|
HColumnDescriptor |
HColumnDescriptor.setKeepDeletedCells(KeepDeletedCells value)
Deprecated.
Set the keep deleted cells policy.
|
HColumnDescriptor |
HColumnDescriptor.setMajorCompactionCompressionType(Compression.Algorithm value)
Deprecated.
|
HColumnDescriptor |
HColumnDescriptor.setMaxVersions(int value)
Deprecated.
Set maximum versions to keep
|
HColumnDescriptor |
HColumnDescriptor.setMinorCompactionCompressionType(Compression.Algorithm value)
Deprecated.
|
HColumnDescriptor |
HColumnDescriptor.setMinVersions(int value)
Deprecated.
Set the minimum number of versions to keep.
|
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.
Set or clear the prefetch on open flag.
|
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.
Set the time to live of cell contents
|
HColumnDescriptor |
HColumnDescriptor.setTimeToLive(String value)
Deprecated.
Set the time to live of cell contents
|
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 | Class and Description |
---|---|
class |
ImmutableHColumnDescriptor
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
protected HColumnDescriptor |
ImmutableHTableDescriptor.toHColumnDescriptor(ColumnFamilyDescriptor desc)
Deprecated.
|
Constructor and Description |
---|
ImmutableHColumnDescriptor(HColumnDescriptor desc)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static HColumnDescriptor |
ThriftUtilities.colDescFromThrift(org.apache.hadoop.hbase.thrift.generated.ColumnDescriptor in)
This utility method creates a new Hbase HColumnDescriptor object based on a Thrift
ColumnDescriptor "struct".
|
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.