-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
doesn't response the server #4
Comments
I have bumped the same problem. Here are me setup:
By the way, I encountered the same situation with another hive nodejs lib(https://github.com/wdavidw/node-thrift-hive). Then I switched to use python with physic(https://github.com/BradRuderman/pyhs2/tree/master/pyhs2) and it works. Does anyone know why? |
The same problem... seems that |
Unfortunately...me too...how are you solve this problem finally?or change to other package? |
Oh,no,i have the same problem,how to solve this problem? Or other way to connect hive? |
Oh,no,i have the same problem,how to solve this problem? |
Have you tried hive-driver to connect? |
Hi,
i tried to use this package to request my CDH5 hive server (Hive 0.12.0-cdh5.1.2), but it doesn't bring answer. I could catch the server (i think, because when i wrote other wrong port, than i got "timeoutException"), but the console doesn't write the request answer. What would be the problem?
I've installed the npm install node-hive, and used Visual Studio 2013 with the latest node.js and vs plugin.
The code is:
var hive = require('node-hive').for({ server: "19.xx.yy.zz", port: 10000, "timeout": 1000 });
hive.fetch("select * from tab1", function (err, data) {
if (err) {
console.log(err);
}
data.each(function (record) {
console.log(record);
});
});
The text was updated successfully, but these errors were encountered: