执行HIVE时报错:
This command is not allowed on an ACID table xxx.xxx_table with a non-ACID transaction manager
解决方案:
执行前添加两行
SET hive.support.concurrency=true; SET hive.txn.manager=org.apache.hadoop.hive.ql.lockmgr.DbTxnManager; select * from xxxtable;

执行HIVE时报错:
This command is not allowed on an ACID table xxx.xxx_table with a non-ACID transaction manager
解决方案:
执行前添加两行
SET hive.support.concurrency=true; SET hive.txn.manager=org.apache.hadoop.hive.ql.lockmgr.DbTxnManager; select * from xxxtable;