Member since
06-13-2017
49
Posts
3
Kudos Received
2
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1335 | 12-07-2020 10:18 AM | |
1303 | 07-29-2017 10:23 AM |
12-26-2017
10:21 AM
I refered this link. https://www.hortonworks.com/tutorial/using-hive-acid-transactions-to-insert-update-and-delete-data/
... View more
08-24-2017
06:31 AM
You need phoenix-client libs in classpath for remote PQS connection.
... View more
08-23-2017
11:43 AM
HDP sandbox requires over 8GB RAM so you cannot run it on your system. I recommend 16GB virtual machine.
... View more
08-08-2017
09:16 AM
Try this, hive> delete emptable where ods='2017_06_30' and code!='123'; ---> hive> delete from emptable where ods='2017_06_30' and code!='123';
... View more
08-07-2017
07:13 AM
1 Kudo
Finally, I deleted a row !!! There are lots of limitations with following link(ex: bucket, orc, set variables, ...) https://cwiki.apache.org/confluence/display/Hive/Hive+Transactions#HiveTransactions-Limitations 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; create table test_delete (
id int,
name string
) CLUSTERED BY (id) INTO 2 BUCKETS STORED AS ORC TBLPROPERTIES ("transactional"="true"); INSERT INTO TABLE test_delete VALUES (31, 'aaa31'); INSERT INTO TABLE test_delete VALUES (32, 'aaa32'); INSERT INTO TABLE test_delete VALUES (33, 'aaa33'); INSERT INTO TABLE test_delete VALUES (34, 'aaa34'); INSERT INTO TABLE test_delete VALUES (35, 'aaa35'); hive> select * from test_delete; OK 31 aaa31 32 aaa32 33 aaa33 34 aaa34 35 aaa35 Time taken: 0.06 seconds, Fetched: 5 row(s) delete from test_delete where name = 'aaa33'; hive> select * from test_delete; OK 32 aaa32 34 aaa34 31 aaa31 35 aaa35 Time taken: 0.129 seconds, Fetched: 4 row(s)
... View more
08-07-2017
02:37 AM
1 Kudo
Delete/Update in Hive, There are some limitation. Plz check this link 'https://cwiki.apache.org/confluence/display/Hive/LanguageManual+DML#LanguageManualDML-Delete'
... View more
07-31-2017
01:53 PM
HDP 2.6 sandbox file size is so big. I recommend you should use download manager apps(ex. Internet Download Manager) with this link 'https://downloads-hortonworks.akamaized.net/sandbox-hdp-2.6/HDP_2.6_virtualbox_05_05_2017_14_46_00_hdp.ova'.
... View more
07-29-2017
10:23 AM
You need to setup 'shared folder' between sandbox and windows on VMware. And then refer this link for Kafka Producer 'https://community.hortonworks.com/questions/4140/hdp-twitter-demo-send-data-into-kafka-from-csv.html'
... View more
07-29-2017
10:06 AM
I think you need load balancing for Spark Thrift servers. Why don't you refer this link? 'https://community.hortonworks.com/questions/29687/how-to-do-load-balancing-spark-thrift-servers-on-h.html'
... View more
- « Previous
- Next »