[
https://issues.apache.org/jira/browse/NIFI-4637?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16453606#comment-16453606
]
ASF GitHub Bot commented on NIFI-4637:
--------------------------------------
Github user ijokarumawak commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2518#discussion_r184266796
--- 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 --
The 'All cells are deleted' should be updated to state that only matched
cells are deleted if target cells have visibility label expression.
> Add support for HBase visibility labels to HBase processors and controller
> services
> -----------------------------------------------------------------------------------
>
> Key: NIFI-4637
> URL: https://issues.apache.org/jira/browse/NIFI-4637
> Project: Apache NiFi
> Issue Type: Improvement
> Reporter: Mike Thomsen
> Assignee: Mike Thomsen
> Priority: Major
>
> HBase supports visibility labels, but you can't use them from NiFi because
> there is no way to set them. The existing processors and services should be
> upgraded to handle this capability.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)