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 | |
| 5197 | 02-25-2019 04:47 PM | |
| 4667 | 10-11-2018 02:47 PM | |
| 1768 | 09-26-2018 02:49 PM |
11-11-2016
03:53 PM
1 Kudo
Aha, it's a protocol buffers issue :). gRPC uses protobuf-java-3.x whereas that version of HBase is on protobuf-java-2.5 (if I recall correctly).
... View more
11-11-2016
02:37 PM
1 Kudo
Can you please verify that the JAR file in your Gradle cache is not malformed? e.g. `jar tf C:\Users\testUser\.gradle\caches\modules-2\files-2.1\org.apache.hbase\hbase-protocol\1.1.2.2.5.0.0-1245\b037b1aff481f7dfc40f918a38005a6dce72fe49\hbase-protocol-1.1.2.2.5.0.0-1245.jar` and look for ByteStringer.class in the output.
... View more
11-10-2016
06:25 PM
Nice writeup @wsalazar. I think you can simplify your classpath setup by only including the /usr/hdp/current/phoenix-client/phoenix-client.jar and the XML configuration files (core-site, hdfs-site, hbase-site). The phoenix-client.jar will contain all of the classes necessary to connect to HBase using the Phoenix (thick) JDBC driver.
... View more
11-09-2016
07:52 PM
I did some testing and was able to verify that this is broken in 0.9.0, 0.9.3, and the tip of the development branch. I filed https://issues.apache.org/jira/browse/THRIFT-3966 if you care to watch that.
... View more
11-09-2016
06:37 PM
1 Kudo
Newer version of documentation for ImportTSV -- http://hbase.apache.org/book.html#importtsv
... View more
11-07-2016
06:32 PM
Superb. I'm glad you got it worked out. Ambari should have done all of the above for you. It would be great if you could share the version information for your installation so we can figure out why you had to do this by hand.
... View more
11-07-2016
05:58 PM
1 Kudo
@Kevin Ng, make sure you check the value of hadoop.proxyuser.HTTP.groups and hadoop.proxyuser.HTTP.hosts matches your deployment in HDFS's core-site configuration. You probably want to set the groups equal to "*" and the hosts should be a comma-separated list of FQDN's where you have PQS deployed. You can also try enabling DEBUG logging for HBase and check the RegionServer log for an error. I would imagine that you will see an error about the HTTP/FQDN principal being disallowed to impersonate your end-user connecting to PQS.
... View more
11-07-2016
03:36 PM
Very strange, @Kevin Ng. I'm not sure why the fix in AMBARI-16171 didn't properly update the principal and keytab in the UI. What version of Ambari are you using? Maybe you can override these properties in the "Custom hbase-site" configuration section? I don't know enough about how Ambari is supposed to work here.
... View more
11-07-2016
03:23 PM
This does sound like a bug in Apache Thrift, btw. I was able to
reproduce this locally with a 0.9.0. I'm wondering if it also happens
with the latest in the 0.9.x line.
... View more
11-06-2016
08:06 PM
Does your "hadoop1" user have the permission to create a directory in "/usr/hdp/2.4.2.0-258/hbase/include/thrift"? Can you try switching to a directory which is writable by your user and re-run the command?
... View more