【问题标题】:ClassNotFoundException while spark-submitting a JAR on EMR在 EMR 上火花提交 JAR 时出现 ClassNotFoundException
【发布时间】:2018-06-23 20:54:16
【问题描述】:

我正在使用 eclipse/Maven 创建一个 JAR 并在 EMR 上运行它

这是我的 pom.xml 文件

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.sudarshan</groupId>
    <artifactId>SparkApplication</artifactId>
    <version>SQL</version>
    <packaging>jar</packaging>

    <name>SparkApplication</name>
    <url>http://maven.apache.org</url>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <repositories>
        <repository>
            <id>cloudera</id>
            <url>https://repository.cloudera.com/artifactory/cloudera-repos/</url>
        </repository>
    </repositories>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.scala-lang</groupId>
            <artifactId>scala-library</artifactId>
            <version>2.11.1</version>
        </dependency>

        <!-- https://mvnrepository.com/artifact/org.apache.spark/spark-core -->
        <dependency>
            <groupId>org.apache.spark</groupId>
            <artifactId>spark-core_2.11</artifactId>
            <version>2.2.0</version>
        </dependency>


        <!-- https://mvnrepository.com/artifact/org.apache.hadoop/hadoop-client -->
        <dependency>
            <groupId>org.apache.hadoop</groupId>
            <artifactId>hadoop-client</artifactId>
            <version>2.7.3</version>
        </dependency>


        <!-- https://mvnrepository.com/artifact/org.apache.hadoop/hadoop-common -->
        <dependency>
            <groupId>org.apache.hadoop</groupId>
            <artifactId>hadoop-common</artifactId>
            <version>2.7.3</version>
            <scope>provided</scope>
        </dependency>



    </dependencies>

    <build>
        <plugins>
            <!-- Maven Assembly Plugin -->
            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <configuration>
                    <archive>
                        <manifest>
                            <mainClass>financialLineItem.FinancialLineItem</mainClass>
                        </manifest>
                    </archive>
                    <descriptorRefs>
                        <descriptorRef>jar-with-dependencies</descriptorRef>
                    </descriptorRefs>
                </configuration>
                <executions>
                    <execution>
                        <id>make-assembly</id>
                        <phase>package</phase> <!-- packaging phase -->
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>

这就是我在 EMR 集群中部署和运行 jar 的方式

spark-submit --deploy-mode cluster --class financialLineItem.FinancialLineItem s3://path/SparkApplication-SQL-jar-with-dependencies.jar

当我在 zeppelin 笔记本中运行我的代码时,它运行良好,但在 spark-submit 中它会引发以下异常

Exception in thread "main" java.lang.ClassNotFoundException: financialLineItem.FinancialLineItem

这是我的项目设置的样子:

如何解决这个问题?

我还按照下面的文档创建火花并在 EMR 中提交 https://docs.aws.amazon.com/emr/latest/ReleaseGuide/emr-spark-submit-step.html 在这里,他们既不是在 spark 作业配置中设置主 URL,也不是在从 spark-submit 提交时

【问题讨论】:

    标签: java scala hadoop apache-spark amazon-emr


    【解决方案1】:

    您的pom.xml 中缺少sourceDirectory

    根据Maven docs for Standard Directory Layout,默认sourceDirectorysrc/main/java,并且由于您的项目结构是src/main/scala,因此不会编译这些类。

    在你的构建配置下添加这个:

    <build>    
        <sourceDirectory>src/main/scala</sourceDirectory>
        <testSourceDirectory>src/test/scala</testSourceDirectory>
        <finalName>Sample</finalName>
        <plugins>
            <plugin>
                <groupId>net.alchim31.maven</groupId>
                <artifactId>scala-maven-plugin</artifactId>
                <version>3.1.3</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>compile</goal>
                            <goal>testCompile</goal>
                        </goals>
                        <configuration>
                            <args>
                                <arg>-make:transitive</arg>
                                <arg>-dependencyfile</arg>
                                <arg>${project.build.directory}/.scala_dependencies</arg>
                            </args>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
    
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.13</version>
                <configuration>
                    <useFile>false</useFile>
                    <disableXmlReport>true</disableXmlReport>
                    <!-- If you have classpath issue like NoDefClassError,... -->
                    <!-- useManifestOnlyJar>false</useManifestOnlyJar -->
                    <includes>
                        <include>**/*Test.*</include>
                        <include>**/*Suite.*</include>
                    </includes>
                </configuration>
            </plugin>
            <!-- 
            Maven Assembly Plugin
            -->
        </plugins>
    </build>
    

    【讨论】:

      【解决方案2】:

      当您在集群模式下运行 spark-submit 时,驱动程序运行在与客户端不同的机器上,因此您在 spark-submit 脚本中提供的 jar 需要放在驱动程序的类路径中像这样:-

      --driver-class-path s3://path/SparkApplication-SQL-jar-with-dependencies.jar
      

      所以你可以试试下面的脚本:

      spark-submit --deploy-mode cluster --class financialLineItem.FinancialLineItem --driver-class-path s3://path/SparkApplication-SQL-jar-with-dependencies.jar
      

      【讨论】:

        猜你喜欢
        • 2018-04-20
        • 2017-11-24
        • 2019-11-13
        • 2020-04-05
        • 1970-01-01
        • 1970-01-01
        • 2017-12-25
        • 2016-08-05
        • 2017-08-26
        相关资源
        最近更新 更多