Member since
03-23-2015
1288
Posts
114
Kudos Received
98
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 5201 | 06-11-2020 02:45 PM | |
| 4684 | 04-21-2020 03:38 PM | |
| 3655 | 02-27-2020 05:51 PM | |
| 3661 | 01-23-2020 03:41 AM | |
| 23444 | 01-14-2020 07:14 PM |
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
07-04-2019
09:55 PM
1 Kudo
Hi @Sidhartha, The error means that the destination table base.customers already has the partition source_name=ORACLE, as the error indicated: Partition already exists [customers(source_name=ORACLE)] Can you run : SHOW PARTITIONS base.customers; to confirm? If yes, try to drop it and then run EXCHANGE PARTITION again. Cheers Eric
... View more
06-19-2019
04:42 PM
1 Kudo
Hi Mogiking, On the version I was testing (CDH 6.2) the duration looks correct, but the queries do not show up until they are completely closed. I was able to force this from the Impala Daemon Web UI, or by waiting, or by closing hue. -Andrew
... View more
06-13-2019
09:47 AM
Hi Eric, The user= and password= parameters worked once I put the connection string in single quotes ' '. This is an example of what worked. [user@serverHostName ~]$ beeline -u 'jdbc:hive2://serverFQDN:10000/demo;ssl=true;sslTrustStore=/opt/jdk/hive.truststore.jks;trustStorePassword=trustPassword;user=testUser;password=testUserPassword' Double qoutes should work too. Thanks for the help!
... View more
05-18-2019
05:02 PM
Hi Tomas, This message is normal behaviour and expected to happen when the Datanode's security key manager rolls its keys. It will cause clients to print this whenever they use the older cached keys, but the post-action of printing this message is that the client refetches the new key and the job completes. Since Impala is a client of HDFS, there is no concern or worry about this message, as it is part of normal operation. We also see this from HBase logs, which is again, normal. Hope above helps. Cheers Eric
... View more
05-13-2019
01:44 AM
I checked the log but nothing indicates a server side issue. From the server side it indicates that the client has cancelled. I have tested the ODBC driver using a client app (C#) and things were fine. So I'm now trying to see if there is something to be done from SQL Server side. Thanks a lot for your support.
... View more
05-07-2019
09:15 PM
1 Kudo
I don't see super easy way, but below might help: 1. if this table is not external, make it external first: ALTER TABLE <table> SET TBLPROPERTIES('EXTERNAL'='TRUE') 2. drop the table 3. create a new table and define same partition column 4. manually move files in another 4 partition directories into the 6 partition directories that you want to keep evenly 5. remove the empty directories under the table 6. msck repair table to recover the 6 current partitions Hope above can help. Eric
... View more
04-12-2019
07:32 PM
1 Kudo
Hi, I would suggest to use INT rather than STRING. Firstly, searching based INT type is faster, and secondly, like you said, you can do numeric comparison, which will be different from the STRING type comparison.
... View more
03-25-2019
08:06 AM
Hi, So how do you scale Hive Metastore when you need to support more than 80 active connections? According to Cloudera's documentation they only mention supporting up to 80 connections which needs 16-24GB. Does passing 80 connection requires to continue extending the Heap Memory? How big can it be since 24GB is already too big isn't it? Attaching Cloudera's memory setup recommendations: https://www.cloudera.com/documentation/enterprise/5-15-x/topics/cdh_ig_hiveserver2_configure.html Best, Eyal
... View more
01-27-2019
08:01 PM
SELECT DAYS_SUB(NOW(), DAYOFWEEK(NOW()) +1) AS last_friday; Thats what i needed. Thank you!!
... View more
- « Previous
- Next »