Manthan B Y created HIVE-26476:
----------------------------------
Summary: Iceberg: map "ORCFILE" to "ORC" while creating an iceberg
table
Key: HIVE-26476
URL: https://issues.apache.org/jira/browse/HIVE-26476
Project: Hive
Issue Type: Bug
Reporter: Manthan B Y
*Issue:* Insert query failing with VERTEX_FAILURE
*Steps to Reproduce:*
# Open Beeline session
# Execute the following queries
{code:java}
DROP TABLE IF EXISTS t2;
CREATE TABLE IF NOT EXISTS t2(c0 DOUBLE , c1 DOUBLE , c2 DECIMAL) STORED BY
ICEBERG STORED AS ORCFILE;
INSERT INTO t2(c1, c0) VALUES(0.1803113419993464, 0.9381388537256228);{code}
*Result:*
{code:java}
org.apache.hadoop.hive.ql.io.HiveFileFormatUtils.getRecordWriter(HiveFileFormatUtils.java:294)
at
org.apache.hadoop.hive.ql.io.HiveFileFormatUtils.getHiveRecordWriter(HiveFileFormatUtils.java:279)
... 36 more ]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_1660631059889_0001_8_00 [Map 1] killed/failed due
to:OWN_TASK_FAILURE]Vertex killed, vertexName=Reducer 2,
vertexId=vertex_1660631059889_0001_8_01, diagnostics=[Vertex received Kill
while in RUNNING state., Vertex did not succeed due to OTHER_VERTEX_FAILURE,
failedTasks:0 killedTasks:1, Vertex vertex_1660631059889_0001_8_01 [Reducer 2]
killed/failed due to:OTHER_VERTEX_FAILURE]DAG did not succeed due to
VERTEX_FAILURE. failedVertices:1 killedVertices:1{code}
*Note:* Same query with table in non-iceberg format works without error
--
This message was sent by Atlassian Jira
(v8.20.10#820010)