ERROR OGG-01172 Discard file (/oradata/gglog/repl.dsc) exceeded max bytes (500000000).

简介:

1.查看OGG运行状态

GGSCI (crm_slave) 2> info all
Program    Status      Group     Lag at Chkpt  Time Since Chkpt
MANAGER      RUNNING 
REPLICAT    ABENDED     REPL        2252:03:37    22:37:05    
GGSCI (crm_slave) 4> view report repl
2017-04-19 09:25:28  ERROR   OGG-01172  Discard file (/oradata/gglog/repl.dsc) exceeded max bytes (500000000).
2017-04-19 09:25:28  ERROR   OGG-01668  PROCESS ABENDING.


解决方法:

GGSCI (crm_slave) 4> edit params repl

discardfile /oradata/gglog/repl.dsc,append,megabytes 50000    --加大这个值


加大日志文件大小后结果:

GGSCI (crm_slave) 5> info all
Program      Status      Group     Lag at Chkpt  Time Since Chkpt
MANAGER     RUNNING 

REPLICAT     RUNNING     REPL      2273:08:34    00:00:00   
GGSCI (crm_slave) 6>










本文转自 z597011036 51CTO博客,原文链接:http://blog.51cto.com/tongcheng/1917266,如需转载请自行联系原作者
目录
相关文章
|
27天前
|
SQL 关系型数据库 MySQL
mysql:1153 Got a packet bigger than ‘max_allowed_packet’ bytes的解决方法
mysql:1153 Got a packet bigger than ‘max_allowed_packet’ bytes的解决方法
10 0
|
4月前
|
SQL 关系型数据库 MySQL
[ERR] 2006 - MySQL server has gone away,Got a packet bigger than 'max_allowed_packet' bytes
[ERR] 2006 - MySQL server has gone away,Got a packet bigger than 'max_allowed_packet' bytes
30 0
|
8月前
|
Java Spring
The field file exceeds its maximum permitted size of 1048576 bytes 文件上传大小受到限制,报错!!
The field file exceeds its maximum permitted size of 1048576 bytes 文件上传大小受到限制,报错!!
94 0
|
11月前
【WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, st】
【WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, st】
143 0
|
前端开发 Java 关系型数据库
记录:The field files exceeds its maximum permitted size of 1048576 bytes...【亲测有效】
记录:The field files exceeds its maximum permitted size of 1048576 bytes...【亲测有效】
1043 0
|
关系型数据库 MySQL Java
Connection is read-only. Queries leading to data modification are not allowed
看了下mysql-connector-5.1.40版本中,如果设置failoverReadOnly=true (即默认值,参考链接),当mysql连接failover时,会根据jdbc连接串将当前连接的readOnly值设置为true (第8行代码) 1 2 3 4 ...
3355 0