hudi-bot opened a new issue, #15691: URL: https://github.com/apache/hudi/issues/15691
Serializable interface implementation don't explicitly declare serialVersionUID, which causes the InvalidClassException for the deserialization. Serializable interface implementation should explicitly declare serialVersionUID for all the implementation including their subclass implementation. ## JIRA info - Link: https://issues.apache.org/jira/browse/HUDI-5558 - Type: Improvement --- ## Comments 20/Jan/23 20:23;alexey.kudinkin;This is not correct: we should not be overriding `serialVersionUID` – mismatching `serialVersionUID`s means that class has changed and it might not be safe to assume that you can safely deserialize serialized representation of the older version of the class. What's exact issue you're trying to solve here?;;; -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
