Hive ACID 表建立

從 hive 0.14 版本開始支援 ACID 表。下表支援 UPDATE / DELETE / INSERT

下面是 hive-site.xml 中所需的配置更改。

 hive.support.concurrency = true
 hive.enforce.bucketing = true
 hive.exec.dynamic.partition.mode = nonstrict
 hive.txn.manager =org.apache.hadoop.hive.ql.lockmgr.DbTxnManager
 hive.compactor.initiator.on = true
 hive.compactor.worker.threads = 1

目前只支援 orc 檔案格式。

表建立語句。

 create table Sample_Table(
 col1 Int,
 col2 String,
 col3 String) 
 clustered by (col3) into 3 buckets 
 stored as orc 
 TBLPROPERTIES ('transactional'='true');