본문 바로가기
빅데이터/hive

[hive][error] java.io.IOException: Not a file

by hs_seo 2016. 12. 1.

<개요>

하이브에서 다음과 같이 지정한 경로에 파일이 존재하지 않으면 

다음과 같은 오류가 발생한다. 


Launching Job 1 out of 1

Number of reduce tasks is set to 0 since there's no reduce operator

java.io.IOException: Not a file: hdfs://경로

at org.apache.hadoop.mapred.FileInputFormat.getSplits(FileInputFormat.java:286)


<해결방안>

이럴때는 지정한 경로 하위의 디렉토리까지 읽을 수 있게 지정하면 된다. 

다음의 프로퍼티를 설정하면 된다. 


SET mapred.input.dir.recursive=TRUE;


반응형