I have a CSV data with each field surronded with double quotes. When I created Hive table used serde 'com.bizo.hive.serde.csv.CSVSerde' When above table is queried in Impala I am getting error SerDe not found.
I added the CSV Serde JAR file in /usr/lib/impala/lib folder.
Later studied in Impala documentation that Impala does not support custom SERDE. In such case how I can overcome this issue such that my CSV data with quotes is taken care. I want to use CSV Serde because it takes of commas in values which is a legitimate field vavlue.
Thanks a lot
CREATE TABLE copy_of_table STORED AS PARQUET AS SELECT * FROM your_original_table
otherwise Hive return a syntax exception. – Monnet