节点配置单元连接

axzmvihb  于 2021-06-26  发布在  Hive
关注(0)|答案(0)|浏览(236)

我在使用nodejs从配置单元获取数据时遇到问题。nodejs中的hive模块有一个例子。下面是我正在运行的代码(实际ip地址:):

hive = require('node-hive').for({server:"server.ip.address", timeout:10000});

console.log("before fetch..");

hive.fetch("select * from table", function(err, data) {
  console.log("select * from table");
  data.each(function(record) {
    console.log(record);
  });
});

但它不起作用。我在取东西前拿到的日志里。。所以呢 hive.fetch() 功能无法执行。
有人知道这里少了什么吗?我已经尝试了配置单元查询编辑器相同的查询,它的工作很好。

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题