java.lang.NoClassDefFoundError: org/apache/hadoop/fs/StorageStatistics

前端 未结 1 871
轮回少年
轮回少年 2020-12-02 01:13

I\'m trying to run a simple spark to s3 app from a server but I keep getting the below error because the server has hadoop 2.7.3 installed and it looks like it doesn\'t incl

相关标签:
1条回答
  • 2020-12-02 01:36

    You can't mix bits of Hadoop and expect things to work. It's not just the close coupling between internal classes in hadoop-common and hadoop-aws, its things like the specific version of the amazon-aws SDK the hadoop-aws module was built it.

    Unless you can isolate classpaths, you'll need to roll your POM back to 2.7.3.

    Sorry

    0 讨论(0)
提交回复
热议问题