Github user MikeThomsen commented on a diff in the pull request:

    https://github.com/apache/nifi/pull/2518#discussion_r173485840
  
    --- Diff: 
nifi-nar-bundles/nifi-hbase-bundle/nifi-hbase-processors/src/main/java/org/apache/nifi/hbase/DeleteHBaseRow.java
 ---
    @@ -103,6 +103,17 @@
                 .defaultValue("UTF-8")
                 .addValidator(StandardValidators.CHARACTER_SET_VALIDATOR)
                 .build();
    +    static final PropertyDescriptor VISIBLITY_LABEL = new 
PropertyDescriptor.Builder()
    +            .name("delete-visibility-label")
    +            .displayName("Visibility Label")
    +            .description("If visibility labels are enabled, a row cannot 
be deleted without supplying its visibility label(s) in the delete " +
    +                    "request. Note: this visibility label will be applied 
to all cells within the row that is specified. If some cells have " +
    +                    "different visibility labels, they will not be 
deleted. When that happens, the failure to delete will be considered a success 
" +
    +                    "because HBase does not report it as a failure.")
    +            .required(false)
    --- End diff --
    
    I'm not sure about that, but you have a point on being proactive. 


---

Reply via email to