Member since
07-17-2019
738
Posts
433
Kudos Received
111
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 3479 | 08-06-2019 07:09 PM | |
| 3683 | 07-19-2019 01:57 PM | |
| 5208 | 02-25-2019 04:47 PM | |
| 4675 | 10-11-2018 02:47 PM | |
| 1772 | 09-26-2018 02:49 PM |
02-22-2017
09:53 PM
Please read http://hbase.apache.org/book.html#architecture.master and http://hbase.apache.org/book.html#architecture.master. It sounds like your interpretation on what the HBase master does is very wrong. The HBase master is *not* involved with data access requests (scans in the shell).
The verb "fail" means that when the process either stops or crashes for some reason. Sometimes processes can pause, yet recover. Part of this relates to the timeout in holding the ZooKeeper lock for distributed mutual exclusion between multiple Master processes. By default, that timeout is 30-60seconds at worst.
... View more
02-22-2017
08:10 PM
@Tom Stewart, would encourage you to open up your own question if you're experiencing problems. In general, when you see this error, it's related to the client not providing Kerberos authentication (missing core-site.xml and/or hbase-site.xml on the client's classpath) or it's an authentication issue (where the client is "impersonating" another user which is disallowed via configuration).
... View more
02-22-2017
03:36 PM
Do not piggy-back on others' questions which have already been answered, please. Ask your own question.
... View more
02-22-2017
04:28 AM
Apache HBase supports the ability to run multiple stand-by Master processes. These use Apache ZooKeeper to perform leader election. When/if the active Master fails, a stand-by will take its place. You should use Apache Ambari to coordinate the HBase Master running on multiple nodes.
... View more
02-21-2017
03:28 PM
3 Kudos
It would appear that Zeppelin is including an invalid version of an HBase jar on the classpath. Caused by: java.lang.NoSuchMethodError:
org.apache.hadoop.hbase.protobuf.generated.MasterProtos$ModifyTableRequest$Builder.setNonceGroup(J)Lorg/apache/hadoop/hbase/protobuf/generated/MasterProtos$ModifyTableRequest$Builder
... View more
02-21-2017
03:24 PM
There is no way to change the version of some component in HDP without upgrading HDP. This is not a supported scenario.
... View more
02-15-2017
07:59 PM
1 Kudo
"No common protection layer between client and server" refers to the quality of protection configuration for SASL. This refers to the level of security that is applied to the messages sent over the RPC. These values are typically referred to by the names: "auth", "auth-int", and "auth-conf"
In HBase, these are controlled by the property "hbase.rpc.protection", with the values are "authentication", "integrity", and "privacy". Most likely, you have an incorrect version of hbase-site.xml on your client's classpath which sets a value for hbase.rpc.protection different than what your HBase servers are expecting. e.g. your client is using "authentication" but the servers are expecting "privacy".
... View more
02-15-2017
06:41 PM
1 Kudo
It sounds like this is presently not possible to disable this re-encoding. The thought is that other services actually require this to be done. If you'd like, please feel free to create a JIRA issue in the KNOX project at Apache (or I can do that). We can try to come up with an improvement for Knox in the future to prevent this problem for other services. I'm also in talks with the ODBC devs who said that they can likely fix the driver to address this issue at the source as well.
... View more
02-15-2017
04:25 PM
Are you receiving an error? Can you show an example of a record you tried to modify, and how you were unable to modify it? Please provide more details...
... View more
02-15-2017
04:04 PM
Not sure, Hong, but I'm also a Knox newbie. Let me see if I can find someone with more expertise 🙂
... View more