Package | Description |
---|---|
org.apache.hadoop.hbase | |
org.apache.hadoop.hbase.regionserver |
Modifier and Type | Field and Description |
---|---|
static KeepDeletedCells |
HColumnDescriptor.DEFAULT_KEEP_DELETED
Default setting for preventing deleted from being collected immediately.
|
Modifier and Type | Method and Description |
---|---|
KeepDeletedCells |
HColumnDescriptor.getKeepDeletedCells() |
static KeepDeletedCells |
KeepDeletedCells.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeepDeletedCells[] |
KeepDeletedCells.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
protected HTableDescriptor |
HBaseTestCase.createTableDescriptor(String name,
int minVersions,
int versions,
int ttl,
KeepDeletedCells keepDeleted)
Deprecated.
Create a table of name
name with COLUMNS for
families. |
HTableDescriptor |
HBaseTestingUtility.createTableDescriptor(String name,
int minVersions,
int versions,
int ttl,
KeepDeletedCells keepDeleted)
Create a table of name
name with COLUMNS for
families. |
HColumnDescriptor |
HColumnDescriptor.setKeepDeletedCells(KeepDeletedCells keepDeletedCells) |
Constructor and Description |
---|
HColumnDescriptor(byte[] familyName,
int minVersions,
int maxVersions,
KeepDeletedCells keepDeletedCells,
String compression,
boolean encodeOnDisk,
String dataBlockEncoding,
boolean inMemory,
boolean blockCacheEnabled,
int blocksize,
int timeToLive,
String bloomFilter,
int scope)
Deprecated.
As of release 0.96
(HBASE-).
This will be removed in HBase 2.0.0.
Use
HColumnDescriptor.HColumnDescriptor(String) and setters. |
Modifier and Type | Method and Description |
---|---|
KeepDeletedCells |
ScanInfo.getKeepDeletedCells() |
Constructor and Description |
---|
ScanInfo(byte[] family,
int minVersions,
int maxVersions,
long ttl,
KeepDeletedCells keepDeletedCells,
long timeToPurgeDeletes,
KeyValue.KVComparator comparator) |