博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Mysql之performance Schema
阅读量:6150 次
发布时间:2019-06-21

本文共 1448 字,大约阅读时间需要 4 分钟。

Performance schema是用于监控Mysql执行,具有如下特征:

  1.用于在运行时探查Mysql Server的执行过程,是由Performance_schema引擎和 Performance_schema库实现的,侧重于性能数据,而非元数据【INFORMATION_SCHEMA】.

  2.Performance Schema监控Server Event.an event could be a function call, a wait for the operating system, a stage of an SQL statement execution such as parsing or sorting, or an entire statement or group of statements. 

  3.Performance Schema表的更改不会被写入binLog中。

  Performance_schema,默认是开的。

如  :

要想查看Server当前正在干什么,可查看events_waits_current.查询历史最近的events,可查询:events_waits_history,events_waits_history_long.

可配置其保存条数:

[mysqld]performance_schemaperformance_schema_events_waits_history_size=20performance_schema_events_waits_history_long_size=15000

Performance Schema 运行时配置:

  Performance Schema setup表包含监控配置的相关信息。

  查看和更新事件定时器【event timer】,可参考: Performance Schema Runtime Configuration

The  table controls whether the Performance Schema monitors particular table and stored program objects. 

对setup_objects表的修改会立即生效。如:

会对所有自定义的库,表监控。

threads表记录每一个server线程,包括线程信息及指示monitor是否已经启动。若要使Performance schema监控一个线程,以下必须为TRUE:

setup_consumers表里的thread_instrumentation必须为YES,select * from setup_consumers where name ='thread_instrumentation';

The threads.INSTRUMENTED column must be YES.

Wait Instrument Components:

wait/io: wait/io/file  wait/io/socket   wait/io/table

wait/lock:wait/lock/table      wait/lock/metadata/sql/mdl

 

23.9.7.1 The events_transactions_current Table

  

转载于:https://www.cnblogs.com/itdev/p/6040524.html

你可能感兴趣的文章
怎样成为一个高手观后感
查看>>
[转]VC预处理指令与宏定义的妙用
查看>>
JQuery radio单选框应用
查看>>
MySql操作
查看>>
python 解析 XML文件
查看>>
MySQL 文件导入出错
查看>>
HDU2502 月之数(解法三)
查看>>
栈的压入、弹出序列 (剑指offer)
查看>>
java相关
查看>>
由一个异常开始思考springmvc参数解析
查看>>
layer弹出层不居中解决方案,layer提示不屏幕居中解决方法,layer弹窗不居中解决方案...
查看>>
获取本机外网ip和内网ip
查看>>
sql优化
查看>>
hammer.js移动端手势库
查看>>
hightcharts 3d 堆积图下钻
查看>>
201621123018《Java程序设计》第1周学习报告
查看>>
ArrayList 源码分析
查看>>
KMP,深入讲解next数组的求解(转载)
查看>>
初步swift语言学习笔记9(OC与Swift杂)
查看>>
UVA 11769 All Souls Night 的三维凸包要求的表面面积
查看>>