您的位置:首页 > 编程语言 > Go语言

快速强制kill goldengate异常进程

2018-09-28 14:15 309 查看

goldengate在遇到大的事务或者异常时,使用stop 无法正常关闭进程,遇到这个问题的时候很是头疼,于是help一下,发现两个大杀器,从此再也不用担心stop不掉进程了,如果是遇到大的事务还是建议stop后等待事务提交或者回滚正常关闭,但是遇到一些异常时,可以使用如下kill掉进程:

GGSCI>KILL REPLICAT group_name
GGSCI>KILL EXTRACT finance

正常停掉进程:
GGSCI>stop REPLICAT group_name
GGSCI>stop EXTRACT finance

下面是两个命令的详细说明

GGSCI> help kill replicat

Use KILL REPLICAT to kill a Replicat process. Killing a process leaves the
most recent checkpoint in place, and the current transaction is rolled back
by the database, guaranteeing that no data is lost when the process is
restarted. The Manager process will not attempt to restart a killed Replicat
process. Use this command only if Replicat cannot be stopped gracefully with
the STOP REPLICAT command.

Syntax

KILL REPLICAT group_name

group_name

The name of a Replicat group or a wildcard () to specify multiple groups.
For example, T kills all Replicat processes whose group names begin with T.

Example

KILL REPLICAT finance

GGSCI > help kill extract

Use KILL EXTRACT to kill an Extract process running in regular or PASSIVE mode.
Use this command only if a process cannot be stopped gracefully with the STOP
EXTRACT command. The Manager process will not attempt to restart a killed
Extract process.

Syntax

KILL EXTRACT group_name

group_name

The name of an Extract group or a wildcard () to specify multiple groups.
For example, T kills all Extract processes whose group names start with T.

Example

KILL EXTRACT finance

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  goldengate kill 进程