hiveserver2 client 내용 정리 beeline
뿐만 아니라 Beeline에 적용 SQLLine의 자세한 설명서가있다.Beeline 쉘이 모두 포함 된 모드뿐만 아니라 원격 모드에서 작동합니다.
원격 모드 서점을 통해 별도의 HiveServer2 프로세스에 연결하는 반면 임베디드 모드에서는 내장 하이브 (하이브 CLI와 유사)를 실행합니다.
Example –
% bin/beeline Hive version 0.11.0-SNAPSHOT by Apache beeline> !connect jdbc:hive2://localhost:10000 scott tiger org.apache.hive.jdbc.HiveDriver !connect jdbc:hive2://localhost:10000 scott tiger org.apache.hive.jdbc.HiveDriver Connecting to jdbc:hive2://localhost:10000 Connected to: Hive (version 0.10.0) Driver: Hive (version 0.10.0-SNAPSHOT) Transaction isolation: TRANSACTION_REPEATABLE_READ 0: jdbc:hive2://localhost:10000> show tables; show tables; +-------------------+ | tab_name | +-------------------+ | primitives | | src | | src1 | | src_json | | src_sequencefile | | src_thrift | | srcbucket | | srcbucket2 | | srcpart | +-------------------+ 9 rows selected (1.079 seconds)
HortonWorks 포럼 어떤 질문들에 달린 답변을 보면(2013년 2월) 현재 ODBC가 있는것으로 보이고 최신 ODBC버전도 곧 나올 것이라는 글이 있었습니다
/usr/lib/hive/bin/beeline
create table test2(a int, b string);
show tables;
실행 결과 [hadoop@localhost bin]$ [hadoop@localhost bin]$ /usr/lib/hive/bin/beeline -hiveconf (No such file or directory) hive.aux.jars.path=file:/usr/lib/hcatalog/share/hcatalog/hcatalog-core.jar (No such file or directory) Hive version 0.10.0.24 by Apache beeline> beeline> show databases; No current connection beeline> beeline> !connect jdbc:hive2://localhost:10000 hadoop hadoop org.apache.hive.jdbc.HiveDriver Connecting to jdbc:hive2://localhost:10000 Connected to: Hive (version 0.10.0) Driver: Hive (version 0.10.0.24) Transaction isolation: TRANSACTION_REPEATABLE_READ 0: jdbc:hive2://localhost:10000> 0: jdbc:hive2://localhost:10000> show databases; +----------------+ | database_name | +----------------+ | default | +----------------+ 1 row selected (1.864 seconds) 0: jdbc:hive2://localhost:10000> create table test2(a int, b string); No rows affected (0.366 seconds) 0: jdbc:hive2://localhost:10000> 0: jdbc:hive2://localhost:10000> show tables; +-----------+ | tab_name | +-----------+ | test | | test2 | +-----------+ 2 rows selected (0.242 seconds) 0: jdbc:hive2://localhost:10000> |
'보물창고 > Big Data' 카테고리의 다른 글
CDH 5.1.0 Documentation Running Spark Application을 발번역한 내요입니다 (1) | 2014.07.23 |
---|---|
Spark Cluster Manager Types (스파크 클러스터 매니저 타입 3종류 번역) (0) | 2014.07.22 |
Spark 스터디 하둡에코 (hadoop) (0) | 2014.07.10 |
Hortonworks 샌드박스에 있는 Ambari 관련 내용 번역 입니다 (sandbox) (0) | 2013.05.06 |
Hortonworks hadoop oozie 트러블슈팅 (0) | 2013.05.01 |
dropdups 인덱스 생성문제 기록 (0) | 2013.04.18 |
hadoop oozie 3.2.0 document 필요한 부분 번역 (Basic Setup, Oozie Quick Start, Oozie Examples 하둡) (0) | 2013.04.11 |
윈도우 하둡 HDInsight 0.4.0 클러스터 구성 - window hadoop HDInsight cluster setting (0) | 2013.04.09 |