今天测试环境下应用慢,发现数据库出了问题,直接上AWR报告。由于是虚拟机,所以不用贴cpu的个数,可以发现负载高。
Snap Id
Snap Time
Sessions
Cursors/Session
Begin Snap:
15257
30-Jun-15 09:30:57
558
5.3
En...
分类:
其他好文 时间:
2015-06-30 14:54:37
阅读次数:
263
#!/usr/bin/python2.6
import re,datetime
file_name='sim.log'
file=open(file_name,'r')
acnum=[];time_res=[];lnum=0
def trans_time(time):
t1=datetime.datetime.strptime(time,'%y/%m/%d %H:%M:%S')...
分类:
编程语言 时间:
2015-06-30 10:25:14
阅读次数:
123
#查看日期情况
#show variables like '%general%';
#开启日志
#SET GLOBAL general_log = 'On';
#指定日志文件
#SET GLOBAL general_log_file = 'E:/my.log';...
分类:
数据库 时间:
2015-06-24 16:33:13
阅读次数:
173
#usr/bin/evnpython#-*-coding:utf-8-*-importos,sysimport
reimportMySQLdbdb=
MySQLdb.connect(host=‘192.168.10.94‘,user=‘inserter‘,passwd=‘****‘,db=‘gydata‘)cursor=db.cursor()log_file=sys.argv[1]printlog_fileforlinein
open(log_file):elements=line.split(‘
‘)cip..
分类:
编程语言 时间:
2015-06-18 20:17:36
阅读次数:
184
很多是要围绕build_variant.py来编译的。选项中的8936.genns.prod,genns表示全网通同时执行两条windowscmd命令,用“;”无法执行(;后是有空格的),改为&&就行了,但是要求第一条命令要成功执行,才行中间报错,说类logger没有log_file这个成员。因为我写的脚本,看..
分类:
其他好文 时间:
2015-06-18 20:16:47
阅读次数:
866
1 . 安装MySQL server2 . 修改master配置在master机器上的/etc/my.cnf中添加如下几个参数[mysqld]innodb_buffer_pool_size=6ginnodb_log_file_size=1gmax_connections=4096skip-name-...
分类:
数据库 时间:
2015-06-16 09:14:10
阅读次数:
146
1:Got fatal error 1236 from master when reading data from binary log: 'Could not find first log file name in binary log index file'
分类:
数据库 时间:
2015-06-15 10:46:09
阅读次数:
169
mysql复制延迟监控,精确到event.
mysql replication monitor:
*****************************************************************************
Has been synchronized to the same log file! Wait a moment
Not synchronized binlog events is:0,behind master tims is 0
***...
分类:
数据库 时间:
2015-06-12 17:30:32
阅读次数:
137
下面是Python数据处理的题目说明与要求:
The attachment is a log file used to show running status of set-top-box, and each line in the file follows the format of “LineNumber + Time + ProcessName + (ProcessID) + Logs”,...
分类:
编程语言 时间:
2015-06-06 13:35:09
阅读次数:
210
主库添加log-bin-index 参数后,从库报这个错误:Got fatal error 1236 from master when reading data from binary log: 'Could not find first log file name in binary log in...
分类:
其他好文 时间:
2015-05-09 13:03:27
阅读次数:
204