-
Notifications
You must be signed in to change notification settings - Fork 5.4k
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
Implement HBase connector #6010
Comments
@damiencarol You may find some of the work for Apache Accumulo helpful, currently sitting in #5030. |
@adamjshook yeah, I'm reading the PR code right now |
@damiencarol I'm happy to answer any questions or give you any pointers on some BigTable-esque optimizations I've built to improve query times. |
@adamjshook did your connector run in production ? also did you implemented insert/update/delete ? |
@damiencarol Yes, it's been in production since March/April or so. |
First naive version here #6037 . |
what the progress ? |
what the progress now,please ? ~~~ |
We are exploring ways of trying to use Presto to query a HBase table. Can I get an update on where we are w.r.t HBase connector for Presto and any references for the same ? |
Any news about this part? |
There's a PR for an Apache Phoenix connector here [1] which would allow you
to read an HBase table.
[1] #10536
…On Tue, Aug 28, 2018 at 11:56 PM Nick ***@***.***> wrote:
Any news about this part?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#6010 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AF4-K5-4rZznp3otBVsWDXhEDyxucxGaks5uVjsHgaJpZM4JzBqN>
.
|
@JamesRTaylor Is it fair to say the Presto -> HBase (through Phoenix connector) is fairly nascent and probably not widely used in large production systems. Looking at doing something like this for a fairly large web scale production system. So hence wanted to know how hardened this is and current usage. |
Sounds like the author of the Phoenix connector is using it in production, @ganeshjothikumar, but you should ask him to confirm. Since neither the HBase connector nor the Phoenix connector are part of Presto yet, I'd imagine that they're both similar. FWIW, the SQL abstraction and query push down that Phoenix provides will make for a better fit as a Presto connector unless you're either 1) ok with many serial, full table scans by HBase, or 2) you try to do what Phoenix is doing within the HBase connector. Neither of these is a good option IMHO. |
What's the latest on this PR (i.e., is it moving forward)? |
what the progress now?? |
This issue has been automatically marked as stale because it has not had any activity in the last 2 years. If you feel that this issue is important, just comment and the stale tag will be removed; otherwise it will be closed in 7 days. This is an attempt to ensure that our open issues remain valuable and relevant so that we can keep track of what needs to be done and prioritize the right things. |
Throw an issue here as I'm working on it and will push a PR soon.
Plan to have a production ready plugin for the end of the year.
Main design choices:
Any advices, questions or tips are welcomes (specialy if you had started a plugin like me)
The text was updated successfully, but these errors were encountered: