我想用spring數據hadoop寫一個簡單的文本到HDFS。 但是我在寫作時遇到了一個未知的問題。使用spring數據寫入HDFS時的問題hadoop
異常線程 「main」 org.springframework.data.hadoop.store.StoreException:存儲輸出 方面尚未初始化;嵌套異常是java.io.IOException: 意外的HTTP響應:代碼= 404!= 200,op = GETFILESTATUS, message = Not Found at org.springframework.data.hadoop.store.support.OutputStoreObjectSupport.getOutputContext(OutputStoreObjectSupport。的java:135) 在 org.springframework.data.hadoop.store.output.AbstractDataStreamWriter.getOutput(AbstractDataStreamWriter.java:131) 在 org.springframework.data.hadoop.store.output.TextFileWriter.write(TextFileWriter。 java:132) at com.mstack.app.MainApp.someMethod(MainApp.java:37)at com.mstack.app.MainApp.main(MainApp.java:32)導致: java.io.IOException:意外的HTTP響應:代碼= 404!= 200, op = GETFIL ESTATUS,消息=未找到在 org.apache.hadoop.hdfs.web.WebHdfsFileSystem.validateResponse(WebHdfsFileSystem.java:347) 在 org.apache.hadoop.hdfs.web.WebHdfsFileSystem.access $ 200(WebHdfsFileSystem.java: 90) 在 org.apache.hadoop.hdfs.web.WebHdfsFileSystem $ AbstractRunner.runWithRetry(WebHdfsFileSystem.java:613) 在 org.apache.hadoop.hdfs.web.WebHdfsFileSystem $ $ AbstractRunner.access 100(WebHdfsFileSystem.java :463) 在 org.apache.hadoop.hdfs.web.WebHdfsFileSystem $ AbstractRunner $ 1.run(WebHdfsFileSystem.java:492) 在java.security.AccessController.doPrivileged(本機方法)在 javax.security.auth中。 Subject.doAs(Subject.java:422) 個org.apache.hadoop.security.UserGroupInformation.doAs(UserGroupInformation.java:1657) 在 org.apache.hadoop.hdfs.web.WebHdfsFileSystem $ AbstractRunner.run(WebHdfsFileSystem.java:488) 在 org.apache .hadoop.hdfs.web.WebHdfsFileSystem.getHdfsFileStatus(WebHdfsFileSystem.java:848) 在 org.apache.hadoop.hdfs.web.WebHdfsFileSystem.getFileStatus(WebHdfsFileSystem.java:858) 在org.apache.hadoop.fs。 FileSystem.exists(FileSystem.java:1424)at org.springframework.data.hadoop.store.support.OutputStoreObjectSupport.findInitFiles(OutputStoreObjectSupport.java:111) at org.springframework.data.hadoop.store.support.OutputStoreObjectSupport .initOutputContext(OutputStoreObj ectSupport.java:93) at org.springframework.data.hadoop.store.support.OutputStoreObjectSupport.getOutputContext(OutputStoreObjectSupport.java:133) ... 4 more引發:java.io.IOException:Content-Type「文本/無格式」 是不兼容的 「應用程序/ JSON」(解析= 「text/plain的」)在 org.apache.hadoop.hdfs.web.WebHdfsFileSystem.jsonParse(WebHdfsFileSystem.java:320) 在 org.apache .hadoop.hdfs.web.WebHdfsFileSystem.validateResponse(WebHdfsFileSystem.java:343) ...... 18多個
我的應用上下文。XML: -
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/hadoop"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:hdp="http://www.springframework.org/schema/hadoop" xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/hadoop http://www.springframework.org/schema/hadoop/spring-hadoop.xsd">
<hdp:configuration id="hadoopConfigBean">
fs.defaultFS=${hdp.fs}
</hdp:configuration>
<context:annotation-config />
<beans:bean id="textFileWriter"
class="org.springframework.data.hadoop.store.output.TextFileWriter">
<beans:constructor-arg index="0" ref="hadoopConfigBean"></beans:constructor-arg>
<beans:constructor-arg index="1"
type="org.apache.hadoop.fs.Path" value="/user/mhduser"></beans:constructor-arg>
<beans:constructor-arg index="2" type="org.springframework.data.hadoop.store.codec.CodecInfo" >
<beans:null></beans:null>
</beans:constructor-arg>
</beans:bean>
<context:property-placeholder location="hadoop-configs.properties" />
</beans:beans>
主要類: -
public class MainApp {
@Autowired
TextFileWriter textFileWriter;
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("/META-INF/spring/application-context.xml",
MainApp.class);
System.out.println("Context loaded...");
MainApp obj = new MainApp();
context.getAutowireCapableBeanFactory().autowireBean(obj);
obj.someMethod();
}
private void someMethod() {
try {
textFileWriter.write("Something");
} catch (IOException e) {
e.printStackTrace();
}
}
}
任何幫助,將不勝感激!謝謝
文件做並沒有在服務器上發現了什麼? –
不確定webhdfs的工作效果如何,但您的'hdp.fs'設置是什麼? –
@JanneValkealahti:我的hdp.fs設置-hdp.fs = webhdfs://192.168.1.53:8020 – Sachin