Skip to content
Guillaume Gardey edited this page Jan 15, 2016 · 1 revision

Hive

Doc

Misc

  • Beeline connection string:

    • Standard

          !connect jdbc:hive2://<HOST>:10000/<DATABASE>
      
    • Kerberos

          !connect jdbc:hive2://<HOST>:10000/<DATABASE>;principal=hive/<HIVESERVER2_HOST>@<REALM>
      
    • HTTP

          !connect jdbc:hive2://<HOST>:10000/<DATABASE>;hive.server2.transport.mode=http;hive.server2.thrift.http.path=<http_endpoint>
      
    • SSL

          !connect jdbc:hive2://<HOST>:10000/<DATABASE>;ssl=true;sslTrustStore=<path>;trustStorePassword=<password>
      
  • JDBC

  • look at fetchSize parameter in connecting applications (increasing it may help in retrieving large volume of data)

Clone this wiki locally