xiaoyuyao commented on a change in pull request #942: HDDS-1587. Support dynamically adding delegated classes from to isolated class loader. URL: https://github.com/apache/hadoop/pull/942#discussion_r292720912
########## File path: hadoop-ozone/common/src/main/bin/ozone-config.sh ########## @@ -49,3 +49,8 @@ else exit 1 fi +# HADOOP_OZONE_DELEGATED_CLASSES defines a list of classes which will be loaded by default +# class loader of application instead of isolated class loader. With this way we can solve +# incompatible problem when using hadoop3.x + ozone with older hadoop version. +#export HADOOP_OZONE_DELEGATED_CLASSES= Review comment: This may not work because we expect to expose an environment variable but the code in FilteredClassLoader only load a system property. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
