Github user ijokarumawak commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2518#discussion_r184274827
--- Diff:
nifi-nar-bundles/nifi-hbase-bundle/nifi-hbase-processors/src/main/java/org/apache/nifi/hbase/ScanHBase.java
---
@@ -381,6 +384,7 @@ public void onTrigger(ProcessContext context,
ProcessSession session) throws Pro
limitRows,
isReversed,
columns,
+ authorizations,
--- End diff --
Do you know if HBase scan API let ResultHander get the visibility label
that is set to the cells retrieved by this scan? If so, do we want to include
that in output contents? I think if HBase returns that, we can embed those at
RowSerializer implementations such as JsonFullRowSerializer.
It can make scan -> delete flow easier.
---