【发布时间】:2017-03-14 14:37:21
【问题描述】:
我的表名“records”带有描述:
hive> desc records;
OK
year string
temperature int
quality int
根据Apache documentation 可以在 Hive 1.2.1 中进行更新(0.14.0 之后的版本)
我尝试了更新命令并得到了下面提到的错误:
hive> update records
> set quality=8
> where year='2000';
FAILED: SemanticException [Error 10294]: Attempt to do update or delete using transaction manager that does not support these operations.
我到底错过了什么? 是代码还是表格不满足任何条件(限制)?
【问题讨论】: