码迷,mamicode.com
首页 > 数据库 > 详细

Greenplum 调优--查看子节点SQL运行状态

时间:2019-07-04 17:32:59      阅读:1207      评论:0      收藏:0      [点我收藏+]

标签:实战   ocp   image   方便   获取ip   img   视图   content   sql   

摘自《Greenplum企业应用实战》

重点:

使用gp_dist_random函数,将查询下发到每个Segement

创建查看子节点SQL运行状态视图

1)创建v_active_sql视图方便查看SQL

create view v_active_sql as 

select pg_stat_activity.procpid,pg_stat_activity.sess_id,

pg_stat_activity.usename,pg_stat_activity.waiting as w ,

to_char(pg_stat_activity.query_start,‘yyyymmdd hh24:mi:ss‘::text) as query_start,

to_char(now()-pg_stat_activity.query_start,‘hh24:mi‘::text) as exec,

pg_stat_activity.current_query

from pg_stat_activity

where pg_stat_activity.current_query <> ‘<IDLE>‘::text

order by pg_stat_activity.datname,

to_char(pg_stat_activity.query_start,‘yyyymmdd hh24:mi:ss‘::text);

2)创建获取IP的函数

create or replace function public.hostip()

return text

as $$

import socket

return socket.gethostbyname(socket.gethostname())

$$ language plpythonu;

3)创建all_seg_sql函数

create view public.all_seg_sql

as 

select hostip(),

current_setting(replace(‘port‘||current_query,current_query,‘‘)) as port,

current_setting(replace(‘gp_contentid‘||current_query,current_query,‘‘)) as content,*

from gp_dist_random(‘v_active_sql‘)

where current_query <> ‘<IDLE>‘;

技术图片

 

Greenplum 调优--查看子节点SQL运行状态

标签:实战   ocp   image   方便   获取ip   img   视图   content   sql   

原文地址:https://www.cnblogs.com/xibuhaohao/p/11133467.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!