web-dev-qa-db-ja.com

必須フィールド「client_protocol」が設定されていません

私はHive 0.12を使用しており、ApacheからJDBCを試しています。コードを実行しようとすると、Apache.thrift.TApplicationExceptionが発生します。

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.Hive.jdbc.HiveDriver";

/**
 * @param args
 * @throws SQLException
 */
public static void main(String[] args) throws SQLException {
    try {
        Class.forName(driverName);
    } catch (ClassNotFoundException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
        System.exit(1);
    }
    //replace "Hive" here with the name of the user the queries should run as
    Connection con =      DriverManager.getConnection("jdbc:Hive2://localhost:10000/default", "Hive", "");
    Statement stmt = con.createStatement();
    String tableName = "testHiveDriverTable";
    stmt.execute("drop table if exists " + tableName);
    stmt.execute("create table " + tableName + " (key int, value string)");
    // show tables
    String sql = "show tables '" + tableName + "'";
    System.out.println("Running: " + sql);
    ResultSet res = stmt.executeQuery(sql);
    if (res.next()) {
        System.out.println(res.getString(1));
    }
    // describe table
    sql = "describe " + tableName;
    System.out.println("Running: " + sql);
    res = stmt.executeQuery(sql);
    while (res.next()) {
        System.out.println(res.getString(1) + "\t" + res.getString(2));
    }

    // load data into table
    // NOTE: filepath has to be local to the Hive server
    // NOTE: /tmp/a.txt is a ctrl-A separated file with two fields per line
    String filepath = "/tmp/a.txt";
    sql = "load data local inpath '" + filepath + "' into table " + tableName;
    System.out.println("Running: " + sql);
    stmt.execute(sql);

    // select * query
    sql = "select * from " + tableName;
    System.out.println("Running: " + sql);
    res = stmt.executeQuery(sql);
    while (res.next()) {
        System.out.println(String.valueOf(res.getInt(1)) + "\t" + res.getString(2));
    }

    // regular Hive query
    sql = "select count(1) from " + tableName;
    System.out.println("Running: " + sql);
    res = stmt.executeQuery(sql);
    while (res.next()) {
        System.out.println(res.getString(1));
    }
}

}

必要なすべてのjarをインポートしました。コードを実行しようとすると、次のエラーが表示されます。

 org.Apache.thrift.TApplicationException: Required field 'client_protocol' is unset!   Struct:TOpenSessionReq(client_protocol:null)

どうすれば修正できますか?

19
user3782579

これは、クライアントとサーバー間のバージョンの不一致、つまりクライアントがサーバーよりも新しいことを示しています。

24
Ihar Sadounikau

同じ問題になりました。設定すると機能します

1.1.0としてのHive JDBC Maven Repoバージョン。

このjiraを確認してください。最新のHive-jdbcバージョンは、Hive 0.13ではサポートされていません。 https://issues.Apache.org/jira/browse/Hive-605

これをPOMに追加します。

<dependency>
  <groupId>org.Apache.Hive</groupId>
  <artifactId>Hive-jdbc</artifactId>
  <version>1.1.0</version>
  <classifier>standalone</classifier>
</dependency>
14
Kamaldeep Singh

みんな私も同じ問題に直面し、次の手順を実行して解決策を取ります

ステップ01:-以下のリンクを使用して、Hive lib jarをEclipse(IDEである可能性があります)に含めます。

http://mirrors.supportex.net/Apache/Hive/hive-1.0.1/ (Apache-Hive-1.0.1-bin.tar.gz)

ステップ02:hadoop-core-1.1.0 jarを追加する

全員が述べたように、このエラーは、hadoopスタンドアロンおよびhadoopコアとのバージョンの不一致が原因で発生します。

0
Sunny