|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Durability | |
---|---|
org.apache.hadoop.hbase | |
org.apache.hadoop.hbase.client | Provides HBase Client |
org.apache.hadoop.hbase.constraint | Restrict the domain of a data attribute, often times to fulfill business rules/requirements. |
org.apache.hadoop.hbase.coprocessor | Table of Contents |
org.apache.hadoop.hbase.protobuf | Holds classes generated from protobuf
src/main/protobuf definition files. |
org.apache.hadoop.hbase.regionserver | |
org.apache.hadoop.hbase.rest.client | |
org.apache.hadoop.hbase.security.access |
Uses of Durability in org.apache.hadoop.hbase |
---|
Methods in org.apache.hadoop.hbase that return Durability | |
---|---|
Durability |
HTableDescriptor.getDurability()
Returns the durability setting for the table. |
Methods in org.apache.hadoop.hbase with parameters of type Durability | |
---|---|
void |
HTableDescriptor.setDurability(Durability durability)
Sets the Durability setting for the table. |
Uses of Durability in org.apache.hadoop.hbase.client |
---|
Fields in org.apache.hadoop.hbase.client declared as Durability | |
---|---|
protected Durability |
Mutation.durability
|
Methods in org.apache.hadoop.hbase.client that return Durability | |
---|---|
Durability |
Mutation.getDurability()
Get the current durability |
static Durability |
Durability.valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Durability[] |
Durability.values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods in org.apache.hadoop.hbase.client with parameters of type Durability | |
---|---|
long |
HTableInterface.incrementColumnValue(byte[] row,
byte[] family,
byte[] qualifier,
long amount,
Durability durability)
Atomically increments a column value. |
long |
HTable.incrementColumnValue(byte[] row,
byte[] family,
byte[] qualifier,
long amount,
Durability durability)
Atomically increments a column value. |
void |
Mutation.setDurability(Durability d)
Set the durability for this mutation |
Uses of Durability in org.apache.hadoop.hbase.constraint |
---|
Methods in org.apache.hadoop.hbase.constraint with parameters of type Durability | |
---|---|
void |
ConstraintProcessor.prePut(ObserverContext<RegionCoprocessorEnvironment> e,
Put put,
WALEdit edit,
Durability durability)
|
Uses of Durability in org.apache.hadoop.hbase.coprocessor |
---|
Methods in org.apache.hadoop.hbase.coprocessor with parameters of type Durability | |
---|---|
void |
RegionObserver.postDelete(ObserverContext<RegionCoprocessorEnvironment> c,
Delete delete,
WALEdit edit,
Durability durability)
Called after the client deletes a value. |
void |
BaseRegionObserver.postDelete(ObserverContext<RegionCoprocessorEnvironment> e,
Delete delete,
WALEdit edit,
Durability durability)
|
void |
RegionObserver.postPut(ObserverContext<RegionCoprocessorEnvironment> c,
Put put,
WALEdit edit,
Durability durability)
Called after the client stores a value. |
void |
BaseRegionObserver.postPut(ObserverContext<RegionCoprocessorEnvironment> e,
Put put,
WALEdit edit,
Durability durability)
|
void |
RegionObserver.preDelete(ObserverContext<RegionCoprocessorEnvironment> c,
Delete delete,
WALEdit edit,
Durability durability)
Called before the client deletes a value. |
void |
BaseRegionObserver.preDelete(ObserverContext<RegionCoprocessorEnvironment> e,
Delete delete,
WALEdit edit,
Durability durability)
|
void |
RegionObserver.prePut(ObserverContext<RegionCoprocessorEnvironment> c,
Put put,
WALEdit edit,
Durability durability)
Called before the client stores a value. |
void |
BaseRegionObserver.prePut(ObserverContext<RegionCoprocessorEnvironment> e,
Put put,
WALEdit edit,
Durability durability)
|
Uses of Durability in org.apache.hadoop.hbase.protobuf |
---|
Methods in org.apache.hadoop.hbase.protobuf that return Durability | |
---|---|
static Durability |
ProtobufUtil.toDurability(ClientProtos.MutationProto.Durability proto)
Convert a protobuf Durability into a client Durability |
Methods in org.apache.hadoop.hbase.protobuf with parameters of type Durability | |
---|---|
static ClientProtos.MutateRequest |
RequestConverter.buildMutateRequest(byte[] regionName,
byte[] row,
byte[] family,
byte[] qualifier,
long amount,
Durability durability)
Create a protocol buffer MutateRequest for a client increment |
static ClientProtos.MutationProto.Durability |
ProtobufUtil.toDurability(Durability d)
Convert a client Durability into a protbuf Durability |
Uses of Durability in org.apache.hadoop.hbase.regionserver |
---|
Methods in org.apache.hadoop.hbase.regionserver that return Durability | |
---|---|
protected Durability |
HRegion.getEffectiveDurability(Durability d)
Returns effective durability from the passed durability and the table descriptor. |
Durability |
RowProcessor.useDurability()
|
Durability |
BaseRowProcessor.useDurability()
|
Methods in org.apache.hadoop.hbase.regionserver with parameters of type Durability | |
---|---|
protected Durability |
HRegion.getEffectiveDurability(Durability d)
Returns effective durability from the passed durability and the table descriptor. |
void |
RegionCoprocessorHost.postDelete(Delete delete,
WALEdit edit,
Durability durability)
|
void |
RegionCoprocessorHost.postPut(Put put,
WALEdit edit,
Durability durability)
|
boolean |
RegionCoprocessorHost.preDelete(Delete delete,
WALEdit edit,
Durability durability)
|
boolean |
RegionCoprocessorHost.prePut(Put put,
WALEdit edit,
Durability durability)
|
Uses of Durability in org.apache.hadoop.hbase.rest.client |
---|
Methods in org.apache.hadoop.hbase.rest.client with parameters of type Durability | |
---|---|
long |
RemoteHTable.incrementColumnValue(byte[] row,
byte[] family,
byte[] qualifier,
long amount,
Durability durability)
|
Uses of Durability in org.apache.hadoop.hbase.security.access |
---|
Methods in org.apache.hadoop.hbase.security.access with parameters of type Durability | |
---|---|
void |
AccessController.postDelete(ObserverContext<RegionCoprocessorEnvironment> c,
Delete delete,
WALEdit edit,
Durability durability)
|
void |
AccessController.postPut(ObserverContext<RegionCoprocessorEnvironment> c,
Put put,
WALEdit edit,
Durability durability)
|
void |
AccessController.preDelete(ObserverContext<RegionCoprocessorEnvironment> c,
Delete delete,
WALEdit edit,
Durability durability)
|
void |
AccessController.prePut(ObserverContext<RegionCoprocessorEnvironment> c,
Put put,
WALEdit edit,
Durability durability)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |