Cancel a query
'stv_recents'テーブルから実行中のquery(status='Running')を検索してkillしたいqueryのpidを取得し、cancelコマンドをpid指定して実行すればOKです。
select pid, trim(user_name), starttime, substring(query,1,20) from stv_recents where status='Running';
cancel [pid];
select pid, trim(user_name), starttime, substring(query,1,20) from stv_recents where status='Running';
cancel [pid];
4つcoreがある場合は上記のような形で表示されます。$ mpstat -P ALL 10時19分43秒 CPU %usr %nice %sys %iowait %irq %soft %steal %guest %idle 10時19分43秒 all 8.73 0.01 1.20 0.19 0.00 0.10 0.04 0.00 89.74 10時19分43秒 0 17.30 0.00 2.28 0.44 0.00 0.32 0.06 0.00 79.60 10時19分43秒 1 7.72 0.01 1.02 0.12 0.00 0.04 0.04 0.00 91.06 10時19分43秒 2 5.24 0.01 0.80 0.11 0.00 0.02 0.03 0.00 93.79 10時19分43秒 3 4.69 0.01 0.70 0.09 0.00 0.01 0.04 0.00 94.46
$ mpstat -P ALL 1