You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@nifi.apache.org by pvillard31 <gi...@git.apache.org> on 2018/05/24 14:42:57 UTC

[GitHub] nifi pull request #2738: NIFI-5233 - Add EL support with Variable Registry s...

GitHub user pvillard31 opened a pull request:

    https://github.com/apache/nifi/pull/2738

    NIFI-5233 - Add EL support with Variable Registry scope for HBase cli…

    …ent service
    
    Thank you for submitting a contribution to Apache NiFi.
    
    In order to streamline the review of the contribution we ask you
    to ensure the following steps have been taken:
    
    ### For all changes:
    - [ ] Is there a JIRA ticket associated with this PR? Is it referenced 
         in the commit message?
    
    - [ ] Does your PR title start with NIFI-XXXX where XXXX is the JIRA number you are trying to resolve? Pay particular attention to the hyphen "-" character.
    
    - [ ] Has your PR been rebased against the latest commit within the target branch (typically master)?
    
    - [ ] Is your initial contribution a single, squashed commit?
    
    ### For code changes:
    - [ ] Have you ensured that the full suite of tests is executed via mvn -Pcontrib-check clean install at the root nifi folder?
    - [ ] Have you written or updated unit tests to verify your changes?
    - [ ] If adding new dependencies to the code, are these dependencies licensed in a way that is compatible for inclusion under [ASF 2.0](http://www.apache.org/legal/resolved.html#category-a)? 
    - [ ] If applicable, have you updated the LICENSE file, including the main LICENSE file under nifi-assembly?
    - [ ] If applicable, have you updated the NOTICE file, including the main NOTICE file found under nifi-assembly?
    - [ ] If adding new Properties, have you added .displayName in addition to .name (programmatic access) for each of the new properties?
    
    ### For documentation related changes:
    - [ ] Have you ensured that format looks appropriate for the output in which it is rendered?
    
    ### Note:
    Please ensure that once the PR is submitted, you check travis-ci for build issues and submit an update to your PR as soon as possible.


You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/pvillard31/nifi NIFI-5233

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/nifi/pull/2738.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #2738
    
----
commit 5d69838848be70530709aefe064b0f05cff2b6e8
Author: Pierre Villard <pi...@...>
Date:   2018-05-24T14:42:27Z

    NIFI-5233 - Add EL support with Variable Registry scope for HBase client service

----


---

[GitHub] nifi pull request #2738: NIFI-5233 - Add EL support with Variable Registry s...

Posted by pvillard31 <gi...@git.apache.org>.
Github user pvillard31 commented on a diff in the pull request:

    https://github.com/apache/nifi/pull/2738#discussion_r190904342
  
    --- Diff: nifi-nar-bundles/nifi-standard-services/nifi-hbase-client-service-api/src/main/java/org/apache/nifi/hbase/HBaseClientService.java ---
    @@ -42,24 +42,28 @@
                   " such as hbase-site.xml and core-site.xml for kerberos, " +
                   "including full paths to the files.")
                 .addValidator(new ConfigFilesValidator())
    +            .expressionLanguageSupported(ExpressionLanguageScope.VARIABLE_REGISTRY)
                 .build();
     
         PropertyDescriptor ZOOKEEPER_QUORUM = new PropertyDescriptor.Builder()
                 .name("ZooKeeper Quorum")
                 .description("Comma-separated list of ZooKeeper hosts for HBase. Required if Hadoop Configuration Files are not provided.")
                 .addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
    +            .expressionLanguageSupported(ExpressionLanguageScope.VARIABLE_REGISTRY)
                 .build();
     
         PropertyDescriptor ZOOKEEPER_CLIENT_PORT = new PropertyDescriptor.Builder()
                 .name("ZooKeeper Client Port")
                 .description("The port on which ZooKeeper is accepting client connections. Required if Hadoop Configuration Files are not provided.")
                 .addValidator(StandardValidators.PORT_VALIDATOR)
    +            .expressionLanguageSupported(ExpressionLanguageScope.VARIABLE_REGISTRY)
                 .build();
     
         PropertyDescriptor ZOOKEEPER_ZNODE_PARENT = new PropertyDescriptor.Builder()
                 .name("ZooKeeper ZNode Parent")
                 .description("The ZooKeeper ZNode Parent value for HBase (example: /hbase). Required if Hadoop Configuration Files are not provided.")
                 .addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
    +            .expressionLanguageSupported(ExpressionLanguageScope.VARIABLE_REGISTRY)
                 .build();
     
         PropertyDescriptor HBASE_CLIENT_RETRIES = new PropertyDescriptor.Builder()
    --- End diff --
    
    doh... good catch


---

[GitHub] nifi pull request #2738: NIFI-5233 - Add EL support with Variable Registry s...

Posted by pvillard31 <gi...@git.apache.org>.
Github user pvillard31 commented on a diff in the pull request:

    https://github.com/apache/nifi/pull/2738#discussion_r190857511
  
    --- Diff: nifi-nar-bundles/nifi-standard-services/nifi-hbase-client-service-api/src/main/java/org/apache/nifi/hbase/HBaseClientService.java ---
    @@ -42,24 +42,28 @@
                   " such as hbase-site.xml and core-site.xml for kerberos, " +
                   "including full paths to the files.")
                 .addValidator(new ConfigFilesValidator())
    +            .expressionLanguageSupported(ExpressionLanguageScope.VARIABLE_REGISTRY)
                 .build();
     
         PropertyDescriptor ZOOKEEPER_QUORUM = new PropertyDescriptor.Builder()
                 .name("ZooKeeper Quorum")
                 .description("Comma-separated list of ZooKeeper hosts for HBase. Required if Hadoop Configuration Files are not provided.")
                 .addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
    +            .expressionLanguageSupported(ExpressionLanguageScope.VARIABLE_REGISTRY)
                 .build();
     
         PropertyDescriptor ZOOKEEPER_CLIENT_PORT = new PropertyDescriptor.Builder()
                 .name("ZooKeeper Client Port")
                 .description("The port on which ZooKeeper is accepting client connections. Required if Hadoop Configuration Files are not provided.")
                 .addValidator(StandardValidators.PORT_VALIDATOR)
    +            .expressionLanguageSupported(ExpressionLanguageScope.VARIABLE_REGISTRY)
                 .build();
     
         PropertyDescriptor ZOOKEEPER_ZNODE_PARENT = new PropertyDescriptor.Builder()
                 .name("ZooKeeper ZNode Parent")
                 .description("The ZooKeeper ZNode Parent value for HBase (example: /hbase). Required if Hadoop Configuration Files are not provided.")
                 .addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
    +            .expressionLanguageSupported(ExpressionLanguageScope.VARIABLE_REGISTRY)
                 .build();
     
         PropertyDescriptor HBASE_CLIENT_RETRIES = new PropertyDescriptor.Builder()
    --- End diff --
    
    No specific reason. I was not sure it'd make sense to have different values across multiple environments but since there is no overhead to allow it, let's do it. As a general comment, I think we should start a discussion/JIRA (probably tagged for NiFi 2.0) to default the scope to Variable Registry for all the properties in the framework unless it's specifically disabled with Scope.NONE.


---

[GitHub] nifi pull request #2738: NIFI-5233 - Add EL support with Variable Registry s...

Posted by MikeThomsen <gi...@git.apache.org>.
Github user MikeThomsen commented on a diff in the pull request:

    https://github.com/apache/nifi/pull/2738#discussion_r190710420
  
    --- Diff: nifi-nar-bundles/nifi-standard-services/nifi-hbase-client-service-api/src/main/java/org/apache/nifi/hbase/HBaseClientService.java ---
    @@ -42,24 +42,28 @@
                   " such as hbase-site.xml and core-site.xml for kerberos, " +
                   "including full paths to the files.")
                 .addValidator(new ConfigFilesValidator())
    +            .expressionLanguageSupported(ExpressionLanguageScope.VARIABLE_REGISTRY)
                 .build();
     
         PropertyDescriptor ZOOKEEPER_QUORUM = new PropertyDescriptor.Builder()
                 .name("ZooKeeper Quorum")
                 .description("Comma-separated list of ZooKeeper hosts for HBase. Required if Hadoop Configuration Files are not provided.")
                 .addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
    +            .expressionLanguageSupported(ExpressionLanguageScope.VARIABLE_REGISTRY)
                 .build();
     
         PropertyDescriptor ZOOKEEPER_CLIENT_PORT = new PropertyDescriptor.Builder()
                 .name("ZooKeeper Client Port")
                 .description("The port on which ZooKeeper is accepting client connections. Required if Hadoop Configuration Files are not provided.")
                 .addValidator(StandardValidators.PORT_VALIDATOR)
    +            .expressionLanguageSupported(ExpressionLanguageScope.VARIABLE_REGISTRY)
                 .build();
     
         PropertyDescriptor ZOOKEEPER_ZNODE_PARENT = new PropertyDescriptor.Builder()
                 .name("ZooKeeper ZNode Parent")
                 .description("The ZooKeeper ZNode Parent value for HBase (example: /hbase). Required if Hadoop Configuration Files are not provided.")
                 .addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
    +            .expressionLanguageSupported(ExpressionLanguageScope.VARIABLE_REGISTRY)
                 .build();
     
         PropertyDescriptor HBASE_CLIENT_RETRIES = new PropertyDescriptor.Builder()
    --- End diff --
    
    Why did you skip the client retrieves?


---

[GitHub] nifi pull request #2738: NIFI-5233 - Add EL support with Variable Registry s...

Posted by zenfenan <gi...@git.apache.org>.
Github user zenfenan commented on a diff in the pull request:

    https://github.com/apache/nifi/pull/2738#discussion_r190615976
  
    --- Diff: nifi-nar-bundles/nifi-standard-services/nifi-hbase_1_1_2-client-service-bundle/nifi-hbase_1_1_2-client-service/src/test/java/org/apache/nifi/hbase/TestHBase_1_1_2_ClientService.java ---
    @@ -119,9 +124,9 @@ public void testCustomValidate() throws InitializationException, IOException {
             // quorum, port, and znode, no conf file, should be valid
             service = new MockHBaseClientService(table, COL_FAM, kerberosPropsWithFile);
             runner.addControllerService("hbaseClientService", service);
    -        runner.setProperty(service, HBase_1_1_2_ClientService.ZOOKEEPER_QUORUM, "localhost");
    -        runner.setProperty(service, HBase_1_1_2_ClientService.ZOOKEEPER_CLIENT_PORT, "2181");
    -        runner.setProperty(service, HBase_1_1_2_ClientService.ZOOKEEPER_ZNODE_PARENT, "/hbase");
    +        runner.setProperty(service, HBase_1_1_2_ClientService.ZOOKEEPER_QUORUM, "${zk-quorum}");
    +        runner.setProperty(service, HBase_1_1_2_ClientService.ZOOKEEPER_CLIENT_PORT, "${zk-port}");
    --- End diff --
    
    Should be `zk-client-port`. Right?


---

[GitHub] nifi pull request #2738: NIFI-5233 - Add EL support with Variable Registry s...

Posted by pvillard31 <gi...@git.apache.org>.
Github user pvillard31 commented on a diff in the pull request:

    https://github.com/apache/nifi/pull/2738#discussion_r190618349
  
    --- Diff: nifi-nar-bundles/nifi-standard-services/nifi-hbase_1_1_2-client-service-bundle/nifi-hbase_1_1_2-client-service/src/test/java/org/apache/nifi/hbase/TestHBase_1_1_2_ClientService.java ---
    @@ -119,9 +124,9 @@ public void testCustomValidate() throws InitializationException, IOException {
             // quorum, port, and znode, no conf file, should be valid
             service = new MockHBaseClientService(table, COL_FAM, kerberosPropsWithFile);
             runner.addControllerService("hbaseClientService", service);
    -        runner.setProperty(service, HBase_1_1_2_ClientService.ZOOKEEPER_QUORUM, "localhost");
    -        runner.setProperty(service, HBase_1_1_2_ClientService.ZOOKEEPER_CLIENT_PORT, "2181");
    -        runner.setProperty(service, HBase_1_1_2_ClientService.ZOOKEEPER_ZNODE_PARENT, "/hbase");
    +        runner.setProperty(service, HBase_1_1_2_ClientService.ZOOKEEPER_QUORUM, "${zk-quorum}");
    +        runner.setProperty(service, HBase_1_1_2_ClientService.ZOOKEEPER_CLIENT_PORT, "${zk-port}");
    --- End diff --
    
    yeah... good catch


---

[GitHub] nifi pull request #2738: NIFI-5233 - Add EL support with Variable Registry s...

Posted by MikeThomsen <gi...@git.apache.org>.
Github user MikeThomsen commented on a diff in the pull request:

    https://github.com/apache/nifi/pull/2738#discussion_r190882563
  
    --- Diff: nifi-nar-bundles/nifi-standard-services/nifi-hbase-client-service-api/src/main/java/org/apache/nifi/hbase/HBaseClientService.java ---
    @@ -42,24 +42,28 @@
                   " such as hbase-site.xml and core-site.xml for kerberos, " +
                   "including full paths to the files.")
                 .addValidator(new ConfigFilesValidator())
    +            .expressionLanguageSupported(ExpressionLanguageScope.VARIABLE_REGISTRY)
                 .build();
     
         PropertyDescriptor ZOOKEEPER_QUORUM = new PropertyDescriptor.Builder()
                 .name("ZooKeeper Quorum")
                 .description("Comma-separated list of ZooKeeper hosts for HBase. Required if Hadoop Configuration Files are not provided.")
                 .addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
    +            .expressionLanguageSupported(ExpressionLanguageScope.VARIABLE_REGISTRY)
                 .build();
     
         PropertyDescriptor ZOOKEEPER_CLIENT_PORT = new PropertyDescriptor.Builder()
                 .name("ZooKeeper Client Port")
                 .description("The port on which ZooKeeper is accepting client connections. Required if Hadoop Configuration Files are not provided.")
                 .addValidator(StandardValidators.PORT_VALIDATOR)
    +            .expressionLanguageSupported(ExpressionLanguageScope.VARIABLE_REGISTRY)
                 .build();
     
         PropertyDescriptor ZOOKEEPER_ZNODE_PARENT = new PropertyDescriptor.Builder()
                 .name("ZooKeeper ZNode Parent")
                 .description("The ZooKeeper ZNode Parent value for HBase (example: /hbase). Required if Hadoop Configuration Files are not provided.")
                 .addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
    +            .expressionLanguageSupported(ExpressionLanguageScope.VARIABLE_REGISTRY)
                 .build();
     
         PropertyDescriptor HBASE_CLIENT_RETRIES = new PropertyDescriptor.Builder()
    --- End diff --
    
    Check line 202. I think you missed a call to evaluateExpressionLanguage there.


---

[GitHub] nifi pull request #2738: NIFI-5233 - Add EL support with Variable Registry s...

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/nifi/pull/2738


---