You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just faced an issue regarding newer versions of Hive/Serde(Specially on AWS EMR).
org.apache.hadoop.hive.serde2.SerDe Interface is now deprecated and is no longer present in hive-serde jar (As of version 2.3). The fix is easy, just a matter of changing org.apache.hadoop.hive.serde2.SerDe to org.apache.hadoop.hive.serde2.AbstractSerDe on imports
of FusionStorageHandler.java and LWStorageHandler.java. And to extend it on LWSerDe.java
Then recompile.
The text was updated successfully, but these errors were encountered:
Hey Guys this is a problem and a correction.
Just faced an issue regarding newer versions of Hive/Serde(Specially on AWS EMR).
org.apache.hadoop.hive.serde2.SerDe Interface is now deprecated and is no longer present in hive-serde jar (As of version 2.3). The fix is easy, just a matter of changing org.apache.hadoop.hive.serde2.SerDe to org.apache.hadoop.hive.serde2.AbstractSerDe on imports
of FusionStorageHandler.java and LWStorageHandler.java. And to extend it on LWSerDe.java
Then recompile.
The text was updated successfully, but these errors were encountered: