Member since
07-17-2019
738
Posts
433
Kudos Received
111
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 3473 | 08-06-2019 07:09 PM | |
| 3667 | 07-19-2019 01:57 PM | |
| 5189 | 02-25-2019 04:47 PM | |
| 4663 | 10-11-2018 02:47 PM | |
| 1768 | 09-26-2018 02:49 PM |
06-16-2016
09:22 PM
FWIW, this should be fixed in recent versions of Apache Phoenix and HDP.
... View more
06-14-2016
01:58 PM
The phoenix-sqlline command is not using PQS. You want to use /usr/hdp/current/phoenix-client/bin/sqlline-thin.py to interactive with PQS.
... View more
06-09-2016
04:07 PM
1 Kudo
Nice table -- what version of HDP did you base it on?
... View more
06-09-2016
02:14 PM
2 Kudos
To my understanding, CALCITE-1025 does provide what's necessary for Avatica to work with Knox (based on some earlier conversations with Knox folks), but there are two missing things still. Phoenix 4.8 was also just updated to use a version of Avatica which contains CALCITE-1025. Configuration in Phoenix to set the username:password "database" (properties file for Jetty) that Avatica is expecting Actual testing with Knox I think we're close, but it's definitely not going to work out of the box right now.
... View more
06-07-2016
05:40 PM
1 Kudo
Yep, you're right: over time, compactions will bring data local and help with locality concerns. Lots of factors play into this, but I'm more of the mindset that just having homogeneous nodes is helpful in deployments. One less thing to worry about 🙂
... View more
06-07-2016
04:12 PM
2 Kudos
It's generally recommended that you install HBase RegionServers on each datanode. RegionServers can benefit from "short-circuit" reads which can only happen when the RegionServer is co-located with the Datanode. You can run the Phoenix QueryServer on each RegionServer, but it is likely not as necessary as RegionServers. This decision should be based on the capacity requirements of your Phoenix users. One Phoenix QueryServer can easily service many users' workloads. Having a local RegionServer is not a concern for the Phoenix QueryServer. One QueryServer will talk to many RegionServers for each query. There isn't a notion of locality.
... View more
06-06-2016
11:14 PM
There may also be some issue communicating with the Master/RegionServers that is causing the client to hang. Check the HBase Master UI and make sure your RS's are online, there are no regions in transition, no "big scary red boxes", etc.
... View more
06-03-2016
10:58 PM
3 Kudos
Apache HBase does not provide any API around JSON, but you can build your own. You might be interested in following the following JIRA issue about adding JSON as a native type to Apache Phoenix: PHOENIX-628
... View more
05-26-2016
04:31 PM
1 Kudo
It seems possible that your application might be prematurely closing the HBase `Connection` while your tasks are still using HTable instances that use that Connection. Have you investigated this at all? Any chance you can share more about your application?
... View more