如何使用 HBase API 在 Google Cloud Bigtable 中删除单行的列

How to delete a column of a single row in Google Cloud Bigtable with HBase API

我正在使用 HBase API 访问 Google Cloud Bigtable,但每当我尝试删除列时:

Delete delete = new Delete(r.getRow());
delete.addColumn(CF, Bytes.toBytes(d.seqid()));
delete.addColumn(CF, COL_LEASE);
tasksTable.delete(delete);

我得到一个 UnsupportedOperationException:

java.lang.UnsupportedOperationException: Cannot delete single latest cell.
at com.google.cloud.bigtable.hbase.adapters.DeleteAdapter.throwIfUnsupportedPointDelete(DeleteAdapter.java:85)
at com.google.cloud.bigtable.hbase.adapters.DeleteAdapter.adapt(DeleteAdapter.java:141)
at com.google.cloud.bigtable.hbase.adapters.HBaseRequestAdapter.adapt(HBaseRequestAdapter.java:71)
at com.google.cloud.bigtable.hbase.BigtableTable.delete(BigtableTable.java:307)
at queue.BigTableRowBackedQueue.poll(BigTableRowBackedQueue.java:54)

我在code it occurs here看到了。

我可以从 HBase Java 客户端删除整行,我可以使用 HBase shell.

删除单个列

如何在不删除 Java 客户端中的行的情况下删除列?

很抱歉给您带来麻烦。 Bigtable 和 HBase 在几个方面有所不同,这就是其中之一。

Delete delete = new Delete(rowKey);
delete.addColumns(COLUMN_FAMILY, qual); // the 's' matters
table.delete(delete);

HBase 的 Delete.addColumn 仅从列中删除最新的单元格。 Delete.addColumn_s_ 表示删除所有单元格(即所有各种时间戳)。或者,您可以通过 Delete.addColumn(byte[], byte[], long) 删除特定单元格,其中 long 是时间戳。

hbase shell delete uses deleteColumns which maps to addColumns under the cover。它还使用 s 变体,这就是它起作用的原因。

供参考 here 是我们完整的 TestDelete 套件,它可以识别您呈现为 @Category(KnownGap.class) 的用例,我们用它来识别 Bigtable 客户端中缺少 HBase 功能的差异。