Questions tagged [lazysimpleserde]

LazySimpleSerDe is a class used in Apache Hive for reading and writing delimited files. LazySimpleSerDe creates Objects in a lazy way, to provide better performance. Also LazySimpleSerDe outputs typed columns instead of treating all columns as String like MetadataTypedColumnsetSerDe or OpenCSVSerDe

JavaDocs: LazySimpleSerDe

2 questions
1
vote
1 answer

What format applies to the Hive LazySimpleSerDe

What exactly is the format for Hive LazySimpleSerDe? A format like ParquetHiveSerDe tells me that Hive will read the HDFS files in parquet format. But what is LazySimpleSerDe? Why not call it something explicit like CommaSepHiveSerDe or…
Victor
  • 16,609
  • 71
  • 229
  • 409
0
votes
0 answers

Is there a way I can load accented letters to hive using openCSVSerde?

I am trying to load a table in Hive which has accented letters. I was initially using openCSVSerde to parse the CSV file and load it to the table. However, when I come to the accented letters, it prints a � in place of the accented letters. I have…
thecuriouscat
  • 59
  • 2
  • 8