我从现有的 s3 文件在 hive 中创建了一个表,如下所示:
create table reconTable (
entryid string,
run_date string
)
LOCATION 's3://abhishek_data/dump1';
现在我想更新一个条目如下:
update reconTable set entryid='7.24E-13' where entryid='7.24E-14';
但我收到以下错误:
FAILED: SemanticException [Error 10294]: Attempt to do update or delete using transaction manager that does not support these operations.
我在这里浏览了一些帖子,但不知道如何解决这个问题。