Member since
09-13-2015
8
Posts
0
Kudos Received
0
Solutions
03-07-2016
07:37 AM
Hi, I'm sorry for the repeated question but i want to be sure that i cannot use hive acid features with cloudera cdh 5.4.5. Aren't there a way to use the update/delete statement of hive in cdh 5.4.5 or later? Thank you.
... View more
02-28-2016
01:29 AM
The Hive "Streaming" feature is built upon its unsupported [1] transactional features: https://cwiki.apache.org/confluence/display/Hive/Streaming+Data+Ingest This feature (the ACID one) uses the tables you've mentioned, when DbTxnManager is in use as per the suggested configs. Cloudera does not recommend the use of ACID features currently, because it is experimental in stability/quality upstream [1]. But anyways, checking some code [2] if all data is compacted in your table then the entries under COMPLETED_TXN_COMPONENTS should be deleted away. Do you see any messages such as "Unable to delete compaction record" in your HMS log? Or any WARN+ log from CompactionTxnHandler class in general? Looking for that and then working over the error should help you solve this. [1] - http://www.cloudera.com/documentation/enterprise/latest/topics/cdh_rn_hive_ki.html, specific quote: """ Hive ACID is not supported Hive ACID is an experimental feature and Cloudera does not currently support it. """ [2] - https://github.com/cloudera/hive/blob/cdh5.5.2-release/metastore/src/java/org/apache/hadoop/hive/metastore/txn/CompactionTxnHandler.java#L320, etc.
... View more
09-14-2015
12:02 AM
Ok, I resolved this problem by restart service cloudera-scm-server
... View more