Files
openGauss-OM/script/gspylib/inspection/items/database/CheckLockState.py
hangjin2020 a2679f0cf7 om仓迁移
2020-12-16 17:25:24 +08:00

40 lines
1.5 KiB
Python

# -*- coding:utf-8 -*-
# Copyright (c) 2020 Huawei Technologies Co.,Ltd.
#
# openGauss is licensed under Mulan PSL v2.
# You can use this software according to the terms
# and conditions of the Mulan PSL v2.
# You may obtain a copy of Mulan PSL v2 at:
#
# http://license.coscl.org.cn/MulanPSL2
#
# THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS,
# WITHOUT WARRANTIES OF ANY KIND,
# EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
# MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
# See the Mulan PSL v2 for more details.
# ----------------------------------------------------------------------------
from gspylib.inspection.common import SharedFuncs
from gspylib.inspection.common.CheckItem import BaseItem
from gspylib.inspection.common.CheckResult import ResultStatus
class CheckLockState(BaseItem):
def __init__(self):
super(CheckLockState, self).__init__(self.__class__.__name__)
def doCheck(self):
sqlcmd = "select count(1) from pg_stat_activity " \
"where instr( query, 'pgxc_lock_for_backup()') > 0 " \
"or instr( query, 'pg_advisory_lock(65535,65535)') > 0;"
self.result.raw = sqlcmd
output = SharedFuncs.runSqlCmd(sqlcmd, self.user, "", self.port,
self.tmpPath, "postgres",
self.mpprcFile)
if ((int(output.strip()) - 1) != 0):
self.result.rst = ResultStatus.NG
else:
self.result.rst = ResultStatus.OK
self.result.val = output