美文网首页
GreenPlum节点锁处理

GreenPlum节点锁处理

作者: 瞬即逝转 | 来源:发表于2021-05-08 11:35 被阅读0次

    select gp_execution_dbid() dbid,procpid,current_query
    from gp_dist_random('pg_stat_activity')
    where procpid in
    (select pid from gp_dist_random('pg_locks') where and mode='ExclusiveLock')
    and lower(current_query) like '%xxx%' ;

    1.在navicat执行 查看dbid 3 的服务器及端口
    select * from gp_segment_configuration where dbid = 3;
    2.登录gp主节点
    su - gpadmin
    3.根据第一步获取的ip和端口修改命令
    PGOPTIONS="-c gp_session_role=utility" psql -h xxxxxxxxx -p xxxx -d idap_zl
    4.procpid修改为上午查询对应的procpid
    select pg_terminate_backend('procpid');

    相关文章

      网友评论

          本文标题:GreenPlum节点锁处理

          本文链接:https://www.haomeiwen.com/subject/yikudltx.html