真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

showprocesslisthost為百分號(hào)(%)

今天用戶報(bào)出來(lái)一個(gè)問(wèn)題:
show full processlist;時(shí)出現(xiàn)下面的情況:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| 46977247 | common          | %                  | common     | Connect |   391 | updating                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| 46977311 | common          | %                  | common     | Connect |   331 | updating                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| 46977312 | common          | %                  | common     | Connect |   330 | updating                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| 46977406 | common          | %                  | common     | Connect |   237 | updating                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| 46977413 | common          | %                  | common     | Connect |   231 | updating                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| 46977446 | common          | %                  | common     | Connect |   201 | updating                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| 46977459 | common          | %                  | common     | Connect |   189 | updating                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| 46977462 | common          | %                  | common     | Connect |   186 | updating                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| 46977477 | common          | %                  | common     | Connect |   171 | updating                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| 46977489 | common          | %                  | common     | Connect |   159 | updating                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| 46977490 | common          | %                  | common     | Connect |   158 | updating                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| 46977493 | common          | %                  | common     | Connect |   155 | updating                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| 46977496 | common          | %                  | common     | Connect |   152 | updating                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| 46977511 | common          | %                  | common     | Connect |   137 | updating                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| 46977519 | common          | %                  | common     | Connect |   129 | updating                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| 46977523 | common          | %                  | common     | Connect |   125 | updating                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| 46977526 | common          | %                  | common     | Connect |   123 | updating                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| 46977530 | common          | %                  | common     | Connect |   119 | updating                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| 46977532 | common          | %                  | common     | Connect |   117 | updating                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| 46977533 | common          | %                  | common     | Connect |   116 | updating                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| 46977537 | common          | %                  | common     | Connect |   113 | updating     
host那一列顯示的只是一個(gè)  %號(hào),沒(méi)有顯示ip地址。


這看起來(lái)有點(diǎn)不應(yīng)該。 想了一下原因:沒(méi)有想到,網(wǎng)上也不沒(méi)有找到答案。


靈感出現(xiàn)在一瞬間:




使用下面的方式模擬:


delimiter ;;


 CREATE DEFINER=`root`@`%` PROCEDURE `insert_pro`()
begin
  DECLARE counter INT DEFAULT 0;
 insert_loop: loop
 set counter=counter+1;
 insert into test  values (counter,counter,counter);
 if counter=10000 then
 leave insert_loop;
 end if;
 end loop insert_loop;
 end
 ;;
 
 CREATE EVENT IF NOT EXISTS e_test
ON SCHEDULE EVERY 10 SECOND
ON COMPLETION PRESERVE
DO CALL test.insert_pro();


然后去show full processlist;


MySQL> show full processlist;
+----+-----------------+-----------------+------+---------+------+-----------------------------+----------------------------------------------------+
| Id | User            | Host            | db   | Command | Time | State                       | Info                                               |
+----+-----------------+-----------------+------+---------+------+-----------------------------+----------------------------------------------------+
|  1 | event_scheduler | localhost       | NULL | Daemon  |    2 | Waiting for next activation | NULL                                               |
| 64 | root            | localhost:34176 | test | Sleep   |   52 |                             | NULL                                               |
| 65 | root            | localhost:34177 | NULL | Query   |    0 | System lock                 | show full processlist                              |
| 74 | root            | %               | test | Connect |    0 | query end                   | insert into test  values (counter,counter,counter) |
| 75 | root            | %               | test | Connect |    0 | query end                   | insert into test  values (counter,counter,counter) |
+----+-----------------+-----------------+------+---------+------+-----------------------------+----------------------------------------------------+
5 rows in set (0.00 sec)


可以模擬出這種情況。


其實(shí)就是event調(diào)用的結(jié)果。




轉(zhuǎn)載請(qǐng)注明源出處 
QQ 273002188 歡迎一起學(xué)習(xí) 
QQ 群 236941212 
oracle,mysql,mongo 相互交流

文章標(biāo)題:showprocesslisthost為百分號(hào)(%)
本文地址:http://weahome.cn/article/jcepjd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部