Theparameter“_use_adaptive_log_file_sync”wasintroducedin11gR2andcontrolswhetheradaptiveswitchingbetweenpost/waitandpollingisenabled.In11.2.0.1and11.2.0.2thedefaultvaluefortheparameterisfalse.From11.2.
分类:
其他好文 时间:
2019-01-02 19:27:17
阅读次数:
174
找到mysql配置文件(一般在mysql安装目录下) Windows为my.ini,Linux为my.cnf slow_query_log:是否开启慢查询日志 slow_query_log_file:慢查询日志的位置 long_query_time:慢查询的标准(秒) 重启mysql守护进程/服务, ...
分类:
数据库 时间:
2018-12-31 22:44:43
阅读次数:
226
usttoclarify,therearethreesetsoffile/positioncoordinatesinSHOWSLAVESTATUS:1)Theposition,ONTHEMASTER,fromwhichtheI/Othreadisreading:Master_Log_File/Read_Master_Log_Pos.-----相对于主库,从库读取主库的二进制日志的位置,是IO线程2
分类:
其他好文 时间:
2018-12-06 17:56:04
阅读次数:
161
Checking log directory for disk usage. This may take awhile. Press Ctrl-C to interrupt Done checking log file disk usage. Usage is <1GB. Traceback (mo... ...
分类:
其他好文 时间:
2018-12-04 20:08:28
阅读次数:
925
慢查询参数 slow_query_log=1slow_query_log_file=/mysql3306/log/slow.log 记录的是查询语句,而非管理语句。除非启用 los_slow_admin_statements记录时间达到long_query_time或者符合log_queries_n ...
分类:
其他好文 时间:
2018-12-01 11:04:53
阅读次数:
137
1. 给你一个chatting log file,format大概是这样的: A: bla B: bla bla C: bla bla bla 要你找出说话最多(看word number) 的K个人 而且代码要从读file开始写 /* 1. 给你一个chatting log file,format大... ...
分类:
其他好文 时间:
2018-11-24 11:28:55
阅读次数:
112
准备服务器: 主从搭建(一主两从) MySQL安装过程略 主库/etc/my.cnf 从库/etc/my.cnf 主库上创建复制账号 主库上执行备份 查看主库备份时的binlog名称和位置,MASTER_LOG_FILE和MASTER_LOG_POS 把备份复制到s1和s2,也就是192.168.0 ...
分类:
数据库 时间:
2018-11-16 12:21:00
阅读次数:
386
一、简介开启慢查询日志,可以让MySQL记录下查询超过指定时间的语句,通过定位分析性能的瓶颈,才能更好的优化数据库系统的性能。二、参数说明slow_query_log 慢查询开启状态slow_query_log_file 慢查询日志存放的位置(这个目录需要MySQL的运行帐号的可写权限,一般设置为M ...
分类:
数据库 时间:
2018-11-10 15:32:36
阅读次数:
174
`mysql slow_query_log_file`,看到以下查询超过1s。 对于的 文件如下。 慢,几乎都和索引有关。 索引情况 1. 值的分布区间较少,索引意义不大。如 ,一看就是bool值。 2. 特殊,不参与计算,统计,索引不好。 比较计算时,下列性能递增。 1. 左值计算 2. 右值计算 ...
分类:
数据库 时间:
2018-11-07 13:13:30
阅读次数:
186
首先:检查server端和client端的用户名和密码确认都无误; 然后:检查了服务器端/etc/rsyncd.conf 配置文件未发现异常, 再次:通过配置文件找到了log存放目录 $ cat /etc/rsyncd.conf | grep -i log log file = /var/log/r ...
分类:
其他好文 时间:
2018-11-05 23:35:35
阅读次数:
229