Member since
05-24-2019
314
Posts
11
Kudos Received
5
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
114 | 12-13-2024 08:17 AM | |
1017 | 07-22-2024 01:41 PM | |
1859 | 09-21-2023 06:52 AM | |
4335 | 02-17-2023 10:46 AM | |
2229 | 06-08-2022 08:39 AM |
09-20-2023
11:53 AM
@Lorenzo On CDP Hive the Spark engine is deprecated if favor of TEZ
... View more
05-03-2023
01:14 PM
Hello! SQOOP takes advantage of YARN to create a distributed IMPORT/EXPORT job To do so, it needs to compile your query for the mappers to actually execute the job Check out the following links for further information: https://sqoop.apache.org/docs/1.4.7/SqoopUserGuide.html - Section 8.2 Table 18 https://github.com/apache/sqoop/blob/trunk/src/java/org/apache/sqoop/orm/CompilationManager.java#L50 Hope this helps, Sincerely, José M Martínez Poblete Cloudera Support Hive SME US/East/Shift5 my.cloudera.com/faq/support.html USA: 1-866-809-4659 INTL: 1-650-425-9421
... View more
02-17-2023
10:46 AM
PK, If you have access to the Sentry Store backend use a query like this: SELECT r.ROLE_NAME, g.GROUP_NAME, p.*, FROM_UNIXTIME(p.CREATE_TIME / 1000) as CREATE_TIME_DATE FROM SENTRY_ROLE r INNER JOIN SENTRY_ROLE_GROUP_MAP rgm ON r.ROLE_ID = rgm.ROLE_ID INNER JOIN SENTRY_GROUP g ON g.GROUP_ID = rgm.GROUP_ID INNER JOIN SENTRY_ROLE_DB_PRIVILEGE_MAP rpm ON r.ROLE_ID = rpm.ROLE_ID INNER JOIN SENTRY_DB_PRIVILEGE p ON p.DB_PRIVILEGE_ID = rpm.DB_PRIVILEGE_ID; Hope it helps, -JMP
... View more
02-14-2023
08:41 AM
Use the following command reference These are to be executed from Hive Beeline to view Role Privileges and Assignments > SHOW ROLES; List available roles > SHOW CURRENT ROLES; List roles assigned to current user/group > SHOW ROLE GRANT GROUP <GROUP NAME>; Lists the roles that are assigned to the specified group. > SHOW GRANT ROLE <ROLE>; Lists the permissions that have been granted to the specified role. >SHOW GRANT ROLE <role name> ON <object type> <object name> Lists the permissions that a role has on an object.
... View more
02-13-2023
10:08 AM
What is the specific version of HDP /CDH / CDP ?
... View more
01-23-2023
03:18 PM
1 Kudo
Note the class should be com.cloudera.hive.jdbc.HS2Driver Make sure to use the parameters as detailed in the driver docs shared on the previous response A sample KNOX JDBC string looks similar to this: jdbc:hive2://<HOST>:8443/default;SSL=1;SSLTrustStore=/etc/truststore.jks;SSLTrustStorePwd=changeit;AuthMech=3;TransportMode=http;httpPath=gateway/cdp-proxy-api/hive;UseNativeQuery=0;IgnoreTransactions=1;LogLevel=6;LogPath=/tmp/jdbc/ When all details have been entered, click on Test Connection Good Luck!
... View more
09-21-2022
04:20 PM
1 Kudo
Gabriel, We'd still recommend to have it enabled in only one instance To avoid race conditions and such Thank You, -JMP
... View more
06-08-2022
08:39 AM
1 Kudo
Hello Gabriel, Only 1 metastore should have the compactor enabled Personally, I would use the last of the metastores listed on hive-site.xml for Hive on TEZ since it normally is the least used Best. -JMP
... View more
06-06-2022
02:51 PM
1 Kudo
Andrea, On the node running HS2, locate the most recent hive.keytab using ``` ls -ltr /var/run/cloudera-scm-agent/process/*hive_on_tez-HIVESERVER2/hive.keytab | tail -1 ``` Then kinit as `hive/@REALM` After that, you should be able to scan directories owned by the Hive user ``` hdfs dfs -ls /tmp/hive ``` Hope this helps -JMP
... View more
06-02-2022
12:00 PM
Hi Andrea, Is this a kerberized environment? Best, -JMP
... View more
- « Previous
-
- 1
- 2
- Next »