display.py 2.1 KB
Newer Older
O
oceanbase-admin 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
# coding: utf-8
# OceanBase Deploy.
# Copyright (C) 2021 OceanBase
#
# This file is part of OceanBase Deploy.
#
# OceanBase Deploy is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# OceanBase Deploy is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with OceanBase Deploy.  If not, see <https://www.gnu.org/licenses/>.


from __future__ import absolute_import, division, print_function

import time


def display(plugin_context, cursor, *args, **kwargs):
    stdio = plugin_context.stdio
    stdio.start_loading('Wait for observer init')
F
v1.6.0  
frf12 已提交
29
    cluster_config = plugin_context.cluster_config
R
Rongfeng Fu 已提交
30 31 32 33 34 35 36 37
    try:
        while True:
            try:
                cursor.execute('select * from oceanbase.__all_server')
                servers = cursor.fetchall()
                if servers:
                    stdio.print_list(servers, ['ip', 'version', 'port', 'zone', 'status'], 
                        lambda x: [x['svr_ip'], x['build_version'].split('_')[0], x['inner_port'], x['zone'], x['status']], title='observer')
F
v1.6.0  
frf12 已提交
38 39 40
                    password = cluster_config.get_global_conf().get('root_password', '')
                    cmd = 'obclient -h%s -P%s -uroot %s-Doceanbase' % (servers[0]['svr_ip'], servers[0]['inner_port'], '-p%s ' % password if password else '') 
                    stdio.print(cmd)
R
Rongfeng Fu 已提交
41 42 43 44 45 46 47 48 49
                    stdio.stop_loading('succeed')
                    return plugin_context.return_true()
            except Exception as e:
                if e.args[0] != 1146:
                    raise e
                time.sleep(3)
    except:
        stdio.stop_loading('fail', 'observer need bootstarp')
        stdio.exception('')
O
oceanbase-admin 已提交
50
    plugin_context.return_false()