0

根据此处的链接https://cwiki.apache.org/Hive/hiveclient.html#HiveClient-ThriftJavaClient。它说

Thrift Java Client 在嵌入式模式和独立服务器上运行。

如何在嵌入式模式下使用 hive 运行 thrift java 客户端?

4

2 回答 2

2

所以这里是如何在嵌入式模式下运行 hive 'thrift' 客户端。

import org.apache.hadoop.hive.service.HiveInterface;
import org.apache.hadoop.hive.service.HiveServer;
...
HiveInterface hiveClient = new HiveServer.HiveServerHandler();

将以下内容添加到类路径

$HIVE_HOME/lib/*.jar

$HIVE_HOME/conf

我在这里的蜂巢源代码中找到了这个 $HIVE_HOME/src/jdbc/src/java/../HiveConnection.java

于 2012-07-24T20:55:55.043 回答
0

Hive 使用 Thrift 作为 RPC 框架,thrift rpc 使得“在嵌入式模式和独立服务器上运行”变得容易。

客户端模式(连接到独立服务器)

    HiveConf hiveConf = new HiveConf();
    hiveConf.addResource("/Users/tzp/pppathh/hive-site.xml");

    TTransport transport = new TSocket("127.0.0.1", 10000);
    transport = PlainSaslHelper.getPlainTransport(USERNAME, PASSWORD, transport);
    TBinaryProtocol protocol = new TBinaryProtocol(transport);
    transport.open();

    ThriftCLIServiceClient cliServiceClient = new ThriftCLIServiceClient(new TCLIService.Client(protocol), hiveConf);
    SessionHandle sessionHandle = cliServiceClient.openSession(USERNAME, PASSWORD);

    OperationHandle operationHandle = cliServiceClient.executeStatement(sessionHandle, "select * from u_data_ex limit 2", null);
    RowSet results = cliServiceClient.fetchResults(operationHandle);

    for (Object[] result : results) {
        System.out.println(Arrays.asList(result));
    }

嵌入式模式(无外部服务器)

    HiveConf hiveConf = new HiveConf();
    hiveConf.addResource("/Users/tzp/ppppathh/hive-site.xml");
    hiveConf.set("fs.defaultFS", "hdfs://localhost:9000");

    EmbeddedThriftBinaryCLIService service = new EmbeddedThriftBinaryCLIService();
    service.init(hiveConf);

    ICLIService icliService = service.getService();
    SessionHandle sessionHandle = icliService.openSession(USERNAME, PASSWORD, null);

    OperationHandle operationHandle = icliService.executeStatement(sessionHandle, "select * from u_data_ex limit 2", null);
    RowSet results = icliService.fetchResults(operationHandle);

    for (Object[] result : results) {
        System.out.println(Arrays.asList(result));
    }

这个问题真的很老了,但我仍然需要一些解决方案,但是在 google/so/hive wiki 上没有任何有用的信息,所以我深入研究了源代码并找到了这些。

全部基于 Hive 3.1.2。

参考:

  • org.apache.hive.service.server.HiveServer2
  • org.apache.hive.service.cli.CLIServiceTest
  • org.apache.hive.service.cli.thrift.ThriftCLIServiceTest
于 2020-05-12T07:26:30.773 回答