I am currently Facing an issue while inserting the data from Hive MultiSerde Table (Multi Character as Delimiter) into a Parquet table and encounter the below error
org.apache.hive.service.cli.HiveSQLException: Error while processing statement: FAILED: Execution Error, return code 2 from org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed,
I have created a Hive Landing Table Which has a MultiCharacter as Delimiter (@#@) and is set as MultiSerde.
I also have a Hive Staging Table which is a Parquet Format and is set as ParquetHiveSerDe.
I can view the data in Hive landing which is a Multidelimiter. However when i'm trying to insert from Landing to Staging (insert into hive_staging.table select * from hive_landing.table), I encounter an error.
Please let me know what am i missing here?
Thanks in Advance