1. 程式人生 > 其它 >通過hiveserver遠端服務構建hive web查詢分析工具

通過hiveserver遠端服務構建hive web查詢分析工具

(1)hive 三種啟動方式及用途,本文主要關注通過hiveserver(可jdbc連線)的方式啟動

 1, hive  命令列模式,直接輸入/hive/bin/hive的執行程式,或者輸入 hive --service cli

       用於linux平臺命令列查詢,查詢語句基本跟mysql查詢語句類似

 2, hive  web介面的啟動方式,hive --service hwi  

      用於通過瀏覽器來訪問hive,提供基本的基於web的hive查詢服務,可以看作是hive資料平臺的demo,

具體用法可見:http://www.cnblogs.com/gpcuster/archive/2010/02/25/1673480.html

   使用HIVE的WEB介面:HWI

3, hive  遠端服務 (埠號10000) 啟動方式,nohup ./hive --service hiveserver >/dev/null 2>/dev/null &

      用java等程式實現通過jdbc等驅動的方式訪問hive就用這種起動方式了,這個是程式設計師最需要的方式了。

開源工具phphiveadmin就採用的這種方式,這種方式其實啟動了一個 Hive Thrift Server ,允許你使用任意語言

與hive server通訊,所以如果你不會java,語言將不會成為問題。

(2)給出一個基於hiveserver的demo,這個demo可以擴充套件成一個基於web操作hive的離線分析工具,類似phphiveadmin。

1、demo部署路徑如下:

注:開發環境:myeclipse 8.5, tomcat 6.0

2、code:

2.1 HiveTestCase.java

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;

public class HiveTestCase {
	public static void main(String[] args) throws Exception {
		String querySQL = "SELECT a.name, a.id, a.sex FROM com58 a where a.id > 100 and a.id < 110 and sex='male'";
		hive2Txt(querySQL);
	}

	private static void hive2Txt(String querySQL)
			throws ClassNotFoundException, SQLException {
		Class.forName("org.apache.hadoop.hive.jdbc.HiveDriver");

		// String dropSQL = "drop table com58";
		// 1 male 29 3d649ecc [email protected] 20110304 20110402
		// 1.id 2.sex 3.age 4.name 5.mail 6.sDate 7.eDate
		// String createSQL =
		// "create table com58 (id int, sex string, age int, name string, mail string, sDate bigint, eDate bigint) row format delimited fields terminated by ' '";
		// hive插入資料支援兩種方式一種:load檔案,令一種是 CTAS(create table as select...
		// 從另一個表中查詢進行插入)
		// hive是不支援insert into...values(....)這種操作的
		// String insterSQL =
		// "LOAD DATA LOCAL INPATH '/home/june/hadoop/hadoop-0.20.203.0/tmp/1.txt' OVERWRITE INTO TABLE com58";

		Connection con = DriverManager.getConnection(
				"jdbc:hive://localhost:10000/default", "", "");
		Statement stmt = con.createStatement();
		// stmt.executeQuery(dropSQL); // 執行刪除語句
		// stmt.executeQuery(createSQL); // 執行建表語句
		// stmt.executeQuery(insterSQL); // 執行插入語句
		ResultSet res = stmt.executeQuery(querySQL); // 執行查詢語句

		while (res.next()) {
			System.out.println("name:t" + res.getString(1) + "tid:t"
					+ res.getString(2) + "tsex:t" + res.getString(3));
		}
	}
}

2.2 hiveSelect.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
	pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%@page import="java.util.*"%>
<%@page
	import="java.io.File,
	java.io.FileWriter,
	java.io.IOException,
	java.sql.Connection,
	java.sql.DriverManager,
	java.sql.ResultSet,
	java.sql.SQLException,
	java.sql.Statement"%>


<%
	Class.forName("org.apache.hadoop.hive.jdbc.HiveDriver");
	String table = request.getParameter("table");
	String querySQL = "select * from " + table + " limit 10";
	Connection con = DriverManager.getConnection(
			"jdbc:hive://localhost:10000/default", "", "");
	Statement stmt = con.createStatement();
	//		stmt.executeQuery(dropSQL); // 執行刪除語句
	//		stmt.executeQuery(createSQL); // 執行建表語句
	//		stmt.executeQuery(insterSQL); // 執行插入語句
	ResultSet res = stmt.executeQuery(querySQL); // 執行查詢語句

	FileWriter fw = new FileWriter("/home/june/a.txt");
	while (res.next()) {
		System.out.println("name:t" + res.getString(1) + "tid:t"
				+ res.getString(2) + "tsex:t" + res.getString(3));
		fw.write("name:t" + res.getString(1) + "tid:t"
				+ res.getString(2) + "tsex:t" + res.getString(3)
				+ "n");
	}
	fw.flush();
	fw.close();
%>

<html>
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
		<title>Insert title here</title>
	</head>
	<body>

	</body>
</html>

2.3 select.html

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
		<title>Insert title here</title>
	</head>
	<html>
		<head>
			<title>Hive Web Interface-Create a Hive Session</title>
		</head>
		<body>
			<table>
				<tr>

					<td valign="top">
						<h2>
							select hive table to file.
						</h2>
						<form action="hiveSelect.jsp">
							<table border="1">
								<tr>
									<td>
										Session Name
									</td>
									<td>
										<input type="text" name="table" value="table">
									</td>
								</tr>
								<tr>
									<td colSpan="2">
										<input type="submit">
									</td>
								</tr>
							</table>
						</form>
					</td>
				</tr>
			</table>
		</body>
	</html>

</html>

2.4 最後的結果是在相應的路徑下建立一個檔案輸出,後續你可以用javaMail做一個郵件提醒+下載連結的功能,這樣一個簡易的基於hive的web分析工具就完工了。

REF:

http://blog.csdn.net/a221133/article/details/6734762

http://blog.csdn.net/a221133/article/details/6734746

官方站點:

HiveClient

https://cwiki.apache.org/Hive/hiveclient.html