Hive-jdbc 드라이버
1258 단어 Hive
1. hiveserver2 , 10000
$>hive --service hiveserver2 &
2. beeline hiveserver2
$>beeline // beeline ( hive --service beeline)
$beeline>!help //
$beeline>!quit //
$beeline>!connect jdbc:hive2://localhost:10000/mydb2// hibve
$beeline>show databases ;
$beeline>use mydb2 ;
$beeline>show tables;
jdbc 방식으로 원격 데이터 창고에 접근하기
의존하다
org.apache.hive
hive-jdbc
2.1.0
코드:
/**
* jdbc hive , hiveserver2 。
*/
public class App {
public static void main(String[] args) throws Exception {
Class.forName("org.apache.hive.jdbc.HiveDriver");
Connection conn = DriverManager.getConnection("jdbc:hive2://192.168.136.128:10000/mydb2");
Statement st = conn.createStatement();
ResultSet rs = st.executeQuery("select id , name ,age from t");
while(rs.next()){
System.out.println(rs.getInt(1) + "," + rs.getString(2)) ;
}
rs.close();
st.close();
conn.close();
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Hive 통합 ElasticSearch역할: Hive 데이터를 Es에 직접 입력 Index 를 생성합니다 Type의 매핑을 생성합니다 es-hive 관련 Jar 패키지를 다운로드하여 HDFS에 넣습니다 Hive 관련 JAR 패키지 추가 ES 외부 테이블...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.