2010-11-13 06:35:42 +05:30
|
|
|
# Hive CSV Support
|
2010-11-13 06:33:34 +05:30
|
|
|
|
2010-11-13 06:35:42 +05:30
|
|
|
add jar path/to/csv-serde.jar;
|
2010-11-13 06:33:34 +05:30
|
|
|
|
2010-11-13 06:35:42 +05:30
|
|
|
create table my_table(a string, b string, ...)
|
|
|
|
row format serde 'com.bizo.hive.serde.csv.CSVSerde'
|
|
|
|
stored as textfile
|
|
|
|
;
|
2010-11-13 06:33:34 +05:30
|
|
|
|
2010-11-13 06:41:32 +05:30
|
|
|
see: http://dev.bizo.com/2010/11/csv-and-hive.html
|