Member since
06-14-2016
7
Posts
2
Kudos Received
0
Solutions
06-17-2016
07:24 PM
@manichinnari555, I'm glad to hear this helped. I believe setting at table creation time should be sufficient.
... View more
01-25-2019
02:10 PM
1 Kudo
Got the same issue. Run hive command "desc formatted TABLE_NAME" found : # Storage Information SerDe Library: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe InputFormat: org.apache.hadoop.hive.ql.io.parquet.MapredParquetInputFormat OutputFormat: org.apache.hadoop.hive.ql.io.parquet.MapredParquetOutputFormat The error is caused by SerDe Library. Drop table & recreate table, now the SerDe Library is org.apache.hadoop.hive.ql.io.parquet.serde.ParquetHiveSerDe . Now it's working.
... View more