Member since
08-19-2017
13
Posts
1
Kudos Received
0
Solutions
05-05-2019
05:11 AM
I am running a very basic HBase connection program from a remote server. Reading the server logs, I see Zookeeper acknowledge the request, but then serves to the Client the internal IP of HBase Master, which is of no use from the outside world. I know where the master is and what its public IP is but I do not know how to effectively connect to HBase remotely using the Java API. Any Ideas ? I've seen some people advice to mess up with the /etc/hosts file but that's an ugly and inelegant solution, and it breaks other parts of the ecosystem. String zookeeperHost = "public.ip.address";
Configuration hconfig = HBaseConfiguration.create();
hconfig.set("hbase.zookeeper.quorum",zookeeperHost);
hconfig.set("hbase.zookeeper.property.clientPort", "2181");
hconfig.set("zookeeper.znode.parent", "/hbase-unsecure");
HBaseAdmin.available(hconfig); org.apache.hadoop.hbase.MasterNotRunningException: com.google.protobuf.ServiceException: java.net.UnknownHostException: unknown host: ip-xx-xx-xx-xx.eu-west-1.compute.internal
... View more
Labels:
- Labels:
-
Apache HBase
-
Apache Zookeeper
02-18-2019
12:24 AM
Exact Same Problem here. Any advice please / permanent fix ? I had to manually extract the note.json file from the server and reupload it / import it, after renaming the notebook and changing the ID to be able to access to it again. That is very annoying.
... View more
02-10-2019
11:30 PM
Last occurence of this issue happened to require a clearing of the outputs of the notes. I was working on a note including a display job that took ages and the progress bar froze. I restarted zeppelin, Spark, Yarn, nothing seemed to fix it. The note seemed "lost", undisplayable, desperately blank. My fix (after a couple of hours trying to figure what the hell was causing that) was to Hover over the note in the welcome page, and click the rubber, "clear output"... and voila,I was able to open my note again. Note That this has to be done after a restart of the Zeppelin service. Hope this helps
... View more
02-10-2019
11:03 PM
as @Bhupendra Mishra indirectly pointed out, ensure to launch pip install numpy command from a root account (sudo does not suffice) after forcing umask to 022 ( umask 022 ) so it cascades the rights to Spark (or Zeppelin) User Also, You have to be aware that you need to have numpy installed on each and every worker, and even the master itself (depending on your component placement)
... View more
02-10-2019
08:57 PM
I had the same problem happen more than once on different clusters from different sites and networks configurations (with or without proxy/gateway/knox, company network, wifi router, home ISP, public wifi...). With various results It concerned the display of the notes themselves and the welcome page also (sometimes only the notes, the welcome page was ok) Some browser settings block websockets for security reasons. So be aware of that. Sometimes, it can be a firewall issue. Last occurence happened to require a clearing of the outputs of the notes. I was working on a note including a spark job that took ages and the progress bar froze. I restarted zeppelin, Spark, Yarn, nothing seemed to fix it. The note seemed "lost", undisplayable, desperately blank. My fix (after a couple of hours trying to figure what the hell was causing that) was to Hover over the note in the welcome page, and click the rubber, "clear output"... and voila,I was able to open my note again. Note That this has to be done after a restart of the Zeppelin service. Just for note (no pun intented) when I explored the browser prior the fix the websocket kept trying to load content from the server but nothing came out.
... View more
10-18-2018
03:22 PM
@Charles Bernard's suggestion solved it for me.
... View more
09-28-2018
03:28 PM
The article is very general and doe not provide concrete and specific backup & recovery tools.
... View more
09-28-2018
04:53 AM
Interesting info. However, the second slide your pointed out, Hortonworks Operational Best Practice, is not directly related to the topic.
... View more