HBASE-25891 Remove dependence on storing WAL filenames for backup (#3359)
[hbase.git] / bin / get-active-master.rb
blobd8c96fe3d4ad7019abb5a0ce197e0a11f6c57ade
1 #!/usr/bin/env hbase-jruby
3 # Licensed to the Apache Software Foundation (ASF) under one or more
4 # contributor license agreements. See the NOTICE file distributed with this
5 # work for additional information regarding copyright ownership. The ASF
6 # licenses this file to you under the Apache License, Version 2.0 (the
7 # "License"); you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
10 # http://www.apache.org/licenses/LICENSE-2.0
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15 # License for the specific language governing permissions and limitations
16 # under the License.
18 # Prints the hostname of the machine running the active master.
20 include Java
21 java_import org.apache.hadoop.hbase.HBaseConfiguration
22 java_import org.apache.hadoop.hbase.ServerName
23 java_import org.apache.hadoop.hbase.zookeeper.ZKWatcher
24 java_import org.apache.hadoop.hbase.zookeeper.MasterAddressTracker
26 # disable debug/info logging on this script for clarity
27 log_level = org.apache.log4j.Level::ERROR
28 org.apache.log4j.Logger.getLogger('org.apache.hadoop.hbase').setLevel(log_level)
29 org.apache.log4j.Logger.getLogger('org.apache.zookeeper').setLevel(log_level)
31 config = HBaseConfiguration.create
33 zk = ZKWatcher.new(config, 'get-active-master', nil)
34 begin
35   puts MasterAddressTracker.getMasterAddress(zk).getHostname
36 ensure
37   zk.close
38 end