lokeshj1703 commented on issue #7430: URL: https://github.com/apache/hudi/issues/7430#issuecomment-1362712165
@soumilshah1995 AWS uses its own fork of Hudi and Presto for Athena. ``` jar tf hudi-presto-bundle-0.12.1.jar | grep -i InstantiatorStrategy org/apache/hudi/com/esotericsoftware/kryo/Kryo$DefaultInstantiatorStrategy$1.class org/apache/hudi/com/esotericsoftware/kryo/Kryo$DefaultInstantiatorStrategy$2.class org/apache/hudi/com/esotericsoftware/kryo/Kryo$DefaultInstantiatorStrategy.class org/apache/hudi/org/objenesis/strategy/InstantiatorStrategy.class org/apache/hudi/org/objenesis/strategy/SingleInstantiatorStrategy.class org/apache/hudi/org/objenesis/strategy/StdInstantiatorStrategy.class org/apache/hudi/org/objenesis/strategy/BaseInstantiatorStrategy.class org/apache/hudi/org/objenesis/strategy/SerializingInstantiatorStrategy.class ``` As you can see, the InstantiatorStrategy classes are shaded in the Hudi Presto bundle. But the error shown by Athena relates to an unshaded class `GENERIC_INTERNAL_ERROR: org/objenesis/strategy/InstantiatorStrategy`. -- 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]
