Type mismatch in key from map: expected org.apache.hadoop.io.LongWritable, recieved org.apache.hadoop.io.Text
역시 구글, 타입을 지정안해서 나는 오류 였습니다.
스택오버플로 짱
Add these 2 lines in your code :
job.setMapOutputKeyClass(Text.class);
job.setMapOutputValueClass(IntWritable.class);
You are using TextOutputFormat
which emits LongWritable key and Text value by default, but you are emitting Text as key and IntWritable as value. You need to tell this to the famework.
HTH
'Study > Bigdata' 카테고리의 다른 글
Hbase Thrift Java Client Demo (0) | 2015.03.09 |
---|---|
hive web interface(hwi) 설치하기 (0) | 2015.02.11 |
Hbase, org.apache.hadoop.hbase.TableExistsException: hbase:namespace (0) | 2015.02.03 |
Hadoop MapReduce 여러개 Map, Reduce 실행하기 [JobControl 이용시 Stop이 안될때] (0) | 2014.04.02 |
하둡 HDFS 폴더의 파일 갯수 확인 방법 (0) | 2014.03.18 |
하둡(hadoop) 한개 노드 태스크 트래커(tasktracker),데이터노드(datanode) 종료 (0) | 2014.01.23 |