Hive(4)--자바 에서 thrift 인터페이스 조작 Hive 알림
3195 단어 빅 데이터
hadoop.proxyuser.china.hosts
*
hadoop.proxyuser.china.groups
*
2.hive 설정 수정 hive 설정 파일 hive-site.xml
hive.server2.thrift.bind.host
10.131.24.179
Bind host on which to run the HiveServer2 Thrift service.
hive.server2.thrift.port
10000
Port number of HiveServer2 Thrift interface when hive.server2.transport.mode is 'binary'.
hive.server2.thrift.client.user
china
Username to use against thrift client
hive.server2.thrift.client.password
123456
Password to use against thrift client
3.hadop 시작: sbin/start-dfs.sh&sbin/start-yarm.sh 는 hive 의 thrift 인 터 페 이 스 를 시작 합 니 다.두 가지 방식 이 있 습 니 다.a,bin/hive--service hiveserver 2 b,bin/hiveserver 24,hive 의 bin/beeline 이 hive 의 thrift 클 라 이언 트 방문 도구 임 을 검증 하고 클 라 이언 트 에 들 어 갑 니 다.bin/beeline 생 성 연결: !connect jdbc:hive 2://192.168.0.1:10000 china 1234565,hive thrift 인 터 페 이 스 를 연결 할 때 자주 보고 합 니 다 User:china is not allowed to impressonate root 오 류 는 이 때 hadop 의 core-site.xml 파일 과 hive 의 hive-site.xml 파일 을 앞에서 설정 하지 않 았 기 때 문 입 니 다.여기 서 잘못된 china 이름 은 앞에서 설정 한 china 이름 이 어야 합 니 다.구체 적 으로 각 설정 에 따라 값 을 작성 해 야 합 니 다.3.자바 작업 hive 1,maven 의존 추가
org.apache.hive
hive-jdbc
2.3.2
org.apache.hive
hive-common
2.3.2
org.apache.hive
hive-exec
2.3.2
org.apache.hive
hive-metastore
2.3.2
org.apache.hive
hive-service
2.3.2
2.예시
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.Statement;
public class HiveStudyMain {
public static void main(String[] args) throws Exception {
// ,
Class.forName("org.apache.hive.jdbc.HiveDriver");
Connection conn = DriverManager.getConnection("jdbc:hive2://192.168.0.1:10000/school", "china", "123456");
Statement st = conn.createStatement();
//
String sql = "select * from stu";
ResultSet rs = st.executeQuery(sql);
while (rs.next()) {
System.out.println(rs.getString("id"));
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
spark 의 2: 원리 소개Google Map/Reduce 를 바탕 으로 이 루어 진 Hadoop 은 개발 자 에 게 map, reduce 원 어 를 제공 하여 병렬 일괄 처리 프로그램 을 매우 간단 하고 아름 답 게 만 들 었 습 니 다.S...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.