Member since
07-26-2016
49
Posts
2
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
3506 | 11-28-2017 09:54 PM |
01-01-2020
04:24 AM
I was also facing same issue like you. Then I had followed these steps and it worked for me : set hive.support.concurrency=true; set hive.enforce.bucketing=true; set hive.exec.dynamic.partition.mode=nonstrict; set hive.txn.manager=org.apache.hadoop.hive.ql.lockmgr.DbTxnManager; set hive.compactor.initiator.on=true; set hive.compactor.worker.threads=2; Then I changed added hive.in.test property=true in the hive-site.xml file in /usr/lib/hive location. After that I restarted the Hive from HUE and then ran the update command and it worked for me.
... View more
11-04-2018
08:16 AM
what did you do? did you have to edit /etc/resolv in on the individual instances?
... View more
09-11-2018
06:51 PM
Please check the link https://hortonworks.com/blog/update-hive-tables-easy-way/ hope this helps.
... View more
11-28-2017
09:54 PM
1 Kudo
After updating the ip address in cloudera manager level. ned to do the following. #cdsw reset Next Intialize the CDSW #cdsw init Automaticly the IP address will update. Thanks.
... View more
11-21-2017
12:53 AM
command : sudo -u hdfs hdfs fsck -list-corruptfileblocks For deleting corrupted files : sudo -u hdfs hdfs fsck / -delete Thanks.
... View more
05-29-2017
04:25 AM
While you create external table - mention the LOCATION ' ' ( i,e The default location of Hive table is overwritten by using LOCATION ) Then load data from HDFS using ' inpath ' - if you drop the table it will only remove the pointer from the hdfs and will not delete the data in the hdfs. CREATE EXTERNAL TABLE text1 ( wban INT, date STRING)
ROW FORMAT DELIMITED
FIELDS TERMINATED BY ‘,’
LOCATION ‘ /hive/data/text1’; LOAD DATA INPATH ‘hdfs:/data/2000.txt’ INTO TABLE TABLE_NAME ;
... View more
07-28-2016
05:29 AM
Dear Romainr, Please share the HUE 4 User guide. Thanks, Syam.
... View more