Mysql5.7 的錯誤日誌中最常見的note日誌
轉載: https://www.cnblogs.com/DataArt/p/9984671.html
最常見的note日誌以下三種
第一種,Aborted connection . :
[Note] Aborted connection 61 to db: ‘unconnected’ user: ‘mha’ host: ‘197.xx.xx.xx(Got an error reading communication packets)
原因是因為網路等原因導致。
[Note] Aborted connection 61 to db: ‘unconnected’ user: ‘mha’ host: ‘197.xx.xx.xx(Got timeout reading communication packets)
原因是會話的idle時間達到了資料庫指定的timeout時間。
第二種:SLAVE多執行緒同步的資訊
2016-03-14T15:48:26.432150Z 73 [Note]Multi-threaded slave statistics for channel ”: seconds elapsed = 121; eventsassigned = 100374529; worker queues filled over
overrun level = 0; waited due aWorker queue full = 0; waited due the total size = 0; waited at clock conflicts= 1451875661700 waited (count) when Workers occupied = 3211993 waited whenWorkers occupied = 445032386000
events assigned:總共有多少個event被分配執行,計的是總數。
worker queues filled over overrun level:多執行緒同步中,worker 的私有佇列長度超長的次數,計的是總數。
waited due a Worker queue full :因為worker的佇列超長而產生等待的次數,計的是總數。
waited due the total size :超過最大size的次數,這個由引數slave_pending_jobs_size_max 指定。
waited at clock conflicts :因為邏輯時間產生衝突的等待時間,單位是納秒。
waited (count) when Workers occupied :因為workder被佔用而出現等待的次數。(總計值)。
waited when Workersoccupied :因為workder被佔用而出現等待的總時間,總計值,單位是納秒。
第三種:page_cleaner執行緒的輸出日誌
[Note] InnoDB:page_cleaner: 1000ms intended loop took 4750ms.The
settings might not be optimal. (flushed=1519 and evicted=0, during the time.)
本次重新整理時間 - 上次重新整理時間 > 1秒(睡眠時間)+3秒 則報警告,一般是IO能力不足
引數最佳化(目的在於減少每次重新整理的量,讓每次重新整理塊數更加平均):
innodb_io_capacity 應該降低
innodb_max_dirty_pages_pct 應該降低
innodb_max_dirty_pages_pct_lwm 如果設定了應該考慮降低
innodb_io_capacity_max 降低
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26250550/viewspace-2685427/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 常見的錯誤日誌型別型別
- mysql 日誌之錯誤日誌MySql
- MySQL資料庫中的日誌檔案---(1)錯誤日誌MySql資料庫
- mysql之 日誌體系(錯誤日誌、查詢日誌、二進位制日誌、事務日誌、中繼日誌)MySql中繼
- Apche日誌系列(2):錯誤日誌(轉)
- 排查錯誤日誌
- SAP 錯誤日誌的調查
- 上一個日誌的錯誤
- Mabatis配置錯誤日誌BAT
- net 日誌分析錯誤
- 日誌查詢錯誤
- 錯誤日誌檢視
- SQL Server 錯誤日誌SQLServer
- alert日誌中的兩種ORA錯誤分析
- Mysql5.7錯誤日誌時間不對的解決辦法MySql
- 開啟PHP的錯誤log日誌PHP
- MySQL 狂寫錯誤日誌MySql
- jdon框架日誌資訊錯誤框架
- MySQL中幾種常見的日誌MySql
- mysql5.7 慢日誌配置MySql
- node錯誤處理與日誌
- Sqlserver:代理錯誤日誌,知多少?SQLServer
- SQL Server ErrorLog 錯誤日誌SQLServerError
- aix ip 衝突錯誤日誌AI
- oracle日誌錯誤恢復(轉)Oracle
- 關閉Druid中某些錯誤日誌列印UI
- hpux的報錯日誌UX
- 檢查Linux系統日誌error和mysql錯誤日誌的指令碼薦LinuxErrorMySql指令碼
- ITMySQL錯誤日誌與通用查詢日誌圖文詳析jugMySql
- 程式中的日誌
- messages 日誌裡面大量的fcoemon錯誤
- .NetCore中的日誌(1)日誌元件解析NetCore元件
- insert中啟用錯誤日誌的問題及分析
- 基於ELK搭建MySQL日誌平臺的要點和常見錯誤MySql
- Laravel 錯誤日誌的外掛 (Laravel-log-viewer)LaravelView
- 日誌與除錯除錯
- node專案錯誤處理與日誌
- 2、MySQL錯誤日誌(Error Log)詳解MySqlError