Open Taaewoo opened 1 year ago
private String scalarNumericType(Object o) {
String s = o.toString();
System.out.println(s.getClass().getName());
if (s.indexOf('.') > 0) {
return "double";
}
else if(Long.parseLong(s) > Integer.MAX_VALUE){
return "bigint";
}
else {
return "int";
}
}
이슈 사항
Spark Streaming으로 HDFS에 parquet 파일로 저장 성공
하지만 Hive 테이블 생성 시 format 설정에 이슈
에러 내용 ( dataVersion은 json 데이터의 key 값 ) Failed with exception java.io.IOException:java.lang.RuntimeException: Unknown hive type info string when searching for field dataVersion