事務和非事物的區別和聯系
https://blog.csdn.net/KreaWu/article/details/82967084
1.hive事務表在hdfs的存儲
https://blog.csdn.net/zjerryj/article/details/91470261
2.hive支持事務表的配置
a.thrift的方式
https://blog.csdn.net/hr787753/article/details/79173936?utm_source=blogxgwz3
創建的表必須是 分桶的 orc 的 事務表
create table t1(id int, name string)
clustered by (id) into 8 buckets
stored as orc TBLPROPERTIES ('transactional'='true');
3.hive創建表的三種方式
https://www.jianshu.com/p/3fa967cb4309