Member since
03-23-2015
1288
Posts
114
Kudos Received
98
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
3404 | 06-11-2020 02:45 PM | |
5115 | 05-01-2020 12:23 AM | |
2911 | 04-21-2020 03:38 PM | |
3587 | 04-14-2020 12:26 AM | |
2403 | 02-27-2020 05:51 PM |
09-05-2019
07:19 AM
Found this fix: https://github.com/cloudera/thrift_sasl/commit/d105152438ff78c2b1c041c79d1bcce25a760bb2 Unfortunately it throws other errors down the line. There seem to be a series of bugs in thrift_sasl.
... View more
09-04-2019
03:44 AM
Hi Can you please try with alias names, actually this is not working without alias in Query e.g., select col_a AS COL_A from SAMPLE_TABLE; this works!
... View more
09-04-2019
01:44 AM
@ Vinit_Kratin, If low response time is a must, then Hive is not an option, Impala should be faster. HBase designed tables require a row key, which means, all data you want to retrieve will need this key to be queried against HBase. So for your event based data, if you need to use an event id to store and retrieve data, then hbase might be suitable. I still suggest you to go through details of differences between HBase and Hive and Impala to get a better understanding. Google is your friend. Cheers Eric
... View more
09-01-2019
07:32 PM
Hi @tuk, It will only get backported into CDH after it has been fixed upstream. Since it is still open, and no solution is provided, CDH won't have the fix either. Cheers Eric
... View more
09-01-2019
05:50 PM
@VijayM , Couple of questions: 1. Are CDH6 and CDH5 managed by same Cloudera Manager, or you manage yourself? 2. From the setting you applied below: spark.yarn.jars=local:/opt/cloudera/parcels/CDH-6.2.0-1.cdh6.2.0.p0.967373/lib/spark/jars/*,local:/opt/cloudera/parcels/CDH-6.2.0-1.cdh6.2.0.p0.967373/lib/spark/hive/*,local:/app/bds/parcels/CDH-5.16.2-1.cdh5.16.2.p0.8/lib/spark/lib/* It looks like you have both CDH6.2 and CDH5.16 running on the same host, is that right? Any reason you want to do so? As @JosiahGoodson mentioned, spark2 and spark1 are not compatible, you should either have Spark1, or Spark2 jars in the classpath, not both, otherwise they will conflict. Cheers Eric
... View more
09-01-2019
05:42 AM
Thanks @Shelton for your info. But @kal 's command got message "Key table file '/etc/security/keytabs/hive.service.keytab' not found", so I am not sure if it is relevant. Cheers
... View more
08-30-2019
05:48 PM
@LeonanCarvalho In order to find out why it takes time, you need to look at the AM log, see at what stage it was hung and maybe try to get the jstacks of both AM and HS2 to see which thread might be blocking and cause the hang. 6 minutes timeout is a bit long. Is your data quite big? Cheers Eric
... View more
08-30-2019
12:54 AM
@iamabug The principal names are generated based on host's actual FULL qualified domain name, so it has to match with actual hostname, otherwise Kerberos will not work. So what you want in my opinion will not work, as kerberos is quite fuzzy about DNS resolutions. Cheers Eric
... View more
08-29-2019
11:38 PM
@EricL thanks first of all, i know this option but for my use case is not so simple. I have a qlik sense server with refresh processes that run on a specific Windows User XXXX (and a Kerberos from windows context). I would use N ODBC connector for different projects cause every project needs to access a portion of the whole Hive. The processes of QlikSense are managed by its own internal scheduler and runs with only one, XXXX, service user. Does anyone managed a such similar scenario? Thanks Robbby
... View more
08-29-2019
04:13 PM
Running Impala query over driver from Spark is not currently supported by Cloudera. Why don't you just use SparkSQL instead? Why need to have extra layer of impala here? Cheers Eric
... View more