node-impala icon indicating copy to clipboard operation
node-impala copied to clipboard

Node Client for Impala using Apache Thrift

Results 7 node-impala issues
Sort by recently updated
recently updated
newest added

Hi @ufukomer, thanks for this piece of software ! Would be nice to support TLS/SSL configuration as well Cf. https://www.cloudera.com/documentation/enterprise/latest/topics/impala_ssl.html Cf. https://github.com/apache/thrift/blob/c8e0207053a26f206d6515313747b7e1999a01d5/lib/nodejs/lib/thrift/connection.js#L249

enhancement

Hi ufukomer, Here ais my es5 codes, it always return the first row of results i think it may caused by the 'pending' state, but how can i get all...

bug
enhancement
help wanted

If possible 😐 Related: #16

enhancement
help wanted

Hi, Thanks again for this piece of software. When executing the following query: ```sql SELECT 1 as foo, 2 as foo ``` Data returned is: ```js [ [ '1\t2' ],...

bug

The Impala driver I need to connect to has a connection pool set up. I need to connect to this pool when using the node-impala client (I need to specify...

Hi, ufukomer, I use Node.js to run the code, here is my code, `var impalaDB = require('node-impala'); const client = impalaDB.createClient(); client.connect({ host: '10.2.18.185', port: 21050, resultType: 'json-array' }) .then(function...

enhancement