0 votes
in Hive by

Give examples of the SerDe classes which hive uses to Serialize and Deserialize data?

1 Answer

0 votes
by

Basically, to Serialize and Deserialize data Hive uses its classes;

MetadataTypedColumnsetSerDe

So, to read/write delimited records we use this Hive SerDe. Such as CSV, tab-separated control-A separated records (sorry, quote is not supported yet).

ThriftSerDe

To read/write Thrift serialized objects, we use this Hive SerDe. However, make sure, for the Thrift object the class file must be loaded first.

DynamicSerDe

To read/write Thrift serialized objects we use this Hive SerDe.

Related questions

0 votes
asked Feb 22, 2020 in Big Data | Hadoop by SakshiSharma
0 votes
asked Jun 22, 2023 in Hadoop by rajeshsharma
...