-
Notifications
You must be signed in to change notification settings - Fork 86
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
how to integrate hbase with summingbird? #339
Comments
Summingbird can integrate with any data store exposed as a Storehaus store, which is basically a trait used to represent a Key Value store. Looks like such stores for HBase already exist at storehaus-hbase/src/main/scala/com/twitter/storehaus/hbase in this repo. You should be able to use any of those stores with sumByKey operation in Summingbird. |
The offline store of summingbird should be in form of Readable[K, (BatchId, V)], but i can not find proper store in HBase. I am new and looking for your help, thanks a lot. |
here is one of the hbase stores: There are some more: these are for online. For offline, you need to implement a service: Here is the simplest one: we don't use hbase at stripe (or at Twitter much) but here is scalding support for hbase (as an example project): unfortunately, hbase is something you are going to have to do a bit of work on (gluing the existing pieces together). |
Do anyone knows how to use hbase in summingbird programs? Looking for help
The text was updated successfully, but these errors were encountered: