Using HBase-Runner
HBase-Runner is a handy Clojure REPL wrapper around the HBase Admin. It is meant to be (become) an option to the JRuby HBase shell.
The code may be downloaded from Github.
QUICK START:
1. clone the repo
2. execute this command from the repo root:
- $ ./hbase-repl.sh
3. connect with this command:
user=> (start-hbase-repl)
4. do stuff, like list all tables:
user=> (list-all-tables)
NOTES:
(see the HBase-Runner Github page for more info)
* If you have rlwrap, you can get function completion (see README). * You may namespace your tables so only a subset (based on a prefix) are shown. * Not all HBase shell commands are implemented yet.
Changelog
17/12/2009 - Initial upload