run_test.py 13.8 KB
Newer Older
R
Rongfeng Fu 已提交
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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
# 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 re
import os
from time import sleep
try:
    import subprocess32 as subprocess
except:
    import subprocess
from ssh import LocalClient


stdio = None


def parse_size(size):
    _bytes = 0
    if not isinstance(size, str) or size.isdigit():
        _bytes = int(size)
    else:
        units = {"B": 1, "K": 1<<10, "M": 1<<20, "G": 1<<30, "T": 1<<40}
        match = re.match(r'([1-9][0-9]*)\s*([B,K,M,G,T])', size.upper())
        _bytes = int(match.group(1)) * units[match.group(2)]
    return _bytes


def format_size(size, precision=1):
    units = ['B', 'K', 'M', 'G']
    units_num = len(units) - 1
    idx = 0
    if precision:
        div = 1024.0
R
Rongfeng Fu 已提交
54
        format = '%.' + str(precision) + 'f%s'
R
Rongfeng Fu 已提交
55 56 57 58
        limit = 1024
    else:
        div = 1024
        limit = 1024
R
Rongfeng Fu 已提交
59
        format = '%d%s'
R
Rongfeng Fu 已提交
60 61 62
    while idx < units_num and size >= limit:
        size /= div
        idx += 1
R
Rongfeng Fu 已提交
63
    return format % (size, units[idx])
R
Rongfeng Fu 已提交
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79


def exec_cmd(cmd):
    stdio.verbose('execute: %s' % cmd)
    process = subprocess.Popen(cmd, shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
    while process.poll() is None:
        line = process.stdout.readline()
        line = line.strip()
        if line:
            stdio.print(line.decode("utf8", 'ignore'))
    return process.returncode == 0


def run_test(plugin_context, db, cursor, odp_db, odp_cursor=None, *args, **kwargs):
    def get_option(key, default=''):
        value = getattr(options, key, default)
R
Rongfeng Fu 已提交
80
        if value is None:
R
Rongfeng Fu 已提交
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
            value = default
        return value
    def execute(cursor, query, args=None):
        msg = query % tuple(args) if args is not None else query
        stdio.verbose('execute sql: %s' % msg)
        # stdio.verbose("query: %s. args: %s" % (query, args))
        try:
            cursor.execute(query, args)
            return cursor.fetchone()
        except:
            msg = 'execute sql exception: %s' % msg
            stdio.exception(msg)
            raise Exception(msg)

    global stdio
    cluster_config = plugin_context.cluster_config
    stdio = plugin_context.stdio
    options = plugin_context.options

R
Rongfeng Fu 已提交
100
    optimization = get_option('optimization') > 0
R
Rongfeng Fu 已提交
101
    ob_optimization = get_option('ob_optimization')
R
Rongfeng Fu 已提交
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117

    host = get_option('host', '127.0.0.1')
    port = get_option('port', 2881)
    mysql_db = get_option('database', 'test')
    user = get_option('user', 'root')
    tenant_name = get_option('tenant', 'test')
    password = get_option('password', '')
    table_size = get_option('table_size', 10000)
    tables = get_option('tables', 32)
    threads = get_option('threads', 150)
    time = get_option('time', 60)
    interval = get_option('interval', 10)
    events = get_option('events', 0)
    rand_type = get_option('rand_type', None)
    skip_trx = get_option('skip_trx', '').lower()
    percentile = get_option('percentile', None)
R
Rongfeng Fu 已提交
118
    script_name = get_option('script_name', 'oltp_point_select.lua')
R
Rongfeng Fu 已提交
119 120 121 122
    obclient_bin = get_option('obclient_bin', 'obclient')
    sysbench_bin = get_option('sysbench_bin', 'sysbench')
    sysbench_script_dir = get_option('sysbench_script_dir', '/usr/sysbench/share/sysbench')

R
Rongfeng Fu 已提交
123 124 125 126
    if tenant_name == 'sys':
        stdio.error('DO NOT use sys tenant for testing.')
        return 

R
Rongfeng Fu 已提交
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
    ret = LocalClient.execute_command('%s --help' % obclient_bin, stdio=stdio)
    if not ret:
        stdio.error('%s\n%s is not an executable file. Please use `--obclient-bin` to set.\nYou may not have obclient installed' % (ret.stderr, obclient_bin))
        return
    ret = LocalClient.execute_command('%s --help' % sysbench_bin, stdio=stdio)
    if not ret:
        stdio.error('%s\n%s is not an executable file. Please use `--sysbench-bin` to set.\nYou may not have ob-sysbench installed' % (ret.stderr, sysbench_bin))
        return

    if not script_name.endswith('.lua'):
        script_name += '.lua'
    script_path = os.path.join(sysbench_script_dir, script_name)
    if not os.path.exists(script_path):
        stdio.error('No such file %s. Please use `--sysbench-script-dir` to set sysbench scrpit dir.\nYou may not have ob-sysbench installed' % script_path)
        return

    sql = "select * from oceanbase.gv$tenant where tenant_name = %s"
    max_cpu = 2
    tenant_meta = None
    try:
        stdio.verbose('execute sql: %s' % (sql % tenant_name))
        cursor.execute(sql, [tenant_name])
        tenant_meta = cursor.fetchone()
        if not tenant_meta:
            stdio.error('Tenant %s not exists. Use `obd cluster tenant create` to create tenant.' % tenant_name)
            return
        sql = "select * from oceanbase.__all_resource_pool where tenant_id = %d" % tenant_meta['tenant_id']
        pool = execute(cursor, sql)
        sql = "select * from oceanbase.__all_unit_config where unit_config_id = %d" % pool['unit_config_id']
        max_cpu = execute(cursor, sql)['max_cpu']
    except:
R
Rongfeng Fu 已提交
158
        stdio.exception('')
R
Rongfeng Fu 已提交
159 160
        return

R
Rongfeng Fu 已提交
161
    exec_sql_cmd = "%s -h%s -P%s -u%s@%s %s -A -e" % (obclient_bin, host, port, user, tenant_name, ("-p'%s'" % password) if password else '')
R
Rongfeng Fu 已提交
162
    ret = LocalClient.execute_command('%s "%s"' % (exec_sql_cmd, 'create database if not exists %s;' % mysql_db), stdio=stdio)
R
Rongfeng Fu 已提交
163 164 165 166 167
    if not ret:
        stdio.error(ret.stderr)
        return

    sql = ''
R
Rongfeng Fu 已提交
168 169 170
    odp_configs_done = []
    system_configs_done = []
    tenant_variables_done = []
R
Rongfeng Fu 已提交
171 172
    odp_configs = [
        # [配置名, 新值, 旧值, 替换条件: lambda n, o: n != o]
R
Rongfeng Fu 已提交
173
        # ['enable_compression_protocol', False, False, lambda n, o: n != o],
R
Rongfeng Fu 已提交
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
        ['proxy_mem_limited', format_size(min(max(threads * (8 << 10), 2 << 30), 4 << 30), 0), 0, lambda n, o: parse_size(n) > parse_size(o)],
        ['enable_prometheus', False, False, lambda n, o: n != o],
        ['enable_metadb_used', False, False, lambda n, o: n != o],
        ['enable_standby', False, False, lambda n, o: n != o],
        ['enable_strict_stat_time', False, False, lambda n, o: n != o],
        ['use_local_dbconfig', True, True, lambda n, o: n != o],
    ]
    system_configs = [
        # [配置名, 新值, 旧值, 替换条件: lambda n, o: n != o, 是否是租户级]
        ['enable_auto_leader_switch', False, False, lambda n, o: n != o, False],
        ['enable_one_phase_commit', False, False, lambda n, o: n != o, False],
        ['weak_read_version_refresh_interval', '5s', '5s', lambda n, o: n != o, False],
        ['syslog_level', 'PERF', 'PERF', lambda n, o: n != o, False],
        ['max_syslog_file_count', 100, 100, lambda n, o: n != o, False],
        ['enable_syslog_recycle', True, True, lambda n, o: n != o, False],
        ['trace_log_slow_query_watermark', '10s', '10s', lambda n, o: n != o, False],
        ['large_query_threshold', '1s', '1s', lambda n, o: n != o, False],
        ['clog_sync_time_warn_threshold', '200ms', '200ms', lambda n, o: n != o, False],
        ['syslog_io_bandwidth_limit', '10M', '10M', lambda n, o: n != o, False],
        ['enable_sql_audit', False, False, lambda n, o: n != o, False],
        ['sleep', 1],
        ['enable_perf_event', False, False, lambda n, o: n != o, False],
        ['clog_max_unconfirmed_log_count', 5000, 5000, lambda n, o: n != o, False],
        ['autoinc_cache_refresh_interval', '86400s', '86400s', lambda n, o: n != o, False],
        ['enable_early_lock_release', False, False, lambda n, o: n != o, True],
        ['default_compress_func', 'lz4_1.0', 'lz4_1.0', lambda n, o: n != o, False],
        ['_clog_aggregation_buffer_amount', 4, 4, lambda n, o: n != o, False],
        ['_flush_clog_aggregation_buffer_timeout', '1ms', '1ms', lambda n, o: n != o, False],
    ]

R
Rongfeng Fu 已提交
204 205
    try:
        if odp_cursor and optimization:
R
Rongfeng Fu 已提交
206 207 208 209 210 211 212
            for config in odp_configs:
                sql = 'show proxyconfig like "%s"' % config[0]
                ret = execute(odp_cursor, sql)
                if ret:
                    config[2] = ret['value']
                    if config[3](config[1], config[2]):
                        sql = 'alter proxyconfig set %s=%%s' % config[0]
R
Rongfeng Fu 已提交
213
                        odp_configs_done.append(config)
R
Rongfeng Fu 已提交
214 215
                        execute(odp_cursor, sql, [config[1]])

R
Rongfeng Fu 已提交
216 217
        tenant_q = ' tenant="%s"' % tenant_name
        server_num = len(cluster_config.servers)
R
Rongfeng Fu 已提交
218
        if optimization and ob_optimization:
R
Rongfeng Fu 已提交
219 220 221
            for config in system_configs:
                if config[0] == 'sleep':
                    sleep(config[1])
R
Rongfeng Fu 已提交
222
                    system_configs_done.append(config)
R
Rongfeng Fu 已提交
223 224 225 226 227 228 229 230 231 232 233
                    continue
                sql = 'show parameters like "%s"' % config[0]
                if config[4]:
                    sql += tenant_q
                ret = execute(cursor, sql)
                if ret:
                    config[2] = ret['value']
                    if config[3](config[1], config[2]):
                        sql = 'alter system set %s=%%s' % config[0]
                        if config[4]:
                            sql += tenant_q
R
Rongfeng Fu 已提交
234
                        system_configs_done.append(config)
R
Rongfeng Fu 已提交
235 236 237 238 239 240 241
                        execute(cursor, sql, [config[1]])

            sql = "select count(1) server_num from oceanbase.__all_server where status = 'active'"
            ret = execute(cursor, sql)
            if ret:
                server_num = ret.get("server_num", server_num)

R
Rongfeng Fu 已提交
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
            parallel_max_servers = int(max_cpu * 10)
            parallel_servers_target = int(max_cpu * server_num * 8)

            tenant_variables = [
                # [变量名, 新值, 旧值, 替换条件: lambda n, o: n != o]
                ['ob_timestamp_service', 1, 1, lambda n, o: n != o],
                ['autocommit', 1, 1, lambda n, o: n != o],
                ['ob_query_timeout', 36000000000, 36000000000, lambda n, o: n != o],
                ['ob_trx_timeout', 36000000000, 36000000000, lambda n, o: n != o],
                ['max_allowed_packet', 67108864, 67108864, lambda n, o: n != o],
                ['ob_sql_work_area_percentage', 100, 100, lambda n, o: n != o],
                ['parallel_max_servers', parallel_max_servers, parallel_max_servers, lambda n, o: n != o],
                ['parallel_servers_target', parallel_servers_target, parallel_servers_target, lambda n, o: n != o]
            ]
            select_sql_t = "select value from oceanbase.__all_virtual_sys_variable where tenant_id = %d and name = '%%s'" % tenant_meta['tenant_id']
            update_sql_t = "ALTER TENANT %s SET VARIABLES %%s = %%%%s" % tenant_name
R
Rongfeng Fu 已提交
258 259 260 261 262 263

            for config in tenant_variables:
                sql = select_sql_t % config[0]
                ret = execute(cursor, sql)
                if ret:
                    value = ret['value']
R
Rongfeng Fu 已提交
264
                    config[2] = int(value) if isinstance(value, str) and value.isdigit() else value
R
Rongfeng Fu 已提交
265 266
                    if config[3](config[1], config[2]):
                        sql = update_sql_t % config[0]
R
Rongfeng Fu 已提交
267
                        tenant_variables_done.append(config)
R
Rongfeng Fu 已提交
268 269
                        execute(cursor, sql, [config[1]])

R
Rongfeng Fu 已提交
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
        sysbench_cmd = "cd %s; %s %s --mysql-host=%s --mysql-port=%s --mysql-user=%s@%s --mysql-db=%s" % (sysbench_script_dir, sysbench_bin, script_name, host, port, user, tenant_name, mysql_db)

        if password:
            sysbench_cmd += ' --mysql-password=%s' % password
        if table_size:
            sysbench_cmd += ' --table_size=%s' % table_size
        if tables:
            sysbench_cmd += ' --tables=%s' % tables
        if threads:
            sysbench_cmd += ' --threads=%s' % threads
        if time:
            sysbench_cmd += ' --time=%s' % time
        if interval:
            sysbench_cmd += ' --report-interval=%s' % interval
        if events:
            sysbench_cmd += ' --events=%s' % events
        if rand_type:
            sysbench_cmd += ' --rand-type=%s' % rand_type
        if skip_trx in ['on', 'off']:
            sysbench_cmd += ' --skip_trx=%s' % skip_trx
        if percentile:
            sysbench_cmd += ' --percentile=%s' % percentile
R
Rongfeng Fu 已提交
292 293 294 295 296 297 298 299 300 301

        if exec_cmd('%s cleanup' % sysbench_cmd) and exec_cmd('%s prepare' % sysbench_cmd) and exec_cmd('%s --db-ps-mode=disable run' % sysbench_cmd):
            return plugin_context.return_true()
    except KeyboardInterrupt:
        pass
    except:
        stdio.exception('')
    finally:
        try:
            if optimization:
R
Rongfeng Fu 已提交
302
                for config in tenant_variables_done[::-1]:
R
Rongfeng Fu 已提交
303 304 305 306
                    if config[3](config[1], config[2]):
                        sql = update_sql_t % config[0]
                        execute(cursor, sql, [config[2]])

R
Rongfeng Fu 已提交
307
                for config in system_configs_done[::-1]:
R
Rongfeng Fu 已提交
308 309 310 311 312 313 314 315 316 317
                    if config[0] == 'sleep':
                        sleep(config[1])
                        continue
                    if config[3](config[1], config[2]):
                        sql = 'alter system set %s=%%s' % config[0]
                        if config[4]:
                            sql += tenant_q
                        execute(cursor, sql, [config[2]])

                if odp_cursor:
R
Rongfeng Fu 已提交
318
                    for config in odp_configs_done[::-1]:
R
Rongfeng Fu 已提交
319 320 321 322 323
                        if config[3](config[1], config[2]):
                            sql = 'alter proxyconfig set %s=%%s' % config[0]
                            execute(odp_cursor, sql, [config[2]])
        except:
            pass