You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by GitBox <gi...@apache.org> on 2019/09/20 00:51:49 UTC

[GitHub] [incubator-hudi] cdmikechen opened a new issue #910: hoodie.*.consume.mode should be set whitelist in hive-site.xml

cdmikechen opened a new issue #910: hoodie.*.consume.mode should be set whitelist in hive-site.xml
URL: https://github.com/apache/incubator-hudi/issues/910
 
 
   If user use `INCREMENTAL` mode to get increment data, we may need to let users know that we need to configure the whitelist in `hive-site.xml` before we can use it, otherwise we will prompt unauthorized errors when using hive-jdbc or beeline. 
   ```xml
     <property>
       <name>hive.security.authorization.sqlstd.confwhitelist.append</name>
       <value>hoodie.*</value>
       <description>
         List of comma separated Java regexes, to be appended to list set in
         hive.security.authorization.sqlstd.confwhitelist. Using this list instead
         of updating the original list means that you can append to the defaults
         set by SQL standard authorization instead of replacing it entirely.
       </description>
     </property>
   ```
   This configuration in Hive should be mentioned in the description document like https://hudi.apache.org/quickstart.html .

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services