Github user MikeThomsen commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2518#discussion_r184726849
--- Diff:
nifi-nar-bundles/nifi-standard-services/nifi-hbase-client-service-api/src/main/java/org/apache/nifi/hbase/HBaseClientService.java
---
@@ -127,6 +139,25 @@
void delete(String tableName, List<byte[]> rowIds) throws IOException;
+ /**
+ * Deletes a list of cells from HBase. This is intended to be used
with granual delete operations.
+ *
+ * @param tableName the name of an HBase table.
+ * @param deletes a list of DeleteRequest objects.
+ * @throws IOException thrown when there are communication errors with
HBase
+ */
+ void deleteCells(String tableName, List<DeleteRequest> deletes) throws
IOException;
+
+ /**
+ * Deletes a list of rows in HBase. All cells are deleted.
--- End diff --
done.
---