HBase DML DDL TTL(待完善)

来源:互联网 发布:澳洲股市行情软件app 编辑:程序博客网 时间:2024/06/06 10:29

Hbase & DML 

Constructor Summary

ConstructorsConstructor and DescriptionPut(byte[] row)
Create a Put operation for the specified row.
Put(byte[] row, boolean rowIsImmutable)
Create a Put operation for an immutable row key.
Put(byte[] rowArray, int rowOffset, int rowLength)
We make a copy of the passed in row key to keep local.
Put(byte[] rowArray, int rowOffset, int rowLength, long ts)
We make a copy of the passed in row key to keep local.
Put(byte[] row, long ts)
Create a Put operation for the specified row, using a given timestamp.
Put(byte[] row, long ts, boolean rowIsImmutable)
Create a Put operation for an immutable row key, using a given timestamp.
Put(ByteBuffer row) Put(ByteBuffer row, long ts) Put(Put putToCopy)
Copy constructor.