使用beeline连接hive
1 | kinit -kt xxx.keytab xxx |
参考:
1 | https://docs.cloudera.com/runtime/7.2.7/securing-hive/topics/hive_remote_data_access.html |
如果要想直接运行SQL,可以
1 | beeline -u "jdbc:hive2://10.65.13.98:10000/default;principal=hive/_HOST@CLOUDERA.SITE" --silent=true --outputformat=tsv2 --showHeader=false -e "select * from xxx.xxx" |
退出beeline
1 | !quit |