溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

【MYSQL】mysql5.7-bug -information_schema的表被查詢可能導致內(nèi)存泄漏

發(fā)布時間:2020-08-11 07:23:38 來源:ITPUB博客 閱讀:208 作者:小亮520cl 欄目:MySQL數(shù)據(jù)庫


  1. [11 May 2017 6:57] Cho-Shing Ma
  2. Description:
  3. Running a query (on Information _Schema.tables (where clause) to exclude system schema, showing memory growing eventually Out-of-memory. Number of table entries around 20,000 (40 databases with 500 tables for each db)

  4. mysql -uroot -h227.0.0.1 -e "select concat_ws('|',ifnull(TABLE_SCHEMA,''),ifnull(TABLE_NAME,''),ifnull(ENGINE,''),ifnull(TABLE_ROWS,'0'),ifnull(DATA_LENGTH,'0'), ifnull(INDEX_LENGTH,'0'),ifnull(DATA_FREE,'0'), ifnull(TABLE_COLLATION,''),ifnull(CREATE_TIME,''), ifnull(UPDATE_TIME,'')) from information_schema.TABLES where TABLE_SCHEMA not in ('mysql','test','information_schema','performance_schema','sys');"

  5. How to repeat:
  6. Please refer to attached document.

  7. table_definition_cache=10000
  8. table_open_cache =10000
  9. innodb_open_files=10000
  10. open_files_limit=10000

  11. run the sql query every second and record the memory growing from OS and the mysqld.

  12. mysql -uroot -h227.0.0.1 -e "select concat_ws('|',ifnull(TABLE_SCHEMA,''),ifnull(TABLE_NAME,''),ifnull(ENGINE,''),ifnull(TABLE_ROWS,'0'),ifnull(DATA_LENGTH,'0'), ifnull(INDEX_LENGTH,'0'),ifnull(DATA_FREE,'0'), ifnull(TABLE_COLLATION,''),ifnull(CREATE_TIME,''), ifnull(UPDATE_TIME,'')) from information_schema.TABLES where TABLE_SCHEMA not in ('mysql','test','information_schema','performance_schema','sys');"

  13. Suggested fix:
  14. No idea but the memory is growing.


         日前,作者遇到一個疑似“內(nèi)存”泄露的問題,一時找不頭緒,然后就從mysql的官方上找線索,發(fā)現(xiàn)了上面的bug(見上圖,bug id 86279 ),查詢information_schema下的tables表導致內(nèi)存溢出。 經(jīng)動手簡單測試,貌似還真有這回事。 同理,該schema下的其他的一下表,可能也存在這個問題。

         對于表數(shù)量特別多的系統(tǒng),可能更需要慎重。 但也無須驚慌,上面寫的重現(xiàn)現(xiàn)象是重復查詢,然后內(nèi)存逐步增長,最終OOM.

         

         以上信息僅供各位朋友參考!??!



percona 5.7 

  1. https://bugs.launchpad.net/percona-server/+bug/1693511 --performance占用大量內(nèi)存--10G左右穩(wěn)定下來

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI