Hive 配置单元ACID表引发错误失败:aws EMR中不支持UnsupportedOperationException openTxn

Hive 配置单元ACID表引发错误失败:aws EMR中不支持UnsupportedOperationException openTxn,hive,amazon-emr,Hive,Amazon Emr,我尝试在AWS EMR 6.3.0中创建Hive ACID表。我已经设置了在配置单元管理的表上启用ACID属性所需的参数。设置属性后,在创建表时,我遇到以下错误失败:不支持UnsupportedOperationException openTxn 请找到我遵循的步骤 步骤1: set hive.support.concurrency = true; set hive.enforce.bucketing = true; set hive.exec.dynamic.partition.mode =

我尝试在AWS EMR 6.3.0中创建Hive ACID表。我已经设置了在配置单元管理的表上启用ACID属性所需的参数。设置属性后,在创建表时,我遇到以下错误失败:不支持UnsupportedOperationException openTxn

请找到我遵循的步骤

步骤1:

set hive.support.concurrency = true;
set hive.enforce.bucketing = true;
set hive.exec.dynamic.partition.mode = nonstrict;
set hive.txn.manager =org.apache.hadoop.hive.ql.lockmgr.DbTxnManager;
set hive.compactor.initiator.on = true;
set hive.compactor.worker.threads = 1;
步骤2:

hive>
    >
    > create table Sample_Table2(
    > col1 Int,
    > col2 String,
    > col3 String)
    > clustered by (col3) into 3 buckets
    > stored as orc
    > TBLPROPERTIES ('transactional'='true');
FAILED: UnsupportedOperationException openTxn is not supported