Member since
07-01-2015
460
Posts
78
Kudos Received
43
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1346 | 11-26-2019 11:47 PM | |
1304 | 11-25-2019 11:44 AM | |
9473 | 08-07-2019 12:48 AM | |
2177 | 04-17-2019 03:09 AM | |
3486 | 02-18-2019 12:23 AM |
12-06-2017
06:00 AM
Have you installed Unlimited cryptography for JAVA? (JCE) Maybe there is a problem, that the algortihm is too strong.
... View more
12-06-2017
05:57 AM
Try the solution from this post http://community.cloudera.com/t5/Advanced-Analytics-Apache-Spark/ClassNotFoundException-org-apache-htrace-Trace-exception-in/td-p/29200
... View more
12-01-2017
12:43 AM
1 Kudo
For Mapreduce and Spark jobs (running on YARN) you should be able to report from Resource Pools. There is a chart of Per Pool allocation, containers running etc. Of course Impala usage is not included, there you have to report from Impala Queries Workload summary and manually report from the history of queries - you have to choose a KPI, whether it is cpu time, or HDFS scanned or something else.
... View more
11-30-2017
04:38 AM
Have you resolved this? I had a similar issue, but did not find any answer for that
... View more
11-26-2017
12:23 PM
You can check it by SHOW CURRENT ROLES what priviliges you have under this user
... View more
11-26-2017
12:22 PM
If the user really has a server ALL, then he can do anything. So I beleive, that the users group is not resolved correclty to a "regular_group" and therefore the Query does not pass throught the security check.
... View more
11-26-2017
12:19 PM
Try to change your producer config: com.sun.security.auth.module.Krb5LoginModule required useTicketCache=false useKeyTab=true storeKey=true keyTab="path to the file.keytab" principal="kafka/ip-10-197-17-69.eu-west-1.compute.internal@DOMAIN" And try to change the consumer config: security.protocol=SASL_PLAINTEXT sasl.mechanism=GSSAPI sasl.kerberos.service.name=kafka
... View more
11-26-2017
12:14 PM
Do you have this directory created? Are the permissions correctly set on this path?
... View more
11-26-2017
12:00 PM
Try to use a newer version of Java 1.8, Do you have other Java installed as well (openjdk)?
... View more
11-26-2017
11:54 AM
1 Kudo
Of course you have a error. Because the insert statement tries to do this: INSERT INTO TABLE am_temp2 Partition (search_date=2017-11-18) insted of this: INSERT INTO TABLE am_temp2 Partition (search_date="2017-11-18") or this: INSERT INTO TABLE am_temp2 Partition (search_date=20171118)
... View more