zhangyue19921010 edited a comment on issue #4188: URL: https://github.com/apache/hudi/issues/4188#issuecomment-985239656
Hi @h7kanna I just dig into source code, and it seems a Concurrent issue cause ``` Caused by: java.lang.NullPointerException at org.apache.hudi.hadoop.HoodieROTablePathFilter.accept(HoodieROTablePathFilter.java:185) ``` you mentioned. Sadly I failed to reproduce this errors on my env so that not sure if it was the root cause :< Could you please do me a favor, change ` this.hoodieTableFileSystemViewCache = new HashMap<>();` to ` this.hoodieTableFileSystemViewCache = new ConcurrentHashMap<>();` And have a try to reproduce this error. -- 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]
