Spark SQL fails with java.lang.NoClassDefFoundError: org/codehaus/commons/compiler/UncheckedCompileException

后端 未结 6 477
一整个雨季
一整个雨季 2021-02-05 10:24

Running a Spark SQL (v2.1.0_2.11) program in Java immediately fails with the following exception, as soon as the first action is called on a dataframe:

java.lang         


        
6条回答
  •  梦毁少年i
    2021-02-05 10:55

    The culprit is the library commons-compiler. Here is the conflict:

    To work around this, add the following to your pom.xml:

    
        
            
                org.codehaus.janino
                commons-compiler
                2.7.8
            
        
    
    

提交回复
热议问题