Member since
09-15-2015
294
Posts
764
Kudos Received
81
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1589 | 07-27-2017 04:12 PM | |
4330 | 06-29-2017 10:50 PM | |
2015 | 06-21-2017 06:29 PM | |
2275 | 06-20-2017 06:22 PM | |
2064 | 06-16-2017 06:46 PM |
03-09-2017
07:20 PM
1 Kudo
These checks should suffice the health of HDFS: https://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.5.3/bk_command-line-upgrade/content/verify-hdfs-24.html Although the document is for manual upgrade, but the health checks should be good enough
... View more
03-09-2017
07:06 PM
2 Kudos
Thanks @Viswa. Can you please upvote and accept the answer as well.
... View more
03-09-2017
06:41 PM
9 Kudos
HBase Distributed modes require an instance of HDFS. HBase depends on HDFS (Namenode, Datanodes) to perform operations like adding a file etc.
So, if you a running cluster where HBase is also installed and you are upgrading HDFS to be HA i.e to Namenode-HA you should stop HBase service. Also, as Artem mentioned above after upgrading the Namenode to HA, change the distributed file system URI in hbase-site.xml to the name specified in the dfs.nameservices property in hdfs-site.xml.
For example, suppose the HDFS HA property dfs.nameservices is set to mycluster in hdfs-site.xml.
Specify that same value as below in hbase-site.xml's hbase.rootdir value: <!-- Configure HBase to use the HA NameNode nameservice -->
<property>
<name>hbase.rootdir</name>
<value>hdfs://mycluster/hbase</value>
</property>
... View more
03-08-2017
09:31 PM
3 Kudos
Even I can't seem to reply now in that chain. So, I think that you will need to modify the $HBASE_HOME/conf/hadoop-metrics2-hbase.properties file on all the Region servers and the HBase Masters. And restart each of those services. Also, for the remote access JMX files, again you would need to add that on all the hosts where you want to do the monitoring and add reference to the JMX files in $HBASE_HOME/conf/hbase-env.sh files. This might be a tedious process doing it on all the hosts, so you might want to use the links in the previous answer for doing it via Ambari Or else give this is a try if the number of servers are few. Hope this helps.
... View more
03-08-2017
07:38 PM
This will be a manual process, you would need to do it on the Region server host.
... View more
03-08-2017
07:19 PM
1 Kudo
To just configure metrics for a given region server, edit the conf/hadoop-metrics2-hbase.properties file and restart the region server for the changes to take effect. If you want to monitor the JMX metrics for each region server you would need to follow the similar steps on all hosts.
... View more
03-08-2017
07:03 PM
1 Kudo
Hi @Anthony Schuhl For your case, please try to follow the below steps mentioned to enable HBase Metrics: HDP Documentation Link Apache Confluence Wiki Link
... View more
03-08-2017
07:43 AM
2 Kudos
@Anthony Schuhl What is the version of Hbase you are using. The Metrics system was redone in HBase 0.96 and there you might be required to edit the conf/hadoop-metrics2-hbase.properties file, as per: http://mstanleyjones.github.io/hbase/reflow_update/book.html#_hbase_metrics Also are you using Ambari? If yes then you don't need to modify config files on the hosts. Just select Hbase service, go to the Configs tab and add the properties over there. Once the property changes are done Ambari will ask to restart required services. If you are not using Ambari, I think you would need to update the property files on different hosts and restart services as required.
... View more
03-07-2017
10:14 PM
1 Kudo
I was able to edit my article now. Seems like there was an issue yesterday (not sure what was it though) as @Artem Ervits and @Jay SenSharma mentioned.
... View more
03-07-2017
07:05 AM
That didnt help either. I will try tomorrow morning again to see if the issue is gone.
... View more