Member since
09-02-2016
3
Posts
0
Kudos Received
0
Solutions
10-18-2017
07:05 AM
I am trying to install the cloudera distribution according to the guide here https://www.cloudera.com/documentation/enterprise/latest/topics/cdh_ig_cdh5_install.html#topic_4_4_1__p_44 This no longer works because the archive.key used by cloudera is no longer considered secure. pub dsa1024 2009-04-22 [SC]
F36A 89E3 3CC1 BD0F 7107 9007 3275 74EE 02A8 18DD
uid [ unknown] Cloudera Apt Repository
sub elg2048 2009-04-22 [E] As you can see, the key is quite old and using algorithms that are no longer considered secure by Debian9 (and latest Ubuntu versions). an apt update fails with: Err:6 http://archive.cloudera.com/cdh5/ubuntu/xenial/amd64/cdh xenial-cdh5 InRelease
The following signatures were invalid: F36A89E33CC1BD0F71079007327574EE02A818DD Please update your repository with a key following modern security standards. 🙂
... View more
Labels:
- Labels:
-
Manual Installation
08-14-2017
01:59 AM
Hi, I have been struggling with this issue for the past week and running out of options, I hope somebody could help us. We want to use hive.reloadable.aux.jars.path (introduced with HIVE-7553 in Hive 0.14) to put some SerDes and UDFs into HiveServer2's classpath (so users don't need to ADD JAR for every query, and we don't need to restart HS2 to roll out new versions of our libraries). I set hive.reloadable.aux.jars.path to point at a local directory on HS2's filesystem and it shows up set correctly on the web ui. (hs2:10002/conf) When connecting to HS2 via beeline, I can now do a show create table on tables using custom serdes, and doing a select * from tbl limit 10 (which basically gives a preview), so our jars have been successfully added to the classpath of our hive session. so far so good! Unfortunately, this doesn't work whenever we run queries that launch mapreduce stages. The query compiles fine and starts, but the Mappers don't have the additional jars added to their classpath so they fail when trying to read from the table. I had a look at org.apache.hadoop.hive.ql.exec.mr.ExecDriver where all the magic is supposed to happen and I cannot figure out how reloadable jars are supposed to be added to the mapred tasks. Seems like it never happens. We are using CDH 5.8.0 Appreciating any help on this! 🙂
... View more
Labels:
- Labels:
-
Apache Hive