voonhous commented on issue #8126: URL: https://github.com/apache/hudi/issues/8126#issuecomment-1667127821
https://stackoverflow.com/questions/64593567/run-jol-core-exception-the-exception-message-is-process-finished-with-exit-cod A stack overflow question documenting this. Pasting the answer/solution that one of the commenter + OP agreed on. # OP ``` After testing I have found the problem and documented it here in the hope that it will help you. The problem occurs because jol-core is an extension for the OpenJDK and cannot be used on the Oracle Java Development Kit. For this reason I changed the local JDK to OpenJDK and ran the code in question to get the correct result ``` # Commentor ``` Because the JDK used by IDEA by default is not OpenJDK, just replace the Project SDK with Open JDK ``` Swapping from an Oracle JDK (which will throw the error) to OpenJDK fixed my issue. -- 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]
