Member since
11-05-2018
32
Posts
1
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
3114 | 07-10-2019 04:37 AM |
11-28-2019
12:24 PM
Kudu's HMS integration is a CDH 6.3 feature. If you would like to use it end-to-end, you'll have to use it with CDH 6.3. That said, even without the Kudu's native HMS integration, in all versions of CDH, when using Impala "internal" or "managed" Kudu tables (see here for more details), Impala will create HMS metadata on behalf of Kudu.
... View more
08-26-2019
08:56 AM
1 Kudo
Just a note about the CM API: From what I can tell, the API doesn't bring more parameters back that what you can see in the Configuration tab for each app/service. Being able to see them in the INFO logs was exactly what was needed. However, it would be nice to be able to use the API to get the same info as the INFO logs provides. I could see some automation opportunities in the future...
... View more
08-19-2019
09:59 AM
To be sure that your user have access to warehouse location please try run something like below val warehouseLocation = new File("spark-warehouse").getAbsolutePath
val spark = SparkSession
.builder()
.appName("Spark Hive Example")
.config("spark.sql.warehouse.dir", warehouseLocation)
.enableHiveSupport()
.getOrCreate() Regards, Bart
... View more
07-10-2019
04:48 PM
Hi, It looks like that you have set configuration hive.query.redaction.rules somewhere, though I can't see it from the command you ran. Couple of things to check: 1. run "which beeline" to confirm that you are running original beeline command, not a custom one 2. check under ~/.beeline directory to see if there is any user level files that might override the default settings 3. use different users to run beeline to see if there is any differences. Thanks Eric
... View more
01-16-2019
03:22 AM
To use aes encryption you need to install jce. Be aware also that encryption types on cloudera side should be inline with kerberos server configuration.
... View more