Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commita6417d0

Browse files
knizhnikkelvich
authored andcommitted
Exclude node from cluster on non-recoverable error
1 parentbfd72af commita6417d0

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

‎multimaster.c

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,8 @@ char const* const MtmNodeStatusMnem[] =
166166
"Connected",
167167
"Online",
168168
"Recovery",
169-
"InMinor"
169+
"InMinor",
170+
"OutOfService"
170171
};
171172

172173
boolMtmDoReplication;
@@ -1025,8 +1026,11 @@ void MtmHandleApplyError(void)
10251026
caseERRCODE_INDEX_CORRUPTED:
10261027
caseERRCODE_SYSTEM_ERROR:
10271028
caseERRCODE_INTERNAL_ERROR:
1028-
caseERRCODE_OUT_OF_MEMORY:
1029-
break;
1029+
caseERRCODE_OUT_OF_MEMORY:
1030+
elog(WARNING,"Node is excluded from cluster because of non-recoverable error %d",edata->sqlerrcode);
1031+
MtmSwitchClusterMode(MTM_OUT_OF_SERVICE);
1032+
kill(PostmasterPid,SIGQUIT);
1033+
break;
10301034
}
10311035
}
10321036

‎multimaster.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,12 @@ typedef enum
9797
typedefenum
9898
{
9999
MTM_INITIALIZATION,/* Initial status */
100-
MTM_OFFLINE,/* Node isout of quorum */
100+
MTM_OFFLINE,/* Node isexcluded from cluster */
101101
MTM_CONNECTED,/* Arbiter is established connections with other nodes */
102102
MTM_ONLINE,/* Ready to receive client's queries */
103103
MTM_RECOVERY,/* Node is in recovery process */
104-
MTM_IN_MINORITY/* Node is out of quorum */
104+
MTM_IN_MINORITY,/* Node is out of quorum */
105+
MTM_OUT_OF_SERVICE/* Node is not avaiable to to critical, non-recoverable error */
105106
}MtmNodeStatus;
106107

107108
typedefenum

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp