Oracle Golden Gate 系列十四 -- 监控 GG 状态 说明
?
一.使用命令查看
主要有如下命令:
這里注意STATS 指靜態(tài)的信息,而STATUS 是運行時的信息。
?
?
1.1 Monitoring an Extract recovery
If Extractabends when a long-running transaction is open, it can seem to take a long timeto recover when it is started again. To recover its processing state, Extractmust search back through the online and archived logs (if necessary) to findthe first log record for that long-running transaction. The farther back intime that the transaction started, the longer the recovery takes, in general,and Extract can appear to be stalled.
--當一個長事務(wù)在運行時,此時Extract 進程異常中斷,那么在下次啟動時就會花很長的時間來進行recover操作。
在恢復(fù)過程中,Extract 進程需要搜索online和archived logs 信息來查找長事務(wù)的第一條log 記錄。從而確定事務(wù)的開始時間,然后進行恢復(fù),在恢復(fù)過程中,Extract 的操作是比較慢的。
?
To confirm thatExtract is recovering properly, use the SEND EXTRACT command with the STATUS option.One of the following status notations appears, and you can follow the progressas Extract changes its log read position over the course of the recovery.
為了確認Extract 的recover 狀態(tài),可以使用如下命令查看:
GGSCI>Send extract_name status
或者:
GGSCI>Send ?extract extract_name status
?
該命令中的狀態(tài)有如下三種:
(1)????In recovery[1] – Extract isrecovering to its checkpoint in the transaction log.
(2)????In recovery[2] – Extract isrecovering from its checkpoint to the end of the trail.
(3)????Recovery complete – Therecovery is finished, and normal processing will resume.
?
示例:
GGSCI (gg1) 12>send extract ext1 status
?
Sending STATUS request to EXTRACT EXT1 ...
?
EXTRACT EXT1 (PID 5269)
? Current status: In recovery[1]: At EOF
?
?Current read position:
?Sequence #: 24
?RBA: 6921352
?Timestamp: 2011-11-17 20:17:20.000000
?
?Current write position:
?Sequence #: 0
?RBA: 0
?Timestamp: 2011-11-17 16:56:31.777616
?Extract Trail: /u01/ggate/dirdat/lt
?
GGSCI (gg1) 13> send ext1 status
?
Sending STATUS request to EXTRACT EXT1 ...
?
EXTRACT EXT1 (PID 5269)
??Current status: Inrecovery[1]: At EOF
?
?Current read position:
?Sequence #: 24
?RBA: 6921352
?Timestamp: 2011-11-17 20:17:20.000000
?
?Current write position:
?Sequence #: 0
?RBA: 0
?Timestamp: 2011-11-17 16:56:31.777616
??Extract Trail: /u01/ggate/dirdat/lt
?
1.2 Monitoring lag
Lag statisticsshow you how well the Oracle GoldenGate processes are keeping pace with theamount of data that is being generated by the business applications. With this information,you can diagnose suspected problems and tune the performance of the Oracle GoldenGateprocesses to minimize the latency between the source and target databases.
?????? Lag 的靜態(tài)信息可以顯示GG 進程處理的data 數(shù)量。
?
For Extract, lagis the difference, in seconds, between the time that a record was processed byExtract (based on the system clock) and the timestamp of that record in thedata source.
--對于Extract,lag 表示Extract 進程處理記錄的時間與記錄在Data source中timestamp的一個時間差。 這個可以體現(xiàn)Extract 的反應(yīng)時間。單位是秒。
For Replicat,lag is the difference, in seconds, between the time that the last record was processedby Replicat (based on the system clock) and the timestamp of the record in the trail.
--同樣對于Replicat,lag 表示的是Replicat 進程處理的最后一條記錄與這條記錄在trail 文件中timestamp 的時間差。單位是秒。
?
查看lag statistics 的信息可以使用如下兩種語法:
(1)LAG {EXTRACT | REPLICAT | ER}{<group | wildcard>}
(2)SEND {EXTRACT | REPLICAT}{<group | wildcard>}, GETLAG
?????? 這里要注意的是, SEND 命令返回的log statistics 是checkpointed 中記錄的最后一條記錄,而不是process 當前處理的記錄,所以SEND 命令顯示的信息沒有LAG 或 INFO 命令顯示的準確。
?
示例:
GGSCI (gg1) 20> lag er *
?
Sending GETLAG request to EXTRACT DPUMP ...
No records yet processed.
At EOF, no more records to process.
?
Sending GETLAG request to EXTRACT EXT1 ...
Last record lag: 21 seconds.
At EOF, no more records to process.
?
?
GGSCI (gg1) 21> send ext1 getlag
?
Sending GETLAG request to EXTRACT EXT1 ...
Last record lag: 21 seconds.
At EOF, no more records to process.
?
?
有三種方式來控制Lag 的報警設(shè)置:
(1)Use the LAGREPORTMINUTES or LAGREPORTHOURSparameter to specify the interval at which Manager checks for Extract andReplicat lag.
?????? --這2個參數(shù)設(shè)置Manager 檢查Extract 和ReplicatLag的時間間隔。
(2)Use the LAGCRITICALSECONDS, LAGCRITICALMINUTES,or LAGCRITICALHOURS parameter to specify a lag threshold that is consideredcritical, and to force a warning message to the error log when the threshold isreached. This parameter affects Extract and Replicat processes on the localsystem.
?????? --這3個參數(shù)控制Lag 的界限值,當超過這個值,就認為是嚴重的,將強制寫一條警告信息到error log里。 這個參數(shù)只影響本地系統(tǒng)上的Extract 和Replicat 進程。
(3)Use the LAGINFOSECONDS, LAGINFOMINUTES,or LAGINFOHOURS parameter to specify how often to report lag information to theerror log. If the lag is greater than the value specified with the LAGCRITICAL parameter,Manager reports the lag as critical; otherwise, it reports the lag as aninformational message. A value of zero (0) forces a message at the frequencyspecified with the LAGREPORTMINUTES or LAGREPORTHOURS parameter.
?????? --這3個參數(shù)指定多長時間將lag 信息寫入error log。
?
1.3 Monitoring processing volume
The volumestatistics show you the amount of data that is being processed by an Oracle GoldenGateprocess, and how fast it is being moved through the Oracle GoldenGate system.With this information, you can diagnose suspected problems and tune the performanceof the Oracle GoldenGate processes.
?
1.3.1 查看 volume statistics
語法:
STATS {EXTRACT | REPLICAT | ER} {<group| wildcard>} [TABLE {<name | wildcard>}]
?
示例:
GGSCI (gg1) 22> stats er ext1
?
Sending STATS request to EXTRACT EXT1 ...
Start of Statistics at 2011-11-18 16:30:35.
?
DDL replication statistics (for alltrails):
*** Total statistics since extractstarted???? ***
???????Operations??????????????????????????????????0.00
???????Mapped operations??????????????????????????? 0.00
???????Unmapped operations????????????????????????? 0.00
???????Other operations???????????????????????????? 0.00
???????Excluded operations????????????????????????? 0.00
?
Output to /u01/ggate/dirdat/lt:
?
Extracting from DAVE.PDBA to DAVE.PDBA:
*** Total statistics since 2011-11-1815:13:17 ***
???????Total inserts??????????????????????????????? 0.00
???????Total updates??????????????????????????????? 0.00
???????Total deletes??????????????????????????????? 1.00
???????Total discards?????????????????????????????? 0.00
???????Total operations???????????????????????????? 1.00
?
*** Daily statistics since 2011-11-1815:13:17 ***
???????Total inserts???????????????????????????????0.00
???????Total updates??????????????????????????????? 0.00
???????Total deletes??????????????????????????????? 1.00
???????Total discards?????????????????????????????? 0.00
???????Total operations???????????????????????????? 1.00
?
*** Hourly statistics since 2011-11-1816:00:00 ***
???????No database operations have been performed.
?
*** Latest statistics since 2011-11-1815:13:17 ***
???????Total inserts??????????????????????????????? 0.00
???????Total updates???????????????????????????????0.00
???????Total deletes??????????????????????????????? 1.00
???????Total discards?????????????????????????????? 0.00
???????Total operations???????????????????????????? 1.00
?
End of Statistics.
?
GGSCI (gg1) 23> statsextract ext1 table pdba
?
Sending STATS request to EXTRACT EXT1 ...
Start of Statistics at 2011-11-18 16:31:17.
?
DDL replication statistics (for alltrails):
?
*** Total statistics since extractstarted???? ***
???????Operations?????????????????????????????????? 0.00
???????Mapped operations??????????????????????????? 0.00
???????Unmapped operations????????????????????????? 0.00
???????Other operations???????????????????????????? 0.00
???????Excluded operations????????????????????????? 0.00
Output to /u01/ggate/dirdat/lt:
End of Statistics.
?
?
1.3.2 查看 processing rate
語法:
STATS {EXTRACT | REPLICAT | ER} {<group| wildcard>}, REPORTRATE {HR | MIN | SEC}
--HR/MIN/SEC==小時/分鐘/秒
?
示例:
GGSCI (gg1) 24> stats er ext1,reportrate min
Sending STATS request to EXTRACT EXT1 ...
Start of Statistics at 2011-11-18 16:34:36.
?
DDL replication statistics (for alltrails):
?
*** Total statistics since extractstarted???? ***
???????Operations?????????????????????????????????? 0.00
???????Mapped operations??????????????????????????? 0.00
???????Unmapped operations????????????????????????? 0.00
???????Other operations???????????????????????????? 0.00
???????Excluded operations????????????????????????? 0.00
?
Output to /u01/ggate/dirdat/lt:
?
Extracting from DAVE.PDBA to DAVE.PDBA:
?
*** Total statistics since 2011-11-1815:13:17 ***
???????Total inserts/minute:??????????????????????? 0.00
???????Total updates/minute:??????????????????????? 0.00
???????Total deletes/minute:??????????????????????? 0.01
???????Total discards/minute:????? ?????????????????0.00
???????Total operations/minute:???????????????????? 0.01
?
*** Daily statistics since 2011-11-1815:13:17 ***
???????Total inserts/minute:??????????????????????? 0.00
???????Total updates/minute:??????????????????????? 0.00
???????Total deletes/minute:??????????????????????? 0.01
???????Total discards/minute:?????????????????????? 0.00
???????Total operations/minute:???????????????????? 0.01
?
*** Hourly statistics since 2011-11-1816:00:00 ***
?
???????No database operations have been performed.
?
*** Latest statistics since 2011-11-1815:13:17 ***
???????Total inserts/minute:??????????????????????? 0.00
???????Total updates/minute:??????????????????????? 0.00
???????Total deletes/minute:????? ??????????????????0.01
???????Total discards/minute:?????????????????????? 0.00
???????Total operations/minute:???????????????????? 0.01
?
End of Statistics.
?
?
1.3.3 ?查看自啟動以來單表的總的操作
語法:
STATS {EXTRACT | REPLICAT | ER} {<group| wildcard>},TOTALSONLY <table>
?
示例:
GGSCI (gg1) 25> stats er ext1,totalsonly pdba
?
Sending STATS request to EXTRACT EXT1 ...
Start of Statistics at 2011-11-18 16:37:51.
DDL replication statistics (for alltrails):
?
*** Total statistics since extractstarted???? ***
???????Operations?????????????????????????????????? 0.00
???????Mapped operations??????????????????????????? 0.00
???????Unmapped operations????????????????????????? 0.00
???????Other operations???????????????????????????? 0.00
???????Excluded operations????????????????????????? 0.00
?
Output to /u01/ggate/dirdat/lt:
?
Cumulative totals for specified table(s):
*** Total statistics since 2011-11-1815:13:17 ***
???????No database operations have been performed.
?
*** Daily statistics since 2011-11-1815:13:17 ***
???????No database operations have been performed.
?
*** Hourly statistics since 2011-11-1816:00:00 ***
???????No database operations have been performed.
?
*** Latest statistics since 2011-11-1815:13:17 ***
???????No database operations have been performed.
?
End of Statistics.
?
1.3.4 To limit the types of statistics that are displayed
語法:
STATS {EXTRACT | REPLICAT | ER} {<group| wildcard>},{TOTAL | DAILY | HOURLY | LATEST}
?
示例:
GGSCI (gg1) 28> stats ext1 total
Sending STATS request to EXTRACT EXT1 ...
Start of Statistics at 2011-11-18 16:44:52.
?
DDL replication statistics (for alltrails):
?
*** Total statistics since extractstarted???? ***
???????Operations?????????????????????????????????? 0.00
???????Mapped operations??????????????????????????? 0.00
???????Unmapped operations????????????????????????? 0.00
???????Other operations???????????????????????????? 0.00
???????Excluded operations????????????????????????? 0.00
?
Output to /u01/ggate/dirdat/lt:
?
Extracting from DAVE.PDBA to DAVE.PDBA:
?
*** Total statistics since 2011-11-1815:13:17 ***
???????Total inserts??????????????????????????????? 0.00
???????Total updates???????????????? ???????????????0.00
???????Total deletes??????????????????????????????? 1.00
???????Total discards?????????????????????????????? 0.00
???????Total operations???????????????????????????? 1.00
?
End of Statistics.
?
小技巧:
?????? 命令中的extract和replicat 類型不用指定,后面的逗號也可以省略,gg 都會自動識別。
?
1.3.5 To clear allfilters that were set with previous options
語法:
STATS {EXTRACT | REPLICAT | ER} {<group| wildcard>}, RESET
?
?
1.3.6 To send interimstatistics to the report file
語法:
SEND {EXTRACT | REPLICAT | ER} {<group |wildcard>}, REPORT
?
?
二.使用Errorlog
Error log 存放在GG 的安裝目錄下面:
gg1:/u01/ggate> ll ggserr.log
-rw-rw-rw- 1 oracle oinstall 149756 Nov 1816:44 ggserr.log
?
使用GG error log可以查看一下信息:
(1)????a history of GGSCI commands
(2)????Oracle GoldenGate processesthat started and stopped
(3)????processing that was performed
(4)????errors that occurred
(5)????informational and warningmessages
?
Because the error log shows events as they occurred in sequence, it is a good tool for detectingthe cause (or causes) of an error. For example, you might discover that:
(1)????someone stopped a process
(2)????a process failed to make aTCP/IP or database connection
(3)????a process could not open a file
?
2.1 To view the error log
Use any of the following:
(1)????Standard shell command to viewthe ggserr.log file within the root Oracle GoldenGate
(2)????directory
(3)????Oracle GoldenGate Director
(4)????VIEW GGSEVT command in GGSCI
?
語法:VIEW GGSEVT
?
示例:
GGSCI (gg1) 29> view ggsevt
?
2011-11-08 20:08:12? INFO???OGG-00987? Oracle GoldenGateCommand Interpreter for
?Oracle:?GGSCI command (oracle): edit params mgr.
2011-11-08 20:11:09? INFO???OGG-00987? Oracle GoldenGateCommand Interpreter for
?Oracle:?GGSCI command (oracle): start manager.
2011-11-08 20:11:11? INFO???OGG-00983? Oracle GoldenGateManager for Oracle, mgr
.prm:?Manager started (port 7809).
2011-11-08 20:36:22? INFO???OGG-00987? Oracle GoldenGateCommand Interpreter for
?Oracle:?GGSCI command (oracle): add extract ext1?tranlog, begin now.
2011-11-08 20:36:47? INFO???OGG-01749? Oracle GoldenGateCommand Interpreter for
?Oracle:?Successfully registered EXTRACT EXT1 to start managing log retention at
?SCN1121060.
2011-11-08 20:37:16? INFO???OGG-00987? Oracle GoldenGateCommand Interpreter for
?Oracle:?GGSCI command (oracle): add exttrail /u01/ggate/dirdat/lt? extract ext1
.
?
2.2 To filter the error log
The error logcan become very large, but you can filter it based on a keyword. For example, thisfilter show only errors:
$ moreggserr.log | grep ERROR
?
示例:
gg1:/u01/ggate> more ggserr.log | grepERROR
2011-11-09 21:00:32? ERROR??OGG-01224? Oracle GoldenGateCapture for Oracle, ext1.prm:? TCP/IPerror 113 (No route to host).
2011-11-09 21:00:33? ERROR??OGG-01668? Oracle GoldenGateCapture for Oracle, ext1.prm:? PROCESSABENDING.
2011-11-15 20:51:50? ERROR??OGG-01203? Oracle GoldenGateCapture for Oracle, ext2.prm:? EXTRACTabending.
?
Because the error log will continue to grow as you use Oracle GoldenGate, consider archivingand deleting the oldest entries in the file.
?
NOTE:
The Collectorprocess might stop reporting to the log on UNIX systems after the log has beencleaned up. To get reporting started again, restart the Collector process
after the cleanup.
?
三.使用進程報告
?
根據(jù)進程報告,可以查看如下內(nèi)容:
(1)????parameters in use
(2)????table and column mapping
(3)????database information
(4)????runtime messages and errors
(5)????runtime statistics for thenumber of operations processed
?
Every Extract,Replicat, and Manager process generates a report file at the end of each run. Thereport can help you diagnose problems that occurred during the run, such asinvalid mapping syntax, SQL errors, and connection errors.
每個Extract,Replicat和Manager進程,在運行結(jié)束時都會生成一個report 文件。 通過這個文件可以查看進行在運行期間的相關(guān)信息。
?
3.1 To view a process report
Use any of the following:
(1)????standard shell command forviewing a text file
(2)????Oracle GoldenGate Director
(3)????VIEW REPORT command in GGSCI
?
語法:
VIEW REPORT {<group> | <filename> | MGR}
?
Where:
(1)?????<group> shows an Extract or Replicatreport that has the default name, which is the name of the associated group.
(2)????<file name> shows anyExtract or Replicat report file that matches a given path name. Must be used ifa non-default report name was assigned with the REPORT option of the ADDEXTRACT or ADD REPLICAT command when the group was created.
(3)????MGR shows the Manager processreport.
?
Report names arein upper case if the operating system is case-sensitive. By default,reportshave a file extension of .rpt, for example EXTORA.rpt. The default location isthe dirrpt sub-directory of the Oracle GoldenGate directory.
--如果操作系統(tǒng)大小寫敏感,那么Report Name就是大寫,默認情況下,Report 文件擴展名是rpt,默認目錄是GG 安裝目錄的dirrpt 目錄下。
?
示例:
GGSCI (gg1) 30> view report ext1
?
?
***********************************************************************
???????????????? Oracle GoldenGate Capture forOracle
???????Version 11.1.1.1 OGGCORE_11.1.1_PLATFORMS_110421.2040
??Linux, x64, 64bit (optimized), Oracle 11g on Apr 30 2011 18:52:51
?
Copyright (C) 1995, 2011, Oracle and/or itsaffiliates. All rights reserved.
?
?
??????????????????? Starting at 2011-11-1813:30:22
***********************************************************************
?
Operating System Version:
Linux
Version #1 SMP Tue Aug 18 15:59:52 EDT2009, Release 2.6.18-164.el5xen
Node: gg1
Machine: x86_64
???????????????????????? soft limit?? hard limit
Address Space Size?? :???unlimited??? unlimited
Heap Size??????????? :???unlimited??? unlimited
File Size??????????? :???unlimited??? unlimited
CPU Time???????????? :??? unlimited???unlimited
…..
?
3.2 To determine the name and location of a process report
Use the INFO command in GGSCI.
語法:
INFO<group>, DETAIL
?
3.3 To view information if a process abends without a report
Run the processfrom the command shell of the operating system (not GGSCI) to send the informationto the terminal.
如果進程中斷,并沒有生成Report 的情況,我們可以使用如下語法來查看進程的信息。
?
在操作系統(tǒng)里執(zhí)行如下語法:
<process>paramfile <path name>.prm
Where:
(1)?????<process> is either Extract or Replicat.
(2)?????paramfile <path name>.prm is the fullyqualified name of the parameter file.
?
示例:
gg1:/u01/ggate> extractparamfile /u01/ggate/dirdat/ext1.prm
?
Source Context :
?SourceModule??????????? : [ggstd.util.file]
?SourceID??????????????? :[/scratch/sganti/view_storage/sganti_core_lin64/oggcore/OpenSys/src/gglib/ggstd/fileutl.c]
?SourceFunction????????? :[ggOpenFile]
?SourceLine????????????? : [681]
?ThreadBacktrace???????? : [8]elements
?????????????????????????:[extract(CMessageContext::AddThreadContext()+0x26) [0x66a416]]
????????????????????????? :[extract(CMessageFactory::CreateMessage(CSourceContext*, unsigned int,...)+0x7b2) [0x660ee2]]
????????????????????????? :[extract(_MSG_ERR_FILE_OPEN_ERROR(CSourceContext*, char const*,CMessageFactory::MessageDisposition)+0x92) [0x633952]]
????????????????????????? :[extract(ggOpenFile(char const*, char const*)+0x7e) [0x58851e]]
????????????????????????? : [extract[0x512f63]]
??????????????? ??????????: [extract(main+0x1a8) [0x5254a8]]
????????????????????????? :[/lib64/libc.so.6(__libc_start_main+0xf4) [0x34fa41d994]]
????????????????????????? :[extract(__gxx_personality_v0+0x1f2) [0x4f2bda]]
?
2011-11-18 17:23:31? ERROR??OGG-01091? Unable to open file"/u01/ggate/dirdat/ext1.prm" (error 2, No such file or directory).
2011-11-18 17:23:31? ERROR??OGG-01668? PROCESS ABENDING.
3.4 Scheduling runtime statistics in the process report
By default,runtime statistics are written to the report once, at the end of each run. For longor continuous runs, you can use optional parameters to view these statistics ona regular basis, without waiting for the end of the run.
--默認情況下,運行時的靜態(tài)信息只在進程結(jié)束時寫如report。 如果是一個長時間運行的進程,我們可以使用可選的參數(shù)來查看進程的信息,而不是等進程stop。
?
3.4.1 To set a schedulefor reporting runtime statistics
Use the REPORT parameterin the Extract or Replicat parameter file to specify a day and time to generateruntime statistics in the report.
?????? --在Extract 或Replicat 進程里指定REPORT參數(shù),就可以在指定的時間間隔內(nèi)規(guī)則的生成report。
?
3.4.2 To send runtimestatistics to the report on demand
Use the SENDEXTRACT or SEND REPLICAT command with the REPORT option to view current runtimestatistics when needed.
使用send extract 或者 send replicat 命令加report 參數(shù)來查看進程當前的運行信息。
?
示例:
GGSCI (gg1) 35> send ext1 report
Sending REPORT request to EXTRACT EXT1 ...
Request processed.
?
3.5 Viewing record counts in the process report
Use the REPORTCOUNTparameter to report a count of transaction records that Extract or Replicatprocessed since startup. Each transaction record represents a logical database operationthat was performed within a transaction that was captured by Oracle GoldenGate.The record count is printed to the report file and to the screen.
--REPORTCOUNT 參數(shù)可以顯示進程自啟動以來事務(wù)操作的數(shù)量。 每個事務(wù)操作都會被GG 捕獲。
?
3.6 Managing process reports
Once created, areport file must remain in its original location for Oracle GoldenGate to operateproperly after processing has started.
Whenever aprocess starts, Oracle GoldenGate creates a new report file and ages the previousone by appending a sequence number to the name. The numbers increment from 0(the previous one) to 9 (the oldest).
No process everhas more than ten aged reports and one active report. After the tenth aged report,the oldest is deleted when a new report is created. Set up an archivingschedule for aged report files in case they are needed to resolve a servicerequest.
?
3.6.1 To prevent anExtract or Replicat report file from becoming too large
Use the REPORTROLLOVERparameter to force report files to age on a regular schedule, instead of when aprocess starts. For long or continuous runs, setting an aging schedule controlsthe size of the active report file and provides a more predictable set ofarchives that can be included in your archiving routine.
?
3.6.2 To prevent SQLerrors from filling up the Replicat report
Use the WARNRATEparameter to set a threshold for the number of SQL errors that can be toleratedon any target table before being reported to the process report and to theerror log. The errors are reported as a warning. If your environment cantolerate a large number of these errors, increasing WARNRATE helps to minimizethe size of those files.
?
四.使用discardfile
Use a discardfile to capture information about Oracle GoldenGate operations that failed. Thisinformation can help you to resolve data errors, such as those that involveinvalid column mapping.
--discard file可以存放GG 失敗的操作記錄。
?
Discard file 包含如下信息:
(1)????The database error message
(2)????The sequence number of the datasource or trail file
(3)????The relative byte address ofthe record in the data source or trail file
(4)????The details of the discardedoperation, such as column values of a DML statement or the text of a DDLstatement.
?
A discard filecan be used for Extract or Replicat, but it is most useful for Replicat to log operationsthat could not be reconstructed or applied.
--discard file 可以使用在Extract 和 Replicat 進程上,但是大多數(shù)情況下是在Replicat 進程上使用。
?
4.1 To use a discard file
Include the DISCARDFILEparameter in the Extract or Replicat parameter file. You must supply a name forthe file. The parameter has options that control the maximum file size, afterwhich the process abends, and whether new content overwrites or appends toexisting content.
?????? --Extract 和 Replicat 進程都可以包含DISCARDFILE參數(shù),如果使用該參數(shù),必須指明file name。 這個參數(shù)的可選參數(shù)包括最大filesize,和程序異常中止后,啟動時是overwrite 還是append 這個discard file.
?
語法:
DISCARDFILE<file name> [, APPEND | PURGE] [, MAXBYTES <n> | MEGABYTES<n>]
?
NOTE:
To prevent theneed to perform manual maintenance of discard files, use either the PURGE orAPPEND option. Otherwise, you must specify a different discard file name beforestarting each process run, because Oracle GoldenGate will not write to anexisting discard file.
?????? --為了避免人工的維護discard file,可以使用purge 或者append 參數(shù),這樣就可以正常啟動了。 不然就需要在啟動進程前指定新的位置,因為GG 不會覆蓋已經(jīng)存在的discard file。
?
4.2 To view a discard file
Use either of the following:
(1)????Standard shell command to viewthe file by name
(2)????VIEW REPORT command in GGSCI,with the discard file name as input
語法:
VIEW REPORT<file name>
?
GGSCI (gg2) 4> view params rep1
?
replicat rep1
ASSUMETARGETDEFS
userid ggate@gg2,password ggate
discardfile /u01/ggate/dirdat/rep1_discard.txt, append, megabytes 10
--HANDLECOLLISIONS
ddl include all
ddlerror default ignore retryop
map dave.pdba, target dave.pdba;
?
示例:
GGSCI (gg2) 5> view report ?/u01/ggate/dirdat/rep1_discard.txt
Oracle GoldenGate Delivery for Oracleprocess started, group REP1 discard file op
ened: 2011-11-08 20:51:55
Oracle GoldenGate Delivery for Oracleprocess started, group REP1 discard file op
ened: 2011-11-09 10:39:47
Oracle GoldenGate Delivery for Oracleprocess started, group REP1 discard file op
ened: 2011-11-16 11:23:44
?
4.3 To manage discard files
Use the DISCARDROLLOVERparameter to set a schedule for aging discard files. For long or continuousruns, setting an aging schedule prevents the discard file from filling up and causingthe process to abend, and it provides a predictable set of archives that can beincluded in your archiving routine.
?
語法:
DISCARDROLLOVER{AT <hh:mi> | ON <day of week> | AT <hh:mi> ON <day ofweek>}
?
?
?
?
?
?
-------------------------------------------------------------------------------------------------------
版權(quán)所有,文章允許轉(zhuǎn)載,但必須以鏈接方式注明源地址,否則追究法律責任!
Blog:???? http://blog.csdn.net/tianlesoftware
Weibo: http://weibo.com/tianlesoftware
Email: ? tianlesoftware@gmail.com
Skype: tianlesoftware
?
-------加群需要在備注說明Oracle表空間和數(shù)據(jù)文件的關(guān)系,否則拒絕申請----
DBA1 群:62697716(滿);?? DBA2 群:62697977(滿)??DBA3 群:62697850(滿)??
DBA 超級群:63306533(滿);? DBA4 群:83829929(滿) DBA5群: 142216823(滿)?
DBA6 群:158654907(滿)?? DBA7 群:69087192(滿)??DBA8 群:172855474
DBA 超級群2:151508914? DBA9群:102954821???? 聊天 群:40132017(滿)
轉(zhuǎn)載于:https://www.cnblogs.com/tianlesoftware/archive/2011/11/18/3609486.html
創(chuàng)作挑戰(zhàn)賽新人創(chuàng)作獎勵來咯,堅持創(chuàng)作打卡瓜分現(xiàn)金大獎總結(jié)
以上是生活随笔為你收集整理的Oracle Golden Gate 系列十四 -- 监控 GG 状态 说明的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: nginx的location规则(一)
- 下一篇: 代数余子式和伴随矩阵