Hadoop java.io.IOException: Mkdirs failed to create /some/path

后端 未结 8 1787
无人共我
无人共我 2020-11-28 04:49

When I try to run my Job I am getting the following exception:

Exception in thread \"main\" java.io.IOException: Mkdirs failed to create /some/path
    at or         


        
8条回答
  •  温柔的废话
    2020-11-28 05:45

    In my case below lines of code in pom.xml in Maven project worked on Mac.

      
        org.apache.maven.plugins
        maven-shade-plugin
        2.0
        
          true
        
        
          
            package
            
              shade
            
              
                
                  
                    *:*
                    
                      META-INF/*.SF
                      META-INF/*.DSA
                      META-INF/*.RSA
                      META-INF/LICENSE*
                      license/*
                    
                  
                
            
          
        
      
    

提交回复
热议问题