hive的事务表
事务和非事物的区别和联系
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