1、thrift2的连接方式和thrift的连接方式相同,首先先开启hbase thrift2的服务
./hbase-daemon.sh start thrift2 -f
简单示例
const thrift = require("thrift");
const HBase = require("../gen-nodejs/THBaseService"); // 接口文件
const HBaseTypes = require("../gen-nodejs/hbase_types");
const transport = thrift.TFramedTransport;
const protocol = thrift.TBinaryProtocol;
const connection = thrift.createConnection("10.7.128.18", 9090, {
transport: transport,
protocol: protocol,
});
connection.on("error", function (err) {
console.log("error:", err);
});
connection.on("close", function (err) {
console.log("close");
});
const client = thrift.createHttpClient(HBase, connection);
client.listNamespaces().then(r=>console.log(r))
2、python也可以通过thrift命令生成对应的文件,上篇文章中的happybase只支持thrift,不支持thrift2
thrift --gen py Hbase.thrift
3、引入生成的模块即可
本文介绍如何使用Node.js和Python通过Thrift2连接HBase服务。提供了Node.js的示例代码,展示了如何创建连接及调用listNamespaces方法。同时提及Python通过Thrift命令生成对应文件的方法。
1351

被折叠的 条评论
为什么被折叠?



