Member since
01-15-2019
274
Posts
23
Kudos Received
29
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
742 | 01-29-2024 03:30 AM | |
1100 | 02-21-2023 05:50 AM | |
870 | 01-17-2023 05:53 AM | |
813 | 12-29-2022 03:07 AM | |
3323 | 06-28-2022 08:16 AM |
06-03-2020
06:02 AM
@vincentD Post CDH 6.0.x Hue does not work well with TCompactProtocol protocol based on HUE-2692 Please perform below steps for the fix: - CM --> Hbase --> Configuration --> Search for hbase.regionserver.thrift.compact
- If it is checked, please UNCHECK it and restart Hbase service Retry Hbase browser access Hope this helps, Paras Was your question answered? Make sure to mark the answer as the accepted solution. If you find a reply useful, say thanks by clicking on the thumbs up button.
... View more
05-28-2020
05:06 AM
@Mondi You can simply add the hue admin user to the group of sentry admin. Both the group and user should exist locally on cluster nodes and the hue admin user should be a part of this sentry admin group. Refer below document to set ACLs for the directories. https://docs.cloudera.com/documentation/enterprise/6/6.3/topics/cdh_sg_hdfs_ext_acls.html#xd_583c10bfdbd326ba--6eed2fb8-14349d04bee--76a9 Hope this helps, Paras Was your question answered? Make sure to mark the answer as the accepted solution. If you find a reply useful, say thanks by clicking on the thumbs up button.
... View more
05-27-2020
06:20 AM
@syedshakir Hue database requires UTF8 character set. Please refer below document https://docs.cloudera.com/documentation/enterprise/6/6.3/topics/hue_dbs_mysql.html#concept_vjx_lrl_ww Regarding the alerts with hive and impala, please check below points: 1. Hive and Impala service should be enabled with Hue under Hue -> Configuration -> Hive/Impala Service 2. Add the respective hive server and Impala ports uder the below Hue configuration on Cloudera Manager. Hue Service Advanced Configuration Snippet (Safety Valve) for hue_safety_valve.ini [impala] server_port=<portnumber> [beeswax] hive_server_port=<portnumber> 3. Restart the Hue service post the changes. Hope this helps, Paras Was your question answered? Make sure to mark the answer as the accepted solution. If you find a reply useful, say thanks by clicking on the thumbs up button.
... View more
05-27-2020
06:02 AM
@Mondi The unable to obtain groups message indicates that the admin user on hue is not added to the cluster nodes. The user and its associated access groups should also be present on the cluster nodes. Please create the user if it does not exist, add it to the group of sentry admins and retry. What is the CDH version of your cluster? Are you able to modify ACLs of the HDFS directories from the command line using setfacl commands as the same user?
... View more
05-27-2020
04:06 AM
@Sourav1982 You can use parquet-tools and avro-tools command to check the file metadata. Use the meta option to extract the compression details. Refer https://github.com/apache/parquet-mr/tree/master/parquet-tools Hope this helps, Paras Was your question answered? Make sure to mark the answer as the accepted solution. If you find a reply useful, say thanks by clicking on the thumbs up button.
... View more
05-26-2020
09:08 PM
@Mondi You cannot disable the download option in Hue per user. A more plausible way to not allow any specific path download would be to simply deny the user permission to read or write to the HDFS directory itself.
... View more
05-26-2020
04:58 AM
1 Kudo
@Mondi You can set the below Hue configuration in CM Hue Service → Configuration → Service-Wide → Advanced → Hue Service Advanced Configuration Snippet (Safety Valve) for hue_safety_valve.ini and add the following:
[desktop]
enable_download=false
And then restart Hue.
... View more
05-26-2020
04:28 AM
@Amey3 You cannot directly unzip the files in HDFS. You would have to uncompress the files on local and then place it on HDFS. You can use Hue which uses a shell action in oozie to automate this. The files are uncompressed in the local and then uploaded to HDFS. https://gethue.com/extract-archives-as-oozie-job/ Hope this helps, Paras Was your question answered? Make sure to mark the answer as the accepted solution. If you find a reply useful, say thanks by clicking on the thumbs up button.
... View more
05-19-2020
07:36 AM
@Mondi It is highly recommended to install kerberos as a prerequisite before using sentry. HiveServer2 and the Hive Metastore (HMS) running with strong authentication. For HiveServer2, strong authentication is either Kerberos or LDAP. For the Hive Metastore, only Kerberos is considered strong authentication (to override, see Securing the Hive Metastore). Below document mentions the prerequisites in detail: https://docs.cloudera.com/documentation/enterprise/latest/topics/sg_sentry_before_you_install.html#prerequisites Hope this helps, Paras Was your question answered? Make sure to mark the answer as the accepted solution. If you find a reply useful, say thanks by clicking on the thumbs up button.
... View more
05-19-2020
07:27 AM
1 Kudo
@Mondi The property setting the retainment period can be found at: Cloudera Manager -> Cloudera Management Service -> Configuration -> and in the search field please type: "Navigator Audit Server Data Expiration Period" After reducing this retention period and restarting the Nav Audit server role, the tables/data should be purged. If you still see old audit data remaining you can proceed with manual purging: Connect to your database.
> show databases;
> use <nav_audit_database>;
> show tables;
> drop table <audit_event_table>; You can also set audit filters for difffernt services to have a control on audit collection. https://docs.cloudera.com/documentation/enterprise/6/6.3/topics/cn_admcfg_audit_filters.html Hope this helps, Paras Was your question answered? Make sure to mark the answer as the accepted solution. If you find a reply useful, say thanks by clicking on the thumbs up button.
... View more