while generating the parquet file i am getting below error, using spring boot native image with graalvm, below is the stack trace do i need to add resouce
at org.apache.parquet.hadoop.ParquetWriter$Builder.build(ParquetWriter.java:566)
at org.apache.parquet.hadoop.util.HadoopOutputFile.fromPath(HadoopOutputFile.java:58)
at org.apache.hadoop.fs.Path.getFileSystem(Path.java:187)
at org.apache.hadoop.fs.FileSystem.get(FileSystem.java:247)
at org.apache.hadoop.fs.FileSystem.get(FileSystem.java:124)
at org.apache.hadoop.fs.FileSystem.get(FileSystem.java:263)
at org.apache.hadoop.fs.FileSystem$Cache.get(FileSystem.java:1455)
at org.apache.hadoop.fs.FileSystem$Cache$Key.<init>(FileSystem.java:1554)
at org.apache.hadoop.security.UserGroupInformation.getCurrentUser(UserGroupInformation.java:503)
at [email protected]/javax.security.auth.Subject.getSubject(Subject.java:306)
at [email protected]/sun.security.util.ResourcesMgr.getString(ResourcesMgr.java:40)
at [email protected]/sun.security.util.ResourcesMgr.getBundle(ResourcesMgr.java:54)
at [email protected]/java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1708)
at [email protected]/java.util.ResourceBundle.getBundle(ResourceBundle.java:858)
at [email protected]/java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:1549)
at [email protected]/java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:1575)
at [email protected]/java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:1683)
at [email protected]/java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:2045)
java.util.MissingResourceException: Can't find bundle for base name sun.security.util.Resources, locale en_US
i have tried with adding ressouces with runtime hints but still gettting the same error
hints.resources().registerPattern("core-default.xml");
hints.resources().registerPattern("core-site.xml");