We have Spring boot application service which call Hadoop distcp API.
Application working fine for Spring-boot-starter-parent 3.1.0 and Hadoop version 3.3.6
When we changed spring-boot-starter-parent version to 3.2 or 3.3 for OSS vulnerabilities. It gives following exception.
org.apache.hadoop.fs.UnsupportedFileSystemException : fs.AbstractFileSystem.nested.impl=null : No AbstractFileSystem configured for scheme: nested
at org.apache.hadoop.fs.AbstractFileSystem.createFileSystem(AbstractFileSystem.java:177)
Need to find after upgrading which dependency causing this issue.
Is there way we can include of exclude specific dependency to overcome this issue.