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 | |
| 3671 | 07-19-2019 01:57 PM | |
| 5199 | 02-25-2019 04:47 PM | |
| 4667 | 10-11-2018 02:47 PM | |
| 1768 | 09-26-2018 02:49 PM |
11-22-2016
09:49 PM
Yes, the Phoenix Query Server is going to act the same as a normal client. Have you changed anything on the system over a standard installation? PQS is unable to find a class which is should find in the hbase-protocol.jar NoClassDefFoundError: Could not initialize class org.apache.hadoop.hbase.protobuf.ProtobufUtil. Please inspect the classpath of PQS and ensure that it is referencing the jar correctly.
... View more
11-16-2016
05:02 PM
Wherever you configured them to be stored. It defaults to the standard log directory on Linux: /var/log/hbase
... View more
11-16-2016
03:35 PM
1 Kudo
You can try to increase the log level to DEBUG for HBase and look at the RegionServer's log which your receive the Connection closing error from. This is likely the HBase server denying your RPC for some reason. There should be a DEBUG message which informs you why the RPC was rejected.
... View more
11-16-2016
03:32 PM
2 Kudos
HBase does not explicitly track the qualifiers that exist in each family. You either need to maintain this information yourself (e.g. in another table) or scan the data.
... View more
11-15-2016
04:54 PM
2 Kudos
Using Zeppelin to run queries on your behalf is impersonation. It would appear that you are running into that exact known issue.
... View more
11-14-2016
03:34 PM
1 Kudo
Please consider upgrading to HDP-2.4.3. This issue was fixed in that release (as well as HDP-2.3.6).
... View more
11-11-2016
07:57 PM
2 Kudos
Check the state of the RegionServer before the Master reports this error. The Master is trying to read the hbase:meta table and failing. This should be a very fast operation.
... View more
11-11-2016
06:07 PM
1 Kudo
Sorry, this is a pain point that HBase has been trying to unravel for a while now. There isn't a good answer because the protobufs must match between client and server (that's why the trivial shading doesn't work). gRPC hasn't been too common in the HBase realm (at least from my point of view). Until we can get these changes into an Apache release and/or HDP release, you would have to find some way to isolate the conflicting protobuf versions.
... View more
11-11-2016
05:04 PM
1 Kudo
There is https://issues.apache.org/jira/browse/HBASE-15638 which is slated for Apache HBase 2.0 which will shade protobuf as well, but this has not yet been released.
... View more
11-11-2016
04:41 PM
1 Kudo
There is a shaded HBase client which you can try to use. I'm not sure if that will work around conflicting protocol buffer versions though.
... View more