Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 방화벽
- Big Sur
- STS
- datanodes
- Vo
- Angular
- vm
- CentOS
- DBeaver
- Statement
- Guava
- jre
- Hive
- hive-site.xml
- PreparedStatement
- bom
- Mutable
- jdk
- hadoop
- Immutable
- DOM
- dao
- react
- DTO
- ssh
- JPS
- variable
- Vue.js
- centos8
- Linux
Archives
- Today
- Total
목록Hive (3)
개미 개발자

에러 발생 mysql에 hive 스키마를 생성하려고 schematool -initSchema -dbType mysql 명령어를 사용하니 다음과 같은 에러가 나왔다. 에러 해결 위 에러는 database의 이름이 중복되었기 때문에 발생한 에러이다. 다음과 같이 해결하였다. mysql -u root -p drop database hive;
Error
2022. 2. 1. 18:58

에러 발생 hive를 실행하였더니 다음과 같은 에러가 발생하였다. 에러 해결 에러에서 나온대로 hive-site.xml의 3215번째 줄을 보았더니 다음과 같이 이상한 문자가 있어 빼주었다.  을 빼주고 다시 hive를 실행했더니 해결이 되었다.
Error
2022. 2. 1. 18:53

에러 발생 hive를 실행시켰더니 다음과 같은 에러가 발생하였다. 에러 해결 guava-19.0.jar를 guava-27.0-jre.jar로 바꾸었더니 해결되었다. rm /home/hadoop/hive-3.1.2/lib/guava-19.0.jar cp /home/hadoop/hadoop-3.2.2/share/hadoop/hdfs/lib/guava-27.0-jre.jar /home/hadoop/hive-3.1.2/lib/ 참고 사이트 https://issues.apache.org/jira/browse/HIVE-22915
Error
2022. 2. 1. 18:48