**结束。**此问题需要详细的调试信息。它目前不接受答案。
**想改进这个问题吗?**更新问题,使其成为堆栈溢出的主题。
6年前关门了。
改进这个问题
我是新来的Hive。我正在尝试这个代码输入链接描述在这里
这是我的密码
import java.sql.SQLException;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.Statement;
import java.sql.DriverManager;
public class HiveJdbcClient {
private static String driverName = "org.apache.hadoop.hive.jdbc.HiveDriver";
public static void main(String[] args) throws SQLException {
try {
Class.forName(driverName);
System.out.println("Drive loaded...");
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
System.exit(1);
}
System.out.println("Before Connecting to hive...");
try {
Connection con = DriverManager.getConnection("jdbc:hive://servername:10001/test","hive","hive");
System.out.println("Connected to hive..");
Statement stmt = con.createStatement();
String tableName = "testHiveDriverTable";
ResultSet res = stmt.executeQuery("create table " + tableName + " (key int, value string)");
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
System.exit(1);
}
}
}
当我运行程序时,它只执行驱动程序加载步骤,但当drivermanager.getconnection()执行时,它将永远运行。所以它不会给出任何异常或错误。所以请帮我解决这个问题。
2条答案
按热度按时间atmip9wb1#
在命令行上启动hiveserver服务,然后尝试运行hive server hive--service hiveserver&
66bbxpm52#
最后我得到了答案。我使用hiveserver2。
这是我的代码。
以下是所需的jar。