How do I list all row keys in an hbase table?
I need to do this using PHP with a REST interface.
|
|
If you are listing all of the keys in an HBase table, then you are using the wrong tool. HBase is for large data systems where it is impractical to list all of the keys. What may be more sensible is to start at a given key and list the next N keys (for values of N less than 10K). There are nice Java interfaces for doing this type of thing with a scan -- setting a start key and/or an end key. Most HBase functionality is exposed via the Thrift interface. I would suggest looking there |
|||
|
|
I don't know what the REST interface is like, but you probably want to filter some data out client-side to avoid large RPC responses. You can do this by adding server-side filters to your scan:
http://svn.apache.org/repos/asf/hbase/branches/0.90/src/main/java/org/apache/hadoop/hbase/filter/ |
|||||
|
|
This...
...will return all values in your table relative to that column in that table, sort of like applying column filter in the scanner. Also, if you're looking for multiple columns - separate them with a comma. So: |
||||
|
|
|
I have found a way.. http://localhost:8080/tablename/* will return an xml data and i can preg-match it to get the rows. Inviting better suggestions.. |
|||
|
|