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

Asynchronous HBase client for NodeJs using REST

Results 10 node-hbase issues
Sort by recently updated
recently updated
newest added

Hi, How can I get total count of the records in HBase NodeJS? Can anyone help me please? Thanks in advance

` [x] Feature Request [ ] Support Request ` ` import * as hbase from 'hbase'; ` ERROR in IDE: TS7016: Could not find a declaration file for module 'hbase'....

Adds `types` option to the scanner to support base64 decoding types of type long Example usage: ``` client.table(table).scan( { types: { 'data:my_long_field': 'long' } }, callback ); ```

`var rowKeys = ['1', '2', '3', '4', '5'....] rowKeys.forEach(rowKey -> {client.get(rowKey)/ client.delete(rowKey)});` How can I get or delete multiple rows with row keys in addition to using the loop function...

when I used krb5, after sending every request, it will create one record of klist. it will throw error when kerbos`s cache is full. so I add this function.

changed the way filters are encoded to match the REST API. this does not bring it into 100% compatibility and I've only tested these 2 new classes.

For high availability, it would be great to support multi brokers in cluster.

Is there any Promise support? Looking forward to hearing from you.

Hi, I found our URI contains special character: **!'()***. So could you please add encodeURIComponentRFC3986 function and then replace original encodeURIComponent in utils.coffee? **encodeURIComponentRFC3986: (str) -> return encodeURIComponent(str).replace(/[!'()*]/g, (c) ->...