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

[hive][error] hive로 MR 작업중 Illegal mix of collations A and B for operation '=' ... 오류

by hs_seo 2017. 4. 11.

하이브 처리중 다음과 같은 오류가 발생할 때가 있다. 


Caused by: org.mariadb.jdbc.internal.util.dao.QueryException: Illegal mix of collations (latin1_bin,IMPLICIT) and (utf8mb4_general_ci,COERCIBLE) for operation '='

at org.mariadb.jdbc.internal.protocol.AbstractQueryProtocol.getResult(AbstractQueryProtocol.java:479)

at org.mariadb.jdbc.internal.protocol.AbstractQueryProtocol.executePreparedQuery(AbstractQueryProtocol.java:592)

at org.mariadb.jdbc.MariaDbServerPreparedStatement.executeInternal(MariaDbServerPreparedStatement.java:279)

... 37 more


이는 where 절에 비교구문(=)에 사용하는 칼럼의 인코딩 타입이 달라서 그렇다. 

hvie 에서는 비교에 사용되는 문자가 깨져서 발생한다. 


where 조건절에 사용되는 칼럼에 깨진 문자가 없는지 확인하면 된다. 

반응형