在 HBase 中,可以使用 Delete
類來根據時間戳刪除數據。以下是一個示例代碼:
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hbase.HBaseConfiguration;
import org.apache.hadoop.hbase.client.Connection;
import org.apache.hadoop.hbase.client.ConnectionFactory;
import org.apache.hadoop.hbase.client.Delete;
import org.apache.hadoop.hbase.client.Table;
import org.apache.hadoop.hbase.util.Bytes;
import java.io.IOException;
public class HBaseDeleteByTimestampExample {
private static final String TABLE_NAME = "your_table_name";
private static final String COLUMN_FAMILY = "your_column_family";
private static final String COLUMN_QUALIFIER = "your_column_qualifier";
private static final long TIMESTAMP = 1612896000000L; // 時間戳,單位為毫秒
public static void main(String[] args) throws IOException {
Configuration conf = HBaseConfiguration.create();
try (Connection connection = ConnectionFactory.createConnection(conf);
Table table = connection.getTable(Bytes.toBytes(TABLE_NAME))) {
Delete delete = new Delete(Bytes.toBytes("row_key")); // 根據行鍵刪除數據
delete.addColumn(Bytes.toBytes(COLUMN_FAMILY), Bytes.toBytes(COLUMN_QUALIFIER), TIMESTAMP);
table.delete(delete);
System.out.println("Data deleted successfully.");
}
}
}
在上面的示例代碼中,首先創建了一個 Delete
對象,然后使用 addColumn
方法指定要刪除的列族、列限定符和時間戳。最后,調用 table.delete
方法執行刪除操作。
需要注意的是,時間戳是以毫秒為單位的長整型數值,可以使用 System.currentTimeMillis()
方法獲取當前時間的時間戳。