-
First start the HiveServer by executing
hive --service hiveserver
command -
Make sure that Hive is running by executing
netstat --tnlp | grep 10000
-
Now use the following Java code for connecting and executing simple select query on Hive
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
package com.spnotes.hive; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; /** * Created by gpzpati on 4/26/14. */ public class HelloHiveJDBC { private static String driverName = "org.apache.hadoop.hive.jdbc.HiveDriver"; public static void main(String[] argv) throws Exception{ try { Class.forName(driverName); } catch (ClassNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); System.exit(1); } Connection connection = null; try { connection= DriverManager.getConnection("jdbc:hive://172.16.225.188:10000/default", "", ""); ResultSet resultSet = connection.createStatement().executeQuery("select * from records"); while (resultSet.next()) { System.out.println(resultSet.getObject("year") + " " + resultSet.getObject("temperature")); } }finally{ connection.close(); } } }
Connecting to Hive using JDBC client
I wanted to try out connecting to Hive using a JDBC driver, so i followed these steps. You can download the Maven project from this location
Subscribe to:
Post Comments (Atom)
1 comment:
Post a Comment