Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
def4058e
TDengine
项目概览
taosdata
/
TDengine
大约 1 年 前同步成功
通知
1184
Star
22015
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
def4058e
编写于
11月 11, 2022
作者:
B
Benguang Zhao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: impl pipelining negotiation
上级
5878c9a3
变更
10
隐藏空白更改
内联
并排
Showing
10 changed file
with
584 addition
and
124 deletion
+584
-124
include/libs/sync/sync.h
include/libs/sync/sync.h
+2
-0
include/os/osTime.h
include/os/osTime.h
+7
-0
include/util/tdef.h
include/util/tdef.h
+1
-1
source/libs/sync/inc/syncInt.h
source/libs/sync/inc/syncInt.h
+64
-3
source/libs/sync/src/syncAppendEntries.c
source/libs/sync/src/syncAppendEntries.c
+74
-44
source/libs/sync/src/syncAppendEntriesReply.c
source/libs/sync/src/syncAppendEntriesReply.c
+65
-46
source/libs/sync/src/syncIndexMgr.c
source/libs/sync/src/syncIndexMgr.c
+9
-0
source/libs/sync/src/syncMain.c
source/libs/sync/src/syncMain.c
+333
-29
source/libs/sync/src/syncReplication.c
source/libs/sync/src/syncReplication.c
+26
-1
source/libs/transport/src/tmsgcb.c
source/libs/transport/src/tmsgcb.c
+3
-0
未找到文件。
include/libs/sync/sync.h
浏览文件 @
def4058e
...
@@ -40,6 +40,8 @@ extern bool gRaftDetailLog;
...
@@ -40,6 +40,8 @@ extern bool gRaftDetailLog;
#define SYNC_MNODE_LOG_RETENTION 10000
#define SYNC_MNODE_LOG_RETENTION 10000
#define SYNC_VNODE_LOG_RETENTION 500
#define SYNC_VNODE_LOG_RETENTION 500
#define SYNC_MAX_RETRY_BACKOFF 5
#define SYNC_LOG_REPL_RETRY_WAIT_MS 50
#define SYNC_APPEND_ENTRIES_TIMEOUT_MS 10000
#define SYNC_APPEND_ENTRIES_TIMEOUT_MS 10000
#define SYNC_MAX_BATCH_SIZE 1
#define SYNC_MAX_BATCH_SIZE 1
...
...
include/os/osTime.h
浏览文件 @
def4058e
...
@@ -82,6 +82,13 @@ static FORCE_INLINE int64_t taosGetTimestampNs() {
...
@@ -82,6 +82,13 @@ static FORCE_INLINE int64_t taosGetTimestampNs() {
return
(
int64_t
)
systemTime
.
tv_sec
*
1000000000LL
+
(
int64_t
)
systemTime
.
tv_nsec
;
return
(
int64_t
)
systemTime
.
tv_sec
*
1000000000LL
+
(
int64_t
)
systemTime
.
tv_nsec
;
}
}
//@return timestamp of monotonic clock in millisecond
static
FORCE_INLINE
int64_t
taosGetMonoTimestampMs
()
{
struct
timespec
systemTime
=
{
0
};
taosClockGetTime
(
CLOCK_MONOTONIC
,
&
systemTime
);
return
(
int64_t
)
systemTime
.
tv_sec
*
1000LL
+
(
int64_t
)
systemTime
.
tv_nsec
/
1000000
;
}
char
*
taosStrpTime
(
const
char
*
buf
,
const
char
*
fmt
,
struct
tm
*
tm
);
char
*
taosStrpTime
(
const
char
*
buf
,
const
char
*
fmt
,
struct
tm
*
tm
);
struct
tm
*
taosLocalTime
(
const
time_t
*
timep
,
struct
tm
*
result
);
struct
tm
*
taosLocalTime
(
const
time_t
*
timep
,
struct
tm
*
result
);
struct
tm
*
taosLocalTimeNolock
(
struct
tm
*
result
,
const
time_t
*
timep
,
int
dst
);
struct
tm
*
taosLocalTimeNolock
(
struct
tm
*
result
,
const
time_t
*
timep
,
int
dst
);
...
...
include/util/tdef.h
浏览文件 @
def4058e
...
@@ -281,7 +281,7 @@ typedef enum ELogicConditionType {
...
@@ -281,7 +281,7 @@ typedef enum ELogicConditionType {
#define TSDB_DNODE_ROLE_VNODE 2
#define TSDB_DNODE_ROLE_VNODE 2
#define TSDB_MAX_REPLICA 5
#define TSDB_MAX_REPLICA 5
#define TSDB_SYNC_LOG_BUFFER_SIZE 5
00
#define TSDB_SYNC_LOG_BUFFER_SIZE 5
12
#define TSDB_TBNAME_COLUMN_INDEX (-1)
#define TSDB_TBNAME_COLUMN_INDEX (-1)
#define TSDB_MULTI_TABLEMETA_MAX_NUM 100000 // maximum batch size allowed to load table meta
#define TSDB_MULTI_TABLEMETA_MAX_NUM 100000 // maximum batch size allowed to load table meta
...
...
source/libs/sync/inc/syncInt.h
浏览文件 @
def4058e
...
@@ -88,6 +88,60 @@ typedef struct SPeerState {
...
@@ -88,6 +88,60 @@ typedef struct SPeerState {
int64_t
lastSendTime
;
int64_t
lastSendTime
;
}
SPeerState
;
}
SPeerState
;
typedef
struct
SSyncReplInfo
{
bool
barrier
;
bool
acked
;
int64_t
timeMs
;
int64_t
term
;
}
SSyncReplInfo
;
typedef
struct
SSyncLogReplMgr
{
SSyncReplInfo
states
[
TSDB_SYNC_LOG_BUFFER_SIZE
];
int64_t
startIndex
;
int64_t
matchIndex
;
int64_t
endIndex
;
int64_t
size
;
bool
restored
;
int64_t
peerStartTime
;
int32_t
retryBackoff
;
int32_t
peerId
;
}
SSyncLogReplMgr
;
SSyncLogReplMgr
*
syncLogReplMgrCreate
();
void
syncLogReplMgrDestroy
(
SSyncLogReplMgr
*
pMgr
);
// access
static
FORCE_INLINE
int64_t
syncLogGetRetryBackoffTimeMs
(
SSyncLogReplMgr
*
pMgr
)
{
return
(
1
<<
pMgr
->
retryBackoff
)
*
SYNC_LOG_REPL_RETRY_WAIT_MS
;
}
static
FORCE_INLINE
int32_t
syncLogGetNextRetryBackoff
(
SSyncLogReplMgr
*
pMgr
)
{
return
TMIN
(
pMgr
->
retryBackoff
+
1
,
SYNC_MAX_RETRY_BACKOFF
);
}
static
FORCE_INLINE
int32_t
syncLogReplMgrUpdateTerm
(
SSyncLogReplMgr
*
pMgr
,
SyncIndex
index
,
SyncTerm
term
)
{
if
(
index
<
pMgr
->
startIndex
||
index
>=
pMgr
->
endIndex
)
{
return
-
1
;
}
pMgr
->
states
[(
index
+
pMgr
->
size
)
%
pMgr
->
size
].
term
=
term
;
return
0
;
}
SyncTerm
syncLogReplMgrGetPrevLogTerm
(
SSyncLogReplMgr
*
pMgr
,
SSyncNode
*
pNode
,
SyncIndex
index
);
int32_t
syncLogBufferReplicateOneTo
(
SSyncLogReplMgr
*
pMgr
,
SSyncNode
*
pNode
,
SyncIndex
index
,
SRaftId
*
pDestId
,
bool
*
pBarrier
);
int32_t
syncLogReplMgrProcessReply
(
SSyncLogReplMgr
*
pMgr
,
SSyncNode
*
pNode
,
SyncAppendEntriesReply
*
pMsg
);
int32_t
syncLogBufferReplicateOnce
(
SSyncLogReplMgr
*
pMgr
,
SSyncNode
*
pNode
);
int32_t
syncLogReplMgrReplicateAttemptedOnce
(
SSyncLogReplMgr
*
pMgr
,
SSyncNode
*
pNode
);
int32_t
syncLogReplMgrReplicateProbeOnce
(
SSyncLogReplMgr
*
pMgr
,
SSyncNode
*
pNode
);
int32_t
syncLogResetLogReplMgr
(
SSyncLogReplMgr
*
pMgr
);
int32_t
syncLogReplMgrProcessReplyInRecoveryMode
(
SSyncLogReplMgr
*
pMgr
,
SSyncNode
*
pNode
,
SyncAppendEntriesReply
*
pMsg
);
int32_t
syncLogReplMgrProcessReplyInNormalMode
(
SSyncLogReplMgr
*
pMgr
,
SSyncNode
*
pNode
,
SyncAppendEntriesReply
*
pMsg
);
int32_t
syncLogReplMgrRetryOnNeed
(
SSyncLogReplMgr
*
pMgr
,
SSyncNode
*
pNode
);
// others
bool
syncLogReplMgrValidate
(
SSyncLogReplMgr
*
pMgr
);
typedef
struct
SSyncLogBufEntry
{
typedef
struct
SSyncLogBufEntry
{
SSyncRaftEntry
*
pItem
;
SSyncRaftEntry
*
pItem
;
SyncIndex
prevLogIndex
;
SyncIndex
prevLogIndex
;
...
@@ -115,14 +169,15 @@ int32_t syncLogBufferAccept(SSyncLogBuffer* pBuf, SSyncNode* pNode, SSyncRaftEnt
...
@@ -115,14 +169,15 @@ int32_t syncLogBufferAccept(SSyncLogBuffer* pBuf, SSyncNode* pNode, SSyncRaftEnt
int64_t
syncLogBufferLoad
(
SSyncLogBuffer
*
pBuf
,
SSyncNode
*
pNode
,
SyncIndex
toIndex
);
int64_t
syncLogBufferLoad
(
SSyncLogBuffer
*
pBuf
,
SSyncNode
*
pNode
,
SyncIndex
toIndex
);
int64_t
syncLogBufferProceed
(
SSyncLogBuffer
*
pBuf
,
SSyncNode
*
pNode
);
int64_t
syncLogBufferProceed
(
SSyncLogBuffer
*
pBuf
,
SSyncNode
*
pNode
);
int32_t
syncLogBufferCommit
(
SSyncLogBuffer
*
pBuf
,
SSyncNode
*
pNode
,
int64_t
commitIndex
);
int32_t
syncLogBufferCommit
(
SSyncLogBuffer
*
pBuf
,
SSyncNode
*
pNode
,
int64_t
commitIndex
);
SSyncRaftEntry
*
syncLogBufferGetOneEntry
(
SSyncLogBuffer
*
pBuf
,
SSyncNode
*
pNode
,
SyncIndex
index
,
bool
*
pInBuf
);
int64_t
syncNodeUpdateCommitIndex
(
SSyncNode
*
ths
,
SyncIndex
commtIndex
);
int64_t
syncNodeUpdateCommitIndex
(
SSyncNode
*
ths
,
SyncIndex
commtIndex
);
SyncAppendEntries
*
syncLogToAppendEntries
(
SSync
LogBuffer
*
pBuf
,
SSyncNode
*
pNode
,
SyncIndex
index
);
SyncAppendEntries
*
syncLogToAppendEntries
(
SSync
Node
*
pNode
,
SSyncRaftEntry
*
pEntry
,
SyncTerm
prevLogTerm
);
// private
// private
int32_t
syncLogBufferValidate
(
SSyncLogBuffer
*
pBuf
);
int32_t
syncLogBufferValidate
(
SSyncLogBuffer
*
pBuf
);
int32_t
syncLogBufferRollback
(
SSyncLogBuffer
*
pBuf
,
SyncIndex
toIndex
);
int32_t
syncLogBufferRollback
(
SSyncLogBuffer
*
pBuf
,
SyncIndex
toIndex
);
int32_t
syncLogBufferReplicate
(
SSyncLogBuffer
*
pBuf
,
SSyncNode
*
pNode
,
S
yncIndex
index
);
int32_t
syncLogBufferReplicate
(
SSyncLogBuffer
*
pBuf
,
SSyncNode
*
pNode
,
S
SyncRaftEntry
*
pEntry
,
SyncTerm
prevLogTerm
);
void
syncIndexMgrSetIndex
(
SSyncIndexMgr
*
pSyncIndexMgr
,
const
SRaftId
*
pRaftId
,
SyncIndex
index
);
void
syncIndexMgrSetIndex
(
SSyncIndexMgr
*
pSyncIndexMgr
,
const
SRaftId
*
pRaftId
,
SyncIndex
index
);
bool
syncNodeAgreedUpon
(
SSyncNode
*
pNode
,
SyncIndex
index
);
bool
syncNodeAgreedUpon
(
SSyncNode
*
pNode
,
SyncIndex
index
);
...
@@ -225,11 +280,14 @@ typedef struct SSyncNode {
...
@@ -225,11 +280,14 @@ typedef struct SSyncNode {
SSyncRespMgr
*
pSyncRespMgr
;
SSyncRespMgr
*
pSyncRespMgr
;
// restore state
// restore state
_Atomic
bool
restoreFinish
;
bool
restoreFinish
;
// SSnapshot* pSnapshot;
// SSnapshot* pSnapshot;
SSyncSnapshotSender
*
senders
[
TSDB_MAX_REPLICA
];
SSyncSnapshotSender
*
senders
[
TSDB_MAX_REPLICA
];
SSyncSnapshotReceiver
*
pNewNodeReceiver
;
SSyncSnapshotReceiver
*
pNewNodeReceiver
;
// log replication mgr
SSyncLogReplMgr
*
logReplMgrs
[
TSDB_MAX_REPLICA
];
SPeerState
peerStates
[
TSDB_MAX_REPLICA
];
SPeerState
peerStates
[
TSDB_MAX_REPLICA
];
// is config changing
// is config changing
...
@@ -309,6 +367,9 @@ void syncNodeCandidate2Follower(SSyncNode* pSyncNode);
...
@@ -309,6 +367,9 @@ void syncNodeCandidate2Follower(SSyncNode* pSyncNode);
void
syncNodeVoteForTerm
(
SSyncNode
*
pSyncNode
,
SyncTerm
term
,
SRaftId
*
pRaftId
);
void
syncNodeVoteForTerm
(
SSyncNode
*
pSyncNode
,
SyncTerm
term
,
SRaftId
*
pRaftId
);
void
syncNodeVoteForSelf
(
SSyncNode
*
pSyncNode
);
void
syncNodeVoteForSelf
(
SSyncNode
*
pSyncNode
);
// log replication
SSyncLogReplMgr
*
syncNodeGetLogReplMgr
(
SSyncNode
*
pNode
,
SRaftId
*
pDestId
);
// snapshot --------------
// snapshot --------------
bool
syncNodeHasSnapshot
(
SSyncNode
*
pSyncNode
);
bool
syncNodeHasSnapshot
(
SSyncNode
*
pSyncNode
);
void
syncNodeMaybeUpdateCommitBySnapshot
(
SSyncNode
*
pSyncNode
);
void
syncNodeMaybeUpdateCommitBySnapshot
(
SSyncNode
*
pSyncNode
);
...
...
source/libs/sync/src/syncAppendEntries.c
浏览文件 @
def4058e
...
@@ -18,6 +18,7 @@
...
@@ -18,6 +18,7 @@
#include "syncRaftCfg.h"
#include "syncRaftCfg.h"
#include "syncRaftLog.h"
#include "syncRaftLog.h"
#include "syncRaftStore.h"
#include "syncRaftStore.h"
#include "syncReplication.h"
#include "syncSnapshot.h"
#include "syncSnapshot.h"
#include "syncUtil.h"
#include "syncUtil.h"
#include "syncVoteMgr.h"
#include "syncVoteMgr.h"
...
@@ -318,16 +319,17 @@ int32_t syncLogBufferInit(SSyncLogBuffer* pBuf, SSyncNode* pNode) {
...
@@ -318,16 +319,17 @@ int32_t syncLogBufferInit(SSyncLogBuffer* pBuf, SSyncNode* pNode) {
ASSERT
(
pNode
->
pFsm
!=
NULL
&&
"pFsm not registered"
);
ASSERT
(
pNode
->
pFsm
!=
NULL
&&
"pFsm not registered"
);
ASSERT
(
pNode
->
pFsm
->
FpGetSnapshotInfo
!=
NULL
&&
"FpGetSnapshotInfo not registered"
);
ASSERT
(
pNode
->
pFsm
->
FpGetSnapshotInfo
!=
NULL
&&
"FpGetSnapshotInfo not registered"
);
SyncIndex
lastVer
=
pNode
->
pLogStore
->
syncLogLastIndex
(
pNode
->
pLogStore
);
SSnapshot
snapshot
;
SSnapshot
snapshot
;
if
(
pNode
->
pFsm
->
FpGetSnapshotInfo
(
pNode
->
pFsm
,
&
snapshot
)
<
0
)
{
if
(
pNode
->
pFsm
->
FpGetSnapshotInfo
(
pNode
->
pFsm
,
&
snapshot
)
<
0
)
{
sError
(
"vgId:%d, failed to get snapshot info since %s"
,
pNode
->
vgId
,
terrstr
());
sError
(
"vgId:%d, failed to get snapshot info since %s"
,
pNode
->
vgId
,
terrstr
());
goto
_err
;
goto
_err
;
}
}
SyncIndex
lastVer
=
pNode
->
pLogStore
->
syncLogLastIndex
(
pNode
->
pLogStore
);
SyncIndex
commitIndex
=
snapshot
.
lastApplyIndex
;
SyncIndex
commitIndex
=
snapshot
.
lastApplyIndex
;
SyncTerm
commitTerm
=
snapshot
.
lastApplyTerm
;
SyncTerm
commitTerm
=
snapshot
.
lastApplyTerm
;
SyncIndex
toIndex
=
TMAX
(
lastVer
,
commitIndex
);
SyncIndex
toIndex
=
TMAX
(
lastVer
,
commitIndex
);
ASSERT
(
lastVer
>=
commitIndex
);
// update match index
// update match index
pBuf
->
commitIndex
=
commitIndex
;
pBuf
->
commitIndex
=
commitIndex
;
...
@@ -392,7 +394,7 @@ int32_t syncLogBufferInit(SSyncLogBuffer* pBuf, SSyncNode* pNode) {
...
@@ -392,7 +394,7 @@ int32_t syncLogBufferInit(SSyncLogBuffer* pBuf, SSyncNode* pNode) {
}
}
// update startIndex
// update startIndex
pBuf
->
startIndex
=
index
;
pBuf
->
startIndex
=
takeDummy
?
index
:
index
+
1
;
// validate
// validate
syncLogBufferValidate
(
pBuf
);
syncLogBufferValidate
(
pBuf
);
...
@@ -491,18 +493,44 @@ int32_t syncLogBufferRollbackMatchIndex(SSyncLogBuffer* pBuf, SSyncNode* pNode,
...
@@ -491,18 +493,44 @@ int32_t syncLogBufferRollbackMatchIndex(SSyncLogBuffer* pBuf, SSyncNode* pNode,
return
0
;
return
0
;
}
}
FORCE_INLINE
SyncTerm
syncLogBufferGetLastMatchTerm
(
SSyncLogBuffer
*
pBuf
)
{
SyncIndex
index
=
pBuf
->
matchIndex
;
SSyncRaftEntry
*
pEntry
=
pBuf
->
entries
[(
index
+
pBuf
->
size
)
%
pBuf
->
size
].
pItem
;
ASSERT
(
pEntry
!=
NULL
);
return
pEntry
->
term
;
}
int32_t
syncLogBufferAccept
(
SSyncLogBuffer
*
pBuf
,
SSyncNode
*
pNode
,
SSyncRaftEntry
*
pEntry
,
SyncTerm
prevTerm
)
{
int32_t
syncLogBufferAccept
(
SSyncLogBuffer
*
pBuf
,
SSyncNode
*
pNode
,
SSyncRaftEntry
*
pEntry
,
SyncTerm
prevTerm
)
{
taosThreadMutexLock
(
&
pBuf
->
mutex
);
taosThreadMutexLock
(
&
pBuf
->
mutex
);
syncLogBufferValidate
(
pBuf
);
syncLogBufferValidate
(
pBuf
);
int32_t
ret
=
-
1
;
int32_t
ret
=
0
;
SyncIndex
index
=
pEntry
->
index
;
SyncIndex
index
=
pEntry
->
index
;
SyncIndex
prevIndex
=
pEntry
->
index
-
1
;
SyncIndex
prevIndex
=
pEntry
->
index
-
1
;
if
(
index
<=
pBuf
->
commitIndex
||
index
-
pBuf
->
startIndex
>
pBuf
->
size
)
{
SyncTerm
lastMatchTerm
=
syncLogBufferGetLastMatchTerm
(
pBuf
);
sInfo
(
"vgId:%d, cannot accept index:%"
PRId64
" into log buffer. start index: %"
PRId64
", commit index: %"
PRId64
", end index:%"
PRId64
")"
,
if
(
index
<=
pBuf
->
commitIndex
)
{
pNode
->
vgId
,
index
,
pBuf
->
startIndex
,
pBuf
->
commitIndex
,
pBuf
->
endIndex
);
sInfo
(
"vgId:%d, raft entry already committed. index: %"
PRId64
", term: %"
PRId64
". log buffer: [%"
PRId64
ret
=
(
index
<=
pBuf
->
commitIndex
)
?
0
:
-
1
;
" %"
PRId64
" %"
PRId64
", %"
PRId64
")"
,
pNode
->
vgId
,
pEntry
->
index
,
pEntry
->
term
,
pBuf
->
startIndex
,
pBuf
->
commitIndex
,
pBuf
->
matchIndex
,
pBuf
->
endIndex
);
ret
=
0
;
goto
_out
;
}
if
(
index
-
pBuf
->
startIndex
>=
pBuf
->
size
)
{
sInfo
(
"vgId:%d, raft entry out of buffer capacity. index: %"
PRId64
", term: %"
PRId64
". log buffer: [%"
PRId64
" %"
PRId64
" %"
PRId64
", %"
PRId64
")"
,
pNode
->
vgId
,
pEntry
->
index
,
pEntry
->
term
,
pBuf
->
startIndex
,
pBuf
->
commitIndex
,
pBuf
->
matchIndex
,
pBuf
->
endIndex
);
goto
_out
;
}
if
(
index
>
pBuf
->
matchIndex
&&
lastMatchTerm
!=
prevTerm
)
{
sInfo
(
"vgId:%d, not ready to accept raft entry (i.e. across barrier). index: %"
PRId64
", term: %"
PRId64
": prevterm: %"
PRId64
" /= lastmatch: %"
PRId64
". log buffer: [%"
PRId64
" %"
PRId64
" %"
PRId64
", %"
PRId64
")"
,
pNode
->
vgId
,
pEntry
->
index
,
pEntry
->
term
,
prevTerm
,
lastMatchTerm
,
pBuf
->
startIndex
,
pBuf
->
commitIndex
,
pBuf
->
matchIndex
,
pBuf
->
endIndex
);
goto
_out
;
goto
_out
;
}
}
...
@@ -511,14 +539,16 @@ int32_t syncLogBufferAccept(SSyncLogBuffer* pBuf, SSyncNode* pNode, SSyncRaftEnt
...
@@ -511,14 +539,16 @@ int32_t syncLogBufferAccept(SSyncLogBuffer* pBuf, SSyncNode* pNode, SSyncRaftEnt
if
(
pExist
!=
NULL
)
{
if
(
pExist
!=
NULL
)
{
ASSERT
(
pEntry
->
index
==
pExist
->
index
);
ASSERT
(
pEntry
->
index
==
pExist
->
index
);
if
(
pEntry
->
term
>
pExist
->
term
)
{
if
(
pEntry
->
term
!=
pExist
->
term
)
{
(
void
)
syncLogBufferRollback
(
pBuf
,
index
);
(
void
)
syncLogBufferRollback
(
pBuf
,
index
);
}
else
{
}
else
{
sInfo
(
"vgId:%d, %s raft entry received. index:%"
PRId64
", term: %"
PRId64
""
,
pNode
->
vgId
,
sInfo
(
"vgId:%d, duplicate raft entry received. index: %"
PRId64
", term: %"
PRId64
". log buffer: [%"
PRId64
((
pEntry
->
term
<
pExist
->
term
)
?
"stale"
:
"duplicate"
),
pEntry
->
index
,
pEntry
->
term
);
" %"
PRId64
" %"
PRId64
", %"
PRId64
")"
,
pNode
->
vgId
,
pEntry
->
index
,
pEntry
->
term
,
pBuf
->
startIndex
,
pBuf
->
commitIndex
,
pBuf
->
matchIndex
,
pBuf
->
endIndex
);
SyncTerm
existPrevTerm
=
pBuf
->
entries
[
index
%
pBuf
->
size
].
prevLogTerm
;
SyncTerm
existPrevTerm
=
pBuf
->
entries
[
index
%
pBuf
->
size
].
prevLogTerm
;
ASSERT
(
pEntry
->
term
<
pExist
->
term
||
(
pEntry
->
term
==
pExist
->
term
&&
prevTerm
==
existPrevTerm
)
);
ASSERT
(
pEntry
->
term
==
pExist
->
term
&&
prevTerm
==
existPrevTerm
);
ret
=
(
pEntry
->
term
<
pExist
->
term
)
?
0
:
-
1
;
ret
=
0
;
goto
_out
;
goto
_out
;
}
}
}
}
...
@@ -531,6 +561,9 @@ int32_t syncLogBufferAccept(SSyncLogBuffer* pBuf, SSyncNode* pNode, SSyncRaftEnt
...
@@ -531,6 +561,9 @@ int32_t syncLogBufferAccept(SSyncLogBuffer* pBuf, SSyncNode* pNode, SSyncRaftEnt
// update end index
// update end index
pBuf
->
endIndex
=
TMAX
(
index
+
1
,
pBuf
->
endIndex
);
pBuf
->
endIndex
=
TMAX
(
index
+
1
,
pBuf
->
endIndex
);
// success
ret
=
0
;
_out:
_out:
syncEntryDestroy
(
pEntry
);
syncEntryDestroy
(
pEntry
);
syncLogBufferValidate
(
pBuf
);
syncLogBufferValidate
(
pBuf
);
...
@@ -550,6 +583,7 @@ SSyncRaftEntry* syncLogAppendEntriesToRaftEntry(const SyncAppendEntries* pMsg) {
...
@@ -550,6 +583,7 @@ SSyncRaftEntry* syncLogAppendEntriesToRaftEntry(const SyncAppendEntries* pMsg) {
}
}
int32_t
syncLogStorePersist
(
SSyncLogStore
*
pLogStore
,
SSyncRaftEntry
*
pEntry
)
{
int32_t
syncLogStorePersist
(
SSyncLogStore
*
pLogStore
,
SSyncRaftEntry
*
pEntry
)
{
ASSERT
(
pEntry
->
index
>=
0
);
SyncIndex
lastVer
=
pLogStore
->
syncLogLastIndex
(
pLogStore
);
SyncIndex
lastVer
=
pLogStore
->
syncLogLastIndex
(
pLogStore
);
if
(
lastVer
>=
pEntry
->
index
&&
pLogStore
->
syncLogTruncate
(
pLogStore
,
pEntry
->
index
)
<
0
)
{
if
(
lastVer
>=
pEntry
->
index
&&
pLogStore
->
syncLogTruncate
(
pLogStore
,
pEntry
->
index
)
<
0
)
{
sError
(
"failed to truncate log store since %s. from index:%"
PRId64
""
,
terrstr
(),
pEntry
->
index
);
sError
(
"failed to truncate log store since %s. from index:%"
PRId64
""
,
terrstr
(),
pEntry
->
index
);
...
@@ -563,6 +597,9 @@ int32_t syncLogStorePersist(SSyncLogStore* pLogStore, SSyncRaftEntry* pEntry) {
...
@@ -563,6 +597,9 @@ int32_t syncLogStorePersist(SSyncLogStore* pLogStore, SSyncRaftEntry* pEntry) {
pEntry
->
term
);
pEntry
->
term
);
return
-
1
;
return
-
1
;
}
}
lastVer
=
pLogStore
->
syncLogLastIndex
(
pLogStore
);
ASSERT
(
pEntry
->
index
==
lastVer
);
return
0
;
return
0
;
}
}
...
@@ -607,10 +644,14 @@ int64_t syncLogBufferProceed(SSyncLogBuffer* pBuf, SSyncNode* pNode) {
...
@@ -607,10 +644,14 @@ int64_t syncLogBufferProceed(SSyncLogBuffer* pBuf, SSyncNode* pNode) {
goto
_out
;
goto
_out
;
}
}
// increase match index
pBuf
->
matchIndex
=
index
;
sInfo
(
"vgId:%d, log buffer proceed. start index: %"
PRId64
", match index: %"
PRId64
", end index: %"
PRId64
,
pNode
->
vgId
,
pBuf
->
startIndex
,
pBuf
->
matchIndex
,
pBuf
->
endIndex
);
// replicate on demand
// replicate on demand
if
(
pNode
->
state
==
TAOS_SYNC_STATE_LEADER
&&
pNode
->
replicaNum
>
1
)
{
(
void
)
syncNodeReplicate
(
pNode
);
(
void
)
syncLogBufferReplicate
(
pBuf
,
pNode
,
index
);
}
// persist
// persist
if
(
syncLogStorePersist
(
pLogStore
,
pEntry
)
<
0
)
{
if
(
syncLogStorePersist
(
pLogStore
,
pEntry
)
<
0
)
{
...
@@ -618,16 +659,15 @@ int64_t syncLogBufferProceed(SSyncLogBuffer* pBuf, SSyncNode* pNode) {
...
@@ -618,16 +659,15 @@ int64_t syncLogBufferProceed(SSyncLogBuffer* pBuf, SSyncNode* pNode) {
terrstr
(),
pEntry
->
index
);
terrstr
(),
pEntry
->
index
);
goto
_out
;
goto
_out
;
}
}
ASSERT
(
pEntry
->
index
==
pBuf
->
matchIndex
);
// increment
pBuf
->
matchIndex
=
index
;
matchIndex
=
pBuf
->
matchIndex
;
// update my match index
// update my match index
matchIndex
=
pBuf
->
matchIndex
;
syncIndexMgrSetIndex
(
pNode
->
pMatchIndex
,
&
pNode
->
myRaftId
,
pBuf
->
matchIndex
);
syncIndexMgrSetIndex
(
pNode
->
pMatchIndex
,
&
pNode
->
myRaftId
,
pBuf
->
matchIndex
);
}
// end of while
}
// end of while
_out:
_out:
pBuf
->
matchIndex
=
matchIndex
;
syncLogBufferValidate
(
pBuf
);
syncLogBufferValidate
(
pBuf
);
taosThreadMutexUnlock
(
&
pBuf
->
mutex
);
taosThreadMutexUnlock
(
&
pBuf
->
mutex
);
return
matchIndex
;
return
matchIndex
;
...
@@ -659,7 +699,7 @@ int32_t syncLogBufferValidate(SSyncLogBuffer* pBuf) {
...
@@ -659,7 +699,7 @@ int32_t syncLogBufferValidate(SSyncLogBuffer* pBuf) {
ASSERT
(
pBuf
->
commitIndex
<=
pBuf
->
matchIndex
);
ASSERT
(
pBuf
->
commitIndex
<=
pBuf
->
matchIndex
);
ASSERT
(
pBuf
->
matchIndex
<
pBuf
->
endIndex
);
ASSERT
(
pBuf
->
matchIndex
<
pBuf
->
endIndex
);
ASSERT
(
pBuf
->
endIndex
-
pBuf
->
startIndex
<=
pBuf
->
size
);
ASSERT
(
pBuf
->
endIndex
-
pBuf
->
startIndex
<=
pBuf
->
size
);
for
(
SyncIndex
index
=
pBuf
->
commi
tIndex
;
index
<=
pBuf
->
matchIndex
;
index
++
)
{
for
(
SyncIndex
index
=
pBuf
->
star
tIndex
;
index
<=
pBuf
->
matchIndex
;
index
++
)
{
SSyncRaftEntry
*
pEntry
=
pBuf
->
entries
[(
index
+
pBuf
->
size
)
%
pBuf
->
size
].
pItem
;
SSyncRaftEntry
*
pEntry
=
pBuf
->
entries
[(
index
+
pBuf
->
size
)
%
pBuf
->
size
].
pItem
;
ASSERT
(
pEntry
!=
NULL
);
ASSERT
(
pEntry
!=
NULL
);
}
}
...
@@ -694,20 +734,11 @@ int32_t syncLogBufferCommit(SSyncLogBuffer* pBuf, SSyncNode* pNode, int64_t comm
...
@@ -694,20 +734,11 @@ int32_t syncLogBufferCommit(SSyncLogBuffer* pBuf, SSyncNode* pNode, int64_t comm
// execute in fsm
// execute in fsm
for
(
int64_t
index
=
pBuf
->
commitIndex
+
1
;
index
<=
upperIndex
;
index
++
)
{
for
(
int64_t
index
=
pBuf
->
commitIndex
+
1
;
index
<=
upperIndex
;
index
++
)
{
// get a log entry
// get a log entry
if
(
index
>=
pBuf
->
startIndex
)
{
pEntry
=
syncLogBufferGetOneEntry
(
pBuf
,
pNode
,
index
,
&
inBuf
);
inBuf
=
true
;
if
(
pEntry
==
NULL
)
{
pEntry
=
pBuf
->
entries
[
index
%
pBuf
->
size
].
pItem
;
goto
_out
;
}
else
{
inBuf
=
false
;
if
(
pLogStore
->
syncLogGetEntry
(
pLogStore
,
index
,
&
pEntry
)
<
0
)
{
sError
(
"vgId:%d, failed to get log entry since %s. index:%"
PRId64
""
,
pNode
->
vgId
,
terrstr
(),
index
);
ret
=
-
1
;
goto
_out
;
}
}
}
ASSERT
(
pEntry
!=
NULL
);
// execute it
// execute it
if
(
!
syncUtilUserCommit
(
pEntry
->
originalRpcType
))
{
if
(
!
syncUtilUserCommit
(
pEntry
->
originalRpcType
))
{
sInfo
(
"vgId:%d, non-user msg in raft log entry. index: %"
PRId64
", term:%"
PRId64
""
,
vgId
,
pEntry
->
index
,
sInfo
(
"vgId:%d, non-user msg in raft log entry. index: %"
PRId64
", term:%"
PRId64
""
,
vgId
,
pEntry
->
index
,
...
@@ -738,8 +769,8 @@ int32_t syncLogBufferCommit(SSyncLogBuffer* pBuf, SSyncNode* pNode, int64_t comm
...
@@ -738,8 +769,8 @@ int32_t syncLogBufferCommit(SSyncLogBuffer* pBuf, SSyncNode* pNode, int64_t comm
}
}
// recycle
// recycle
// TODO: with a grace period of one third of free space before commitIndex in ring buffer
SyncIndex
used
=
pBuf
->
endIndex
-
pBuf
->
startIndex
;
SyncIndex
until
=
pBuf
->
commitIndex
;
SyncIndex
until
=
pBuf
->
commitIndex
-
(
pBuf
->
size
-
used
)
/
2
;
for
(
SyncIndex
index
=
pBuf
->
startIndex
;
index
<
until
;
index
++
)
{
for
(
SyncIndex
index
=
pBuf
->
startIndex
;
index
<
until
;
index
++
)
{
SSyncRaftEntry
*
pEntry
=
pBuf
->
entries
[(
index
+
pBuf
->
size
)
%
pBuf
->
size
].
pItem
;
SSyncRaftEntry
*
pEntry
=
pBuf
->
entries
[(
index
+
pBuf
->
size
)
%
pBuf
->
size
].
pItem
;
ASSERT
(
pEntry
!=
NULL
);
ASSERT
(
pEntry
!=
NULL
);
...
@@ -796,9 +827,6 @@ int32_t syncNodeOnAppendEntries(SSyncNode* ths, SyncAppendEntries* pMsg) {
...
@@ -796,9 +827,6 @@ int32_t syncNodeOnAppendEntries(SSyncNode* ths, SyncAppendEntries* pMsg) {
syncNodeStepDown
(
ths
,
pMsg
->
term
);
syncNodeStepDown
(
ths
,
pMsg
->
term
);
syncNodeResetElectTimer
(
ths
);
syncNodeResetElectTimer
(
ths
);
// update commit index
(
void
)
syncNodeUpdateCommitIndex
(
ths
,
pMsg
->
commitIndex
);
if
(
pMsg
->
dataLen
<
(
int32_t
)
sizeof
(
SSyncRaftEntry
))
{
if
(
pMsg
->
dataLen
<
(
int32_t
)
sizeof
(
SSyncRaftEntry
))
{
sError
(
"vgId:%d, incomplete append entries received. prev index:%"
PRId64
", term:%"
PRId64
", datalen:%d"
,
sError
(
"vgId:%d, incomplete append entries received. prev index:%"
PRId64
", term:%"
PRId64
", datalen:%d"
,
ths
->
vgId
,
pMsg
->
prevLogIndex
,
pMsg
->
prevLogTerm
,
pMsg
->
dataLen
);
ths
->
vgId
,
pMsg
->
prevLogIndex
,
pMsg
->
prevLogTerm
,
pMsg
->
dataLen
);
...
@@ -825,15 +853,17 @@ int32_t syncNodeOnAppendEntries(SSyncNode* ths, SyncAppendEntries* pMsg) {
...
@@ -825,15 +853,17 @@ int32_t syncNodeOnAppendEntries(SSyncNode* ths, SyncAppendEntries* pMsg) {
// accept
// accept
if
(
syncLogBufferAccept
(
ths
->
pLogBuf
,
ths
,
pEntry
,
pMsg
->
prevLogTerm
)
<
0
)
{
if
(
syncLogBufferAccept
(
ths
->
pLogBuf
,
ths
,
pEntry
,
pMsg
->
prevLogTerm
)
<
0
)
{
sWarn
(
"vgId:%d, failed to accept raft entry into log buffer. index:%"
PRId64
", term:%"
PRId64
,
ths
->
vgId
,
pEntry
->
index
,
pEntry
->
term
);
goto
_SEND_RESPONSE
;
goto
_SEND_RESPONSE
;
}
}
pReply
->
success
=
true
;
_SEND_RESPONSE:
_SEND_RESPONSE:
// update match index
pReply
->
matchIndex
=
syncLogBufferProceed
(
ths
->
pLogBuf
,
ths
);
pReply
->
matchIndex
=
syncLogBufferProceed
(
ths
->
pLogBuf
,
ths
);
bool
matched
=
(
pReply
->
matchIndex
>=
pReply
->
lastSendIndex
);
pReply
->
success
=
matched
;
if
(
matched
)
{
// update commit index only after matching
(
void
)
syncNodeUpdateCommitIndex
(
ths
,
pMsg
->
commitIndex
);
}
// ack, i.e. send response
// ack, i.e. send response
SRpcMsg
rpcMsg
;
SRpcMsg
rpcMsg
;
...
@@ -841,7 +871,7 @@ _SEND_RESPONSE:
...
@@ -841,7 +871,7 @@ _SEND_RESPONSE:
(
void
)
syncNodeSendMsgById
(
&
pReply
->
destId
,
ths
,
&
rpcMsg
);
(
void
)
syncNodeSendMsgById
(
&
pReply
->
destId
,
ths
,
&
rpcMsg
);
// commit index, i.e. leader notice me
// commit index, i.e. leader notice me
if
(
syncLogBufferCommit
(
ths
->
pLogBuf
,
ths
,
pMsg
->
commitIndex
)
<
0
)
{
if
(
syncLogBufferCommit
(
ths
->
pLogBuf
,
ths
,
ths
->
commitIndex
)
<
0
)
{
sError
(
"vgId:%d, failed to commit raft fsm log since %s."
,
ths
->
vgId
,
terrstr
());
sError
(
"vgId:%d, failed to commit raft fsm log since %s."
,
ths
->
vgId
,
terrstr
());
goto
_out
;
goto
_out
;
}
}
...
...
source/libs/sync/src/syncAppendEntriesReply.c
浏览文件 @
def4058e
...
@@ -85,11 +85,11 @@ static void syncNodeStartSnapshotOnce(SSyncNode* ths, SyncIndex beginIndex, Sync
...
@@ -85,11 +85,11 @@ static void syncNodeStartSnapshotOnce(SSyncNode* ths, SyncIndex beginIndex, Sync
}
}
int64_t
syncNodeUpdateCommitIndex
(
SSyncNode
*
ths
,
SyncIndex
commitIndex
)
{
int64_t
syncNodeUpdateCommitIndex
(
SSyncNode
*
ths
,
SyncIndex
commitIndex
)
{
ths
->
commitIndex
=
TMAX
(
commitIndex
,
ths
->
commitIndex
);
SyncIndex
lastVer
=
ths
->
pLogStore
->
syncLogLastIndex
(
ths
->
pLogStore
);
SyncIndex
lastVer
=
ths
->
pLogStore
->
syncLogLastIndex
(
ths
->
pLogStore
);
commitIndex
=
TMIN
(
ths
->
commitIndex
,
lastVer
);
commitIndex
=
TMAX
(
commitIndex
,
ths
->
commitIndex
);
ths
->
pLogStore
->
syncLogUpdateCommitIndex
(
ths
->
pLogStore
,
commitIndex
);
ths
->
commitIndex
=
TMIN
(
commitIndex
,
lastVer
);
return
commitIndex
;
ths
->
pLogStore
->
syncLogUpdateCommitIndex
(
ths
->
pLogStore
,
ths
->
commitIndex
);
return
ths
->
commitIndex
;
}
}
int64_t
syncNodeCheckCommitIndex
(
SSyncNode
*
ths
,
SyncIndex
indexLikely
)
{
int64_t
syncNodeCheckCommitIndex
(
SSyncNode
*
ths
,
SyncIndex
indexLikely
)
{
...
@@ -102,50 +102,77 @@ int64_t syncNodeCheckCommitIndex(SSyncNode* ths, SyncIndex indexLikely) {
...
@@ -102,50 +102,77 @@ int64_t syncNodeCheckCommitIndex(SSyncNode* ths, SyncIndex indexLikely) {
return
ths
->
commitIndex
;
return
ths
->
commitIndex
;
}
}
int32_t
syncLogBufferCatchingUpReplicate
(
SSyncLogBuffer
*
pBuf
,
SSyncNode
*
pNode
,
SyncIndex
fromIndex
,
SRaftId
destId
)
{
SSyncRaftEntry
*
syncLogBufferGetOneEntry
(
SSyncLogBuffer
*
pBuf
,
SSyncNode
*
pNode
,
SyncIndex
index
,
bool
*
pInBuf
)
{
taosThreadMutexLock
(
&
pBuf
->
mutex
);
SSyncRaftEntry
*
pEntry
=
NULL
;
if
(
index
>=
pBuf
->
endIndex
)
{
return
NULL
;
}
if
(
index
>
pBuf
->
startIndex
)
{
// startIndex might be dummy
*
pInBuf
=
true
;
pEntry
=
pBuf
->
entries
[
index
%
pBuf
->
size
].
pItem
;
}
else
{
*
pInBuf
=
false
;
if
(
pNode
->
pLogStore
->
syncLogGetEntry
(
pNode
->
pLogStore
,
index
,
&
pEntry
)
<
0
)
{
sError
(
"vgId:%d, failed to get log entry since %s. index:%"
PRId64
""
,
pNode
->
vgId
,
terrstr
(),
index
);
}
}
return
pEntry
;
}
bool
syncLogReplMgrValidate
(
SSyncLogReplMgr
*
pMgr
)
{
ASSERT
(
pMgr
->
startIndex
<=
pMgr
->
endIndex
);
for
(
SyncIndex
index
=
pMgr
->
startIndex
;
index
<
pMgr
->
endIndex
;
index
++
)
{
ASSERT
(
pMgr
->
states
[(
index
+
pMgr
->
size
)
%
pMgr
->
size
].
barrier
==
false
||
index
+
1
==
pMgr
->
endIndex
);
}
return
true
;
}
static
FORCE_INLINE
bool
syncLogIsReplicationBarrier
(
SSyncRaftEntry
*
pEntry
)
{
return
pEntry
->
originalRpcType
==
TDMT_SYNC_NOOP
;
}
int32_t
syncLogBufferReplicateOneTo
(
SSyncLogReplMgr
*
pMgr
,
SSyncNode
*
pNode
,
SyncIndex
index
,
SRaftId
*
pDestId
,
bool
*
pBarrier
)
{
SSyncRaftEntry
*
pEntry
=
NULL
;
SyncAppendEntries
*
pMsgOut
=
NULL
;
SyncAppendEntries
*
pMsgOut
=
NULL
;
SyncIndex
index
=
fromIndex
;
bool
inBuf
=
false
;
int32_t
ret
=
-
1
;
SyncTerm
prevLogTerm
=
-
1
;
SSyncLogBuffer
*
pBuf
=
pNode
->
pLogBuf
;
if
(
pNode
->
state
!=
TAOS_SYNC_STATE_LEADER
||
pNode
->
replicaNum
<=
1
)
{
sInfo
(
"vgId:%d, replicate one msg index: %"
PRId64
" to dest: 0x%016"
PRIx64
,
pNode
->
vgId
,
index
,
pDestId
->
addr
);
pEntry
=
syncLogBufferGetOneEntry
(
pBuf
,
pNode
,
index
,
&
inBuf
);
if
(
pEntry
==
NULL
)
{
sError
(
"vgId:%d, failed to get raft entry for index: %"
PRId64
""
,
pNode
->
vgId
,
index
);
goto
_out
;
goto
_out
;
}
}
*
pBarrier
=
syncLogIsReplicationBarrier
(
pEntry
);
if
(
index
<
pBuf
->
startIndex
)
{
prevLogTerm
=
syncLogReplMgrGetPrevLogTerm
(
pMgr
,
pNode
,
index
);
sError
(
"vgId:%d, (not implemented yet) replication fromIndex: %"
PRId64
if
(
prevLogTerm
<
0
&&
terrno
!=
TSDB_CODE_SUCCESS
)
{
" that is less than pBuf->startIndex: %"
PRId64
". destId: 0x%016"
PRId64
""
,
sError
(
"vgId:%d, failed to get prev log term since %s. index: %"
PRId64
""
,
pNode
->
vgId
,
terrstr
(),
index
);
pNode
->
vgId
,
fromIndex
,
pBuf
->
startIndex
,
destId
.
addr
);
goto
_out
;
goto
_out
;
}
}
(
void
)
syncLogReplMgrUpdateTerm
(
pMgr
,
pEntry
->
index
,
pEntry
->
term
);
if
(
index
>
pBuf
->
matchIndex
)
{
pMsgOut
=
syncLogToAppendEntries
(
pNode
,
pEntry
,
prevLogTerm
);
if
(
pMsgOut
==
NULL
)
{
sError
(
"vgId:%d, failed to get append entries for index:%"
PRId64
""
,
pNode
->
vgId
,
index
);
goto
_out
;
goto
_out
;
}
}
do
{
(
void
)
syncNodeSendAppendEntries
(
pNode
,
pDestId
,
pMsgOut
);
pMsgOut
=
syncLogToAppendEntries
(
pBuf
,
pNode
,
index
);
ret
=
0
;
if
(
pMsgOut
==
NULL
)
{
sError
(
"vgId:%d, failed to assembly append entries msg since %s. index: %"
PRId64
""
,
pNode
->
vgId
,
terrstr
(),
index
);
goto
_out
;
}
if
(
syncNodeSendAppendEntries
(
pNode
,
&
destId
,
pMsgOut
)
<
0
)
{
sWarn
(
"vgId:%d, failed to send append entries msg since %s. index: %"
PRId64
", dest: 0x%016"
PRIx64
""
,
pNode
->
vgId
,
terrstr
(),
index
,
destId
.
addr
);
goto
_out
;
}
index
+=
1
;
syncAppendEntriesDestroy
(
pMsgOut
);
pMsgOut
=
NULL
;
}
while
(
false
&&
index
<=
pBuf
->
commitIndex
);
_out:
_out:
syncAppendEntriesDestroy
(
pMsgOut
);
syncAppendEntriesDestroy
(
pMsgOut
);
pMsgOut
=
NULL
;
pMsgOut
=
NULL
;
taosThreadMutexUnlock
(
&
pBuf
->
mutex
);
if
(
!
inBuf
)
{
return
0
;
syncEntryDestroy
(
pEntry
);
pEntry
=
NULL
;
}
return
ret
;
}
}
int32_t
syncNodeOnAppendEntriesReply
(
SSyncNode
*
ths
,
SyncAppendEntriesReply
*
pMsg
)
{
int32_t
syncNodeOnAppendEntriesReply
(
SSyncNode
*
ths
,
SyncAppendEntriesReply
*
pMsg
)
{
...
@@ -185,23 +212,15 @@ int32_t syncNodeOnAppendEntriesReply(SSyncNode* ths, SyncAppendEntriesReply* pMs
...
@@ -185,23 +212,15 @@ int32_t syncNodeOnAppendEntriesReply(SSyncNode* ths, SyncAppendEntriesReply* pMs
SyncIndex
indexLikely
=
TMIN
(
pMsg
->
matchIndex
,
ths
->
pLogBuf
->
matchIndex
);
SyncIndex
indexLikely
=
TMIN
(
pMsg
->
matchIndex
,
ths
->
pLogBuf
->
matchIndex
);
SyncIndex
commitIndex
=
syncNodeCheckCommitIndex
(
ths
,
indexLikely
);
SyncIndex
commitIndex
=
syncNodeCheckCommitIndex
(
ths
,
indexLikely
);
(
void
)
syncLogBufferCommit
(
ths
->
pLogBuf
,
ths
,
commitIndex
);
(
void
)
syncLogBufferCommit
(
ths
->
pLogBuf
,
ths
,
commitIndex
);
}
else
{
SyncIndex
nextIndex
=
syncIndexMgrGetIndex
(
ths
->
pNextIndex
,
&
(
pMsg
->
srcId
));
if
(
nextIndex
>
SYNC_INDEX_BEGIN
)
{
--
nextIndex
;
}
syncIndexMgrSetIndex
(
ths
->
pNextIndex
,
&
(
pMsg
->
srcId
),
nextIndex
);
}
}
// send next append entries
// replicate log
SPeerState
*
pState
=
syncNodeGetPeerState
(
ths
,
&
(
pMsg
->
srcId
));
SSyncLogReplMgr
*
pMgr
=
syncNodeGetLogReplMgr
(
ths
,
&
pMsg
->
srcId
);
ASSERT
(
pState
!=
NULL
);
ASSERT
(
pMgr
!=
NULL
);
if
(
pMgr
!=
NULL
)
{
if
(
pMsg
->
lastSendIndex
==
pState
->
lastSendIndex
)
{
(
void
)
syncLogReplMgrProcessReply
(
pMgr
,
ths
,
pMsg
);
syncNodeReplicateOne
(
ths
,
&
(
pMsg
->
srcId
));
}
}
}
}
return
0
;
return
0
;
}
}
...
...
source/libs/sync/src/syncIndexMgr.c
浏览文件 @
def4058e
...
@@ -82,6 +82,15 @@ void syncIndexMgrSetIndex(SSyncIndexMgr *pSyncIndexMgr, const SRaftId *pRaftId,
...
@@ -82,6 +82,15 @@ void syncIndexMgrSetIndex(SSyncIndexMgr *pSyncIndexMgr, const SRaftId *pRaftId,
index
);
index
);
}
}
SSyncLogReplMgr
*
syncNodeGetLogReplMgr
(
SSyncNode
*
pNode
,
SRaftId
*
pDestId
)
{
for
(
int
i
=
0
;
i
<
pNode
->
replicaNum
;
i
++
)
{
if
(
syncUtilSameId
(
&
(
pNode
->
replicasId
[
i
]),
pDestId
))
{
return
pNode
->
logReplMgrs
[
i
];
}
}
return
NULL
;
}
SyncIndex
syncIndexMgrGetIndex
(
SSyncIndexMgr
*
pSyncIndexMgr
,
const
SRaftId
*
pRaftId
)
{
SyncIndex
syncIndexMgrGetIndex
(
SSyncIndexMgr
*
pSyncIndexMgr
,
const
SRaftId
*
pRaftId
)
{
if
(
pSyncIndexMgr
==
NULL
)
{
if
(
pSyncIndexMgr
==
NULL
)
{
return
SYNC_INDEX_INVALID
;
return
SYNC_INDEX_INVALID
;
...
...
source/libs/sync/src/syncMain.c
浏览文件 @
def4058e
...
@@ -1103,6 +1103,252 @@ int32_t syncHbTimerStop(SSyncNode* pSyncNode, SSyncTimer* pSyncTimer) {
...
@@ -1103,6 +1103,252 @@ int32_t syncHbTimerStop(SSyncNode* pSyncNode, SSyncTimer* pSyncTimer) {
return
ret
;
return
ret
;
}
}
int32_t
syncLogResetLogReplMgr
(
SSyncLogReplMgr
*
pMgr
)
{
ASSERT
(
pMgr
->
startIndex
>=
0
);
for
(
SyncIndex
index
=
pMgr
->
startIndex
;
index
<
pMgr
->
endIndex
;
index
++
)
{
memset
(
&
pMgr
->
states
[
index
%
pMgr
->
size
],
0
,
sizeof
(
pMgr
->
states
[
0
]));
}
pMgr
->
startIndex
=
0
;
pMgr
->
matchIndex
=
0
;
pMgr
->
endIndex
=
0
;
pMgr
->
restored
=
false
;
pMgr
->
retryBackoff
=
0
;
return
0
;
}
int32_t
syncLogReplMgrRetryOnNeed
(
SSyncLogReplMgr
*
pMgr
,
SSyncNode
*
pNode
)
{
if
(
pMgr
->
endIndex
<=
pMgr
->
startIndex
)
{
return
0
;
}
int32_t
ret
=
-
1
;
bool
retried
=
false
;
int64_t
retryWaitMs
=
syncLogGetRetryBackoffTimeMs
(
pMgr
);
for
(
SyncIndex
index
=
pMgr
->
startIndex
;
index
<
pMgr
->
endIndex
;
index
++
)
{
int64_t
pos
=
index
%
pMgr
->
size
;
ASSERT
(
!
pMgr
->
states
[
pos
].
barrier
||
(
index
==
pMgr
->
startIndex
||
index
+
1
==
pMgr
->
endIndex
));
if
(
pMgr
->
states
[
pos
].
acked
)
{
continue
;
}
int64_t
nowMs
=
taosGetMonoTimestampMs
();
if
(
nowMs
<
pMgr
->
states
[
pos
].
timeMs
+
retryWaitMs
)
{
break
;
}
SRaftId
*
pDestId
=
&
pNode
->
replicasId
[
pMgr
->
peerId
];
bool
barrier
=
false
;
if
(
syncLogBufferReplicateOneTo
(
pMgr
,
pNode
,
index
,
pDestId
,
&
barrier
)
<
0
)
{
sError
(
"vgId:%d, failed to replicate log entry since %s. index: %"
PRId64
", dest: 0x%016"
PRIx64
""
,
pNode
->
vgId
,
terrstr
(),
index
,
pDestId
->
addr
);
goto
_out
;
}
ASSERT
(
barrier
==
pMgr
->
states
[
pos
].
barrier
);
pMgr
->
states
[
pos
].
timeMs
=
nowMs
;
pMgr
->
states
[
pos
].
acked
=
false
;
retried
=
true
;
}
ret
=
0
;
_out:
if
(
retried
)
{
pMgr
->
retryBackoff
=
syncLogGetNextRetryBackoff
(
pMgr
);
}
return
ret
;
}
int32_t
syncLogReplMgrProcessReplyInRecoveryMode
(
SSyncLogReplMgr
*
pMgr
,
SSyncNode
*
pNode
,
SyncAppendEntriesReply
*
pMsg
)
{
SRaftId
destId
=
pMsg
->
srcId
;
ASSERT
(
pMgr
->
restored
==
false
);
if
(
pMgr
->
endIndex
==
0
)
{
ASSERT
(
pMgr
->
startIndex
==
0
);
ASSERT
(
pMgr
->
matchIndex
==
0
);
if
(
pMsg
->
matchIndex
<
0
)
{
pMgr
->
restored
=
true
;
return
0
;
}
}
else
{
if
(
pMsg
->
lastSendIndex
<
pMgr
->
startIndex
||
pMsg
->
lastSendIndex
>=
pMgr
->
endIndex
)
{
syncLogReplMgrRetryOnNeed
(
pMgr
,
pNode
);
return
0
;
}
pMgr
->
states
[
pMsg
->
lastSendIndex
%
pMgr
->
size
].
acked
=
true
;
if
(
pMsg
->
matchIndex
==
pMsg
->
lastSendIndex
)
{
pMgr
->
restored
=
true
;
return
0
;
}
(
void
)
syncLogResetLogReplMgr
(
pMgr
);
}
SyncIndex
index
=
TMIN
(
pMsg
->
matchIndex
,
pNode
->
pLogBuf
->
matchIndex
);
bool
barrier
=
false
;
ASSERT
(
index
>=
0
);
// send match index
if
(
syncLogBufferReplicateOneTo
(
pMgr
,
pNode
,
index
,
&
destId
,
&
barrier
)
<
0
)
{
sError
(
"vgId:%d, failed to replicate log entry since %s. index: %"
PRId64
", dest: 0x%016"
PRIx64
""
,
pNode
->
vgId
,
terrstr
(),
index
,
destId
.
addr
);
return
-
1
;
}
int64_t
nowMs
=
taosGetMonoTimestampMs
();
pMgr
->
states
[
index
%
pMgr
->
size
].
barrier
=
barrier
;
pMgr
->
states
[
index
%
pMgr
->
size
].
timeMs
=
nowMs
;
pMgr
->
states
[
index
%
pMgr
->
size
].
acked
=
false
;
pMgr
->
matchIndex
=
index
;
pMgr
->
startIndex
=
index
;
pMgr
->
endIndex
=
index
+
1
;
return
0
;
}
int32_t
syncLogReplMgrProcessReply
(
SSyncLogReplMgr
*
pMgr
,
SSyncNode
*
pNode
,
SyncAppendEntriesReply
*
pMsg
)
{
SSyncLogBuffer
*
pBuf
=
pNode
->
pLogBuf
;
taosThreadMutexLock
(
&
pBuf
->
mutex
);
if
(
pMsg
->
startTime
!=
pMgr
->
peerStartTime
)
{
syncLogResetLogReplMgr
(
pMgr
);
pMgr
->
peerStartTime
=
pMsg
->
startTime
;
}
if
(
pMgr
->
restored
)
{
(
void
)
syncLogReplMgrProcessReplyInNormalMode
(
pMgr
,
pNode
,
pMsg
);
}
else
{
(
void
)
syncLogReplMgrProcessReplyInRecoveryMode
(
pMgr
,
pNode
,
pMsg
);
}
taosThreadMutexUnlock
(
&
pBuf
->
mutex
);
return
0
;
}
int32_t
syncLogBufferReplicateOnce
(
SSyncLogReplMgr
*
pMgr
,
SSyncNode
*
pNode
)
{
SSyncLogBuffer
*
pBuf
=
pNode
->
pLogBuf
;
if
(
pMgr
->
restored
)
{
(
void
)
syncLogReplMgrReplicateAttemptedOnce
(
pMgr
,
pNode
);
}
else
{
(
void
)
syncLogReplMgrReplicateProbeOnce
(
pMgr
,
pNode
);
}
return
0
;
}
int32_t
syncLogReplMgrReplicateProbeOnce
(
SSyncLogReplMgr
*
pMgr
,
SSyncNode
*
pNode
)
{
ASSERT
(
!
pMgr
->
restored
);
SyncIndex
index
=
pNode
->
pLogBuf
->
matchIndex
;
SRaftId
*
pDestId
=
&
pNode
->
replicasId
[
pMgr
->
peerId
];
bool
barrier
=
false
;
if
(
syncLogBufferReplicateOneTo
(
pMgr
,
pNode
,
index
,
pDestId
,
&
barrier
)
<
0
)
{
sError
(
"vgId:%d, failed to replicate log entry since %s. index: %"
PRId64
", dest: 0x%016"
PRIx64
""
,
pNode
->
vgId
,
terrstr
(),
index
,
pDestId
->
addr
);
return
-
1
;
}
SSyncLogBuffer
*
pBuf
=
pNode
->
pLogBuf
;
sInfo
(
"vgId:%d, attempted to probe the %d'th peer. pMgr(restored:%d): [%"
PRId64
" %"
PRId64
", %"
PRId64
"), pBuf: [%"
PRId64
" %"
PRId64
" %"
PRId64
", %"
PRId64
")"
,
pNode
->
vgId
,
pMgr
->
peerId
,
pMgr
->
restored
,
pMgr
->
startIndex
,
pMgr
->
matchIndex
,
pMgr
->
endIndex
,
pBuf
->
startIndex
,
pBuf
->
commitIndex
,
pBuf
->
matchIndex
,
pBuf
->
endIndex
);
return
0
;
}
int32_t
syncLogReplMgrReplicateAttemptedOnce
(
SSyncLogReplMgr
*
pMgr
,
SSyncNode
*
pNode
)
{
ASSERT
(
pMgr
->
restored
);
SRaftId
*
pDestId
=
&
pNode
->
replicasId
[
pMgr
->
peerId
];
int32_t
batchSize
=
TMAX
(
1
,
pMgr
->
size
/
10
);
int32_t
count
=
0
;
for
(
SyncIndex
index
=
pMgr
->
endIndex
;
index
<=
pNode
->
pLogBuf
->
matchIndex
;
index
++
)
{
if
(
batchSize
<
count
++
||
pMgr
->
startIndex
+
pMgr
->
size
<=
index
)
{
break
;
}
if
(
pMgr
->
startIndex
+
1
<
index
&&
pMgr
->
states
[(
index
-
1
)
%
pMgr
->
size
].
barrier
)
{
break
;
}
int64_t
pos
=
index
%
pMgr
->
size
;
SRaftId
*
pDestId
=
&
pNode
->
replicasId
[
pMgr
->
peerId
];
bool
barrier
=
false
;
if
(
syncLogBufferReplicateOneTo
(
pMgr
,
pNode
,
index
,
pDestId
,
&
barrier
)
<
0
)
{
sError
(
"vgId:%d, failed to replicate log entry since %s. index: %"
PRId64
", dest: 0x%016"
PRIx64
""
,
pNode
->
vgId
,
terrstr
(),
index
,
pDestId
->
addr
);
return
-
1
;
}
pMgr
->
states
[
pos
].
barrier
=
barrier
;
pMgr
->
states
[
pos
].
timeMs
=
taosGetMonoTimestampMs
();
pMgr
->
states
[
pos
].
acked
=
false
;
pMgr
->
endIndex
=
index
+
1
;
if
(
barrier
)
{
break
;
}
}
SSyncLogBuffer
*
pBuf
=
pNode
->
pLogBuf
;
sInfo
(
"vgId:%d, attempted to replicate %d msgs to the %d'th peer. pMgr(restored:%d): [%"
PRId64
" %"
PRId64
", %"
PRId64
"), pBuf: [%"
PRId64
" %"
PRId64
" %"
PRId64
", %"
PRId64
")"
,
pNode
->
vgId
,
count
,
pMgr
->
peerId
,
pMgr
->
restored
,
pMgr
->
startIndex
,
pMgr
->
matchIndex
,
pMgr
->
endIndex
,
pBuf
->
startIndex
,
pBuf
->
commitIndex
,
pBuf
->
matchIndex
,
pBuf
->
endIndex
);
syncLogReplMgrRetryOnNeed
(
pMgr
,
pNode
);
return
0
;
}
int32_t
syncLogReplMgrProcessReplyInNormalMode
(
SSyncLogReplMgr
*
pMgr
,
SSyncNode
*
pNode
,
SyncAppendEntriesReply
*
pMsg
)
{
ASSERT
(
pMgr
->
restored
==
true
);
if
(
pMgr
->
startIndex
<=
pMsg
->
lastSendIndex
&&
pMsg
->
lastSendIndex
<
pMgr
->
endIndex
)
{
pMgr
->
states
[
pMsg
->
lastSendIndex
%
pMgr
->
size
].
acked
=
true
;
pMgr
->
matchIndex
=
TMAX
(
pMgr
->
matchIndex
,
pMsg
->
matchIndex
);
for
(
SyncIndex
index
=
pMgr
->
startIndex
;
index
<
pMgr
->
matchIndex
;
index
++
)
{
memset
(
&
pMgr
->
states
[
index
%
pMgr
->
size
],
0
,
sizeof
(
pMgr
->
states
[
0
]));
}
pMgr
->
startIndex
=
pMgr
->
matchIndex
;
}
return
syncLogReplMgrReplicateAttemptedOnce
(
pMgr
,
pNode
);
}
SSyncLogReplMgr
*
syncLogReplMgrCreate
()
{
SSyncLogReplMgr
*
pMgr
=
taosMemoryCalloc
(
1
,
sizeof
(
SSyncLogReplMgr
));
if
(
pMgr
==
NULL
)
{
terrno
=
TSDB_CODE_OUT_OF_MEMORY
;
return
NULL
;
}
pMgr
->
size
=
sizeof
(
pMgr
->
states
)
/
sizeof
(
pMgr
->
states
[
0
]);
ASSERT
(
pMgr
->
size
==
TSDB_SYNC_LOG_BUFFER_SIZE
);
return
pMgr
;
_err:
taosMemoryFree
(
pMgr
);
return
NULL
;
}
void
syncLogReplMgrDestroy
(
SSyncLogReplMgr
*
pMgr
)
{
if
(
pMgr
==
NULL
)
{
return
;
}
(
void
)
taosMemoryFree
(
pMgr
);
return
;
}
int32_t
syncNodeLogReplMgrInit
(
SSyncNode
*
pNode
)
{
for
(
int
i
=
0
;
i
<
TSDB_MAX_REPLICA
;
i
++
)
{
ASSERT
(
pNode
->
logReplMgrs
[
i
]
==
NULL
);
pNode
->
logReplMgrs
[
i
]
=
syncLogReplMgrCreate
();
pNode
->
logReplMgrs
[
i
]
->
peerId
=
i
;
ASSERT
(
pNode
->
logReplMgrs
[
i
]
!=
NULL
&&
"Out of memory."
);
}
return
0
;
}
void
syncNodeLogReplMgrDestroy
(
SSyncNode
*
pNode
)
{
for
(
int
i
=
0
;
i
<
TSDB_MAX_REPLICA
;
i
++
)
{
syncLogReplMgrDestroy
(
pNode
->
logReplMgrs
[
i
]);
pNode
->
logReplMgrs
[
i
]
=
NULL
;
}
}
SSyncLogBuffer
*
syncLogBufferCreate
()
{
SSyncLogBuffer
*
syncLogBufferCreate
()
{
SSyncLogBuffer
*
pBuf
=
taosMemoryCalloc
(
1
,
sizeof
(
SSyncLogBuffer
));
SSyncLogBuffer
*
pBuf
=
taosMemoryCalloc
(
1
,
sizeof
(
SSyncLogBuffer
));
if
(
pBuf
==
NULL
)
{
if
(
pBuf
==
NULL
)
{
...
@@ -1397,9 +1643,13 @@ SSyncNode* syncNodeOpen(SSyncInfo* pOldSyncInfo) {
...
@@ -1397,9 +1643,13 @@ SSyncNode* syncNodeOpen(SSyncInfo* pOldSyncInfo) {
// is config changing
// is config changing
pSyncNode
->
changing
=
false
;
pSyncNode
->
changing
=
false
;
// replication mgr
syncNodeLogReplMgrInit
(
pSyncNode
);
// peer state
// peer state
syncNodePeerStateInit
(
pSyncNode
);
syncNodePeerStateInit
(
pSyncNode
);
//
// min match index
// min match index
pSyncNode
->
minMatchIndex
=
SYNC_INDEX_INVALID
;
pSyncNode
->
minMatchIndex
=
SYNC_INDEX_INVALID
;
...
@@ -1532,6 +1782,7 @@ void syncNodeClose(SSyncNode* pSyncNode) {
...
@@ -1532,6 +1782,7 @@ void syncNodeClose(SSyncNode* pSyncNode) {
ret
=
raftStoreClose
(
pSyncNode
->
pRaftStore
);
ret
=
raftStoreClose
(
pSyncNode
->
pRaftStore
);
ASSERT
(
ret
==
0
);
ASSERT
(
ret
==
0
);
syncNodeLogReplMgrDestroy
(
pSyncNode
);
syncRespMgrDestroy
(
pSyncNode
->
pSyncRespMgr
);
syncRespMgrDestroy
(
pSyncNode
->
pSyncRespMgr
);
pSyncNode
->
pSyncRespMgr
=
NULL
;
pSyncNode
->
pSyncRespMgr
=
NULL
;
voteGrantedDestroy
(
pSyncNode
->
pVotesGranted
);
voteGrantedDestroy
(
pSyncNode
->
pVotesGranted
);
...
@@ -2477,6 +2728,11 @@ int32_t syncLogBufferReset(SSyncLogBuffer* pBuf, SSyncNode* pNode) {
...
@@ -2477,6 +2728,11 @@ int32_t syncLogBufferReset(SSyncLogBuffer* pBuf, SSyncNode* pNode) {
pBuf
->
endIndex
=
pBuf
->
matchIndex
+
1
;
pBuf
->
endIndex
=
pBuf
->
matchIndex
+
1
;
// reset repl mgr
for
(
int
i
=
0
;
i
<
pNode
->
replicaNum
;
i
++
)
{
SSyncLogReplMgr
*
pMgr
=
pNode
->
logReplMgrs
[
i
];
syncLogResetLogReplMgr
(
pMgr
);
}
taosThreadMutexUnlock
(
&
pBuf
->
mutex
);
taosThreadMutexUnlock
(
&
pBuf
->
mutex
);
return
0
;
return
0
;
}
}
...
@@ -2637,8 +2893,12 @@ void syncNodeCandidate2Leader(SSyncNode* pSyncNode) {
...
@@ -2637,8 +2893,12 @@ void syncNodeCandidate2Leader(SSyncNode* pSyncNode) {
syncNodeLog2
(
"==state change syncNodeCandidate2Leader=="
,
pSyncNode
);
syncNodeLog2
(
"==state change syncNodeCandidate2Leader=="
,
pSyncNode
);
// Raft 3.6.2 Committing entries from previous terms
int32_t
ret
=
syncNodeAppendNoop
(
pSyncNode
);
syncNodeAppendNoop
(
pSyncNode
);
ASSERT
(
ret
==
0
);
SyncIndex
lastIndex
=
pSyncNode
->
pLogStore
->
syncLogLastIndex
(
pSyncNode
->
pLogStore
);
ASSERT
(
lastIndex
>=
0
);
sInfo
(
"vgId:%d, become leader. term: %"
PRId64
", commit index: %"
PRId64
", last index: %"
PRId64
""
,
pSyncNode
->
vgId
,
pSyncNode
->
pRaftStore
->
currentTerm
,
pSyncNode
->
commitIndex
,
lastIndex
);
}
}
void
syncNodeCandidate2LeaderOld
(
SSyncNode
*
pSyncNode
)
{
void
syncNodeCandidate2LeaderOld
(
SSyncNode
*
pSyncNode
)
{
...
@@ -2671,22 +2931,33 @@ int32_t syncNodePeerStateInit(SSyncNode* pSyncNode) {
...
@@ -2671,22 +2931,33 @@ int32_t syncNodePeerStateInit(SSyncNode* pSyncNode) {
void
syncNodeFollower2Candidate
(
SSyncNode
*
pSyncNode
)
{
void
syncNodeFollower2Candidate
(
SSyncNode
*
pSyncNode
)
{
ASSERT
(
pSyncNode
->
state
==
TAOS_SYNC_STATE_FOLLOWER
);
ASSERT
(
pSyncNode
->
state
==
TAOS_SYNC_STATE_FOLLOWER
);
pSyncNode
->
state
=
TAOS_SYNC_STATE_CANDIDATE
;
pSyncNode
->
state
=
TAOS_SYNC_STATE_CANDIDATE
;
SyncIndex
lastIndex
=
pSyncNode
->
pLogStore
->
syncLogLastIndex
(
pSyncNode
->
pLogStore
);
sInfo
(
"vgId:%d, become candidate from follower. term: %"
PRId64
", commit index: %"
PRId64
", last index: %"
PRId64
,
pSyncNode
->
vgId
,
pSyncNode
->
pRaftStore
->
currentTerm
,
pSyncNode
->
commitIndex
,
lastIndex
);
syncNodeEventLog
(
pSyncNode
,
"follower to candidate"
);
//
syncNodeEventLog(pSyncNode, "follower to candidate");
}
}
void
syncNodeLeader2Follower
(
SSyncNode
*
pSyncNode
)
{
void
syncNodeLeader2Follower
(
SSyncNode
*
pSyncNode
)
{
ASSERT
(
pSyncNode
->
state
==
TAOS_SYNC_STATE_LEADER
);
ASSERT
(
pSyncNode
->
state
==
TAOS_SYNC_STATE_LEADER
);
syncNodeBecomeFollower
(
pSyncNode
,
"leader to follower"
);
syncNodeBecomeFollower
(
pSyncNode
,
"leader to follower"
);
syncNodeEventLog
(
pSyncNode
,
"leader to follower"
);
SyncIndex
lastIndex
=
pSyncNode
->
pLogStore
->
syncLogLastIndex
(
pSyncNode
->
pLogStore
);
sInfo
(
"vgId:%d, become follower from leader. term: %"
PRId64
", commit index: %"
PRId64
", last index: %"
PRId64
,
pSyncNode
->
vgId
,
pSyncNode
->
pRaftStore
->
currentTerm
,
pSyncNode
->
commitIndex
,
lastIndex
);
// syncNodeEventLog(pSyncNode, "leader to follower");
}
}
void
syncNodeCandidate2Follower
(
SSyncNode
*
pSyncNode
)
{
void
syncNodeCandidate2Follower
(
SSyncNode
*
pSyncNode
)
{
ASSERT
(
pSyncNode
->
state
==
TAOS_SYNC_STATE_CANDIDATE
);
ASSERT
(
pSyncNode
->
state
==
TAOS_SYNC_STATE_CANDIDATE
);
syncNodeBecomeFollower
(
pSyncNode
,
"candidate to follower"
);
syncNodeBecomeFollower
(
pSyncNode
,
"candidate to follower"
);
syncNodeEventLog
(
pSyncNode
,
"candidate to follower"
);
SyncIndex
lastIndex
=
pSyncNode
->
pLogStore
->
syncLogLastIndex
(
pSyncNode
->
pLogStore
);
sInfo
(
"vgId:%d, become follower from candidate. term: %"
PRId64
", commit index: %"
PRId64
", last index: %"
PRId64
,
pSyncNode
->
vgId
,
pSyncNode
->
pRaftStore
->
currentTerm
,
pSyncNode
->
commitIndex
,
lastIndex
);
// syncNodeEventLog(pSyncNode, "candidate to follower");
}
}
// raft vote --------------
// raft vote --------------
...
@@ -3109,6 +3380,11 @@ int32_t syncNodeAppend(SSyncNode* ths, SSyncRaftEntry* pEntry) {
...
@@ -3109,6 +3380,11 @@ int32_t syncNodeAppend(SSyncNode* ths, SSyncRaftEntry* pEntry) {
// proceed match index, with replicating on needed
// proceed match index, with replicating on needed
SyncIndex
matchIndex
=
syncLogBufferProceed
(
ths
->
pLogBuf
,
ths
);
SyncIndex
matchIndex
=
syncLogBufferProceed
(
ths
->
pLogBuf
,
ths
);
sInfo
(
"vgId:%d, append raft log index: %"
PRId64
", term: %"
PRId64
" log buffer: [%"
PRId64
" %"
PRId64
" %"
PRId64
", %"
PRId64
")"
,
ths
->
vgId
,
pEntry
->
index
,
pEntry
->
term
,
ths
->
pLogBuf
->
startIndex
,
ths
->
pLogBuf
->
commitIndex
,
ths
->
pLogBuf
->
matchIndex
,
ths
->
pLogBuf
->
endIndex
);
// multi replica
// multi replica
if
(
ths
->
replicaNum
>
1
)
{
if
(
ths
->
replicaNum
>
1
)
{
return
0
;
return
0
;
...
@@ -3135,7 +3411,8 @@ static int32_t syncNodeAppendNoop(SSyncNode* ths) {
...
@@ -3135,7 +3411,8 @@ static int32_t syncNodeAppendNoop(SSyncNode* ths) {
return
-
1
;
return
-
1
;
}
}
return
syncNodeAppend
(
ths
,
pEntry
);
int32_t
ret
=
syncNodeAppend
(
ths
,
pEntry
);
return
0
;
}
}
static
int32_t
syncNodeAppendNoopOld
(
SSyncNode
*
ths
)
{
static
int32_t
syncNodeAppendNoopOld
(
SSyncNode
*
ths
)
{
...
@@ -3264,7 +3541,7 @@ int32_t syncLogBufferAppend(SSyncLogBuffer* pBuf, SSyncNode* pNode, SSyncRaftEnt
...
@@ -3264,7 +3541,7 @@ int32_t syncLogBufferAppend(SSyncLogBuffer* pBuf, SSyncNode* pNode, SSyncRaftEnt
syncLogBufferValidate
(
pBuf
);
syncLogBufferValidate
(
pBuf
);
SyncIndex
index
=
pEntry
->
index
;
SyncIndex
index
=
pEntry
->
index
;
if
(
index
-
pBuf
->
startIndex
>
pBuf
->
size
)
{
if
(
index
-
pBuf
->
startIndex
>
=
pBuf
->
size
)
{
sError
(
"vgId:%d, failed to append due to log buffer full. index:%"
PRId64
""
,
pNode
->
vgId
,
index
);
sError
(
"vgId:%d, failed to append due to log buffer full. index:%"
PRId64
""
,
pNode
->
vgId
,
index
);
goto
_out
;
goto
_out
;
}
}
...
@@ -3294,30 +3571,57 @@ _out:
...
@@ -3294,30 +3571,57 @@ _out:
return
-
1
;
return
-
1
;
}
}
SyncTerm
syncLog
BufferGetTerm
(
SSyncLogBuffer
*
pBuf
,
SyncIndex
index
)
{
SyncTerm
syncLog
ReplMgrGetPrevLogTerm
(
SSyncLogReplMgr
*
pMgr
,
SSyncNode
*
pNode
,
SyncIndex
index
)
{
ASSERT
(
pBuf
->
startIndex
<=
index
&&
index
<
pBuf
->
endIndex
)
;
SSyncLogBuffer
*
pBuf
=
pNode
->
pLogBuf
;
SSyncRaftEntry
*
pEntry
=
pBuf
->
entries
[(
index
+
pBuf
->
size
)
%
pBuf
->
size
].
pItem
;
SSyncRaftEntry
*
pEntry
=
NULL
;
ASSERT
(
pEntry
!=
NULL
)
;
SyncIndex
prevIndex
=
index
-
1
;
return
pEntry
->
term
;
SyncTerm
prevLogTerm
=
-
1
;
}
terrno
=
TSDB_CODE_SUCCESS
;
SyncAppendEntries
*
syncLogToAppendEntries
(
SSyncLogBuffer
*
pBuf
,
SSyncNode
*
pNode
,
SyncIndex
index
)
{
if
(
prevIndex
==
-
1
)
return
0
;
SyncAppendEntries
*
pMsg
=
NULL
;
if
(
index
<
pBuf
->
startIndex
||
index
>=
pBuf
->
endIndex
)
{
if
(
index
-
1
>
pBuf
->
matchIndex
)
{
sError
(
"vgId:%d, log entry (%"
PRId64
") out of range of log buffer [%"
PRId64
", %"
PRId64
")."
,
pNode
->
vgId
,
terrno
=
TSDB_CODE_WAL_LOG_NOT_EXIST
;
index
,
pBuf
->
startIndex
,
pBuf
->
endIndex
);
return
-
1
;
return
pMsg
;
}
}
SSyncRaftEntry
*
pEntry
=
pBuf
->
entries
[
index
%
pBuf
->
size
].
pItem
;
ASSERT
(
index
-
1
==
prevIndex
);
if
(
pEntry
==
NULL
)
{
sError
(
"vgId:%d, log entry (%"
PRId64
") not exist in log buffer [%"
PRId64
", %"
PRId64
")."
,
pNode
->
vgId
,
index
,
if
(
index
-
1
>=
pBuf
->
startIndex
)
{
pBuf
->
startIndex
,
pBuf
->
endIndex
);
pEntry
=
pBuf
->
entries
[(
index
+
pBuf
->
size
)
%
pBuf
->
size
].
pItem
;
return
pMsg
;
ASSERT
(
pEntry
!=
NULL
&&
"no log entry found"
);
prevLogTerm
=
pBuf
->
entries
[(
index
+
pBuf
->
size
)
%
pBuf
->
size
].
prevLogTerm
;
return
prevLogTerm
;
}
if
(
pMgr
->
startIndex
<=
prevIndex
&&
prevIndex
<
pMgr
->
endIndex
)
{
int64_t
timeMs
=
pMgr
->
states
[(
prevIndex
+
pMgr
->
size
)
%
pMgr
->
size
].
timeMs
;
ASSERT
(
timeMs
!=
0
&&
"no log entry found"
);
prevLogTerm
=
pMgr
->
states
[(
prevIndex
+
pMgr
->
size
)
%
pMgr
->
size
].
term
;
return
prevLogTerm
;
}
SSnapshot
snapshot
;
if
(
pNode
->
pFsm
->
FpGetSnapshotInfo
(
pNode
->
pFsm
,
&
snapshot
)
==
0
&&
prevIndex
==
snapshot
.
lastApplyIndex
)
{
return
snapshot
.
lastApplyTerm
;
}
}
if
(
pNode
->
pLogStore
->
syncLogGetEntry
(
pNode
->
pLogStore
,
prevIndex
,
&
pEntry
)
==
0
)
{
prevLogTerm
=
pEntry
->
term
;
syncEntryDestroy
(
pEntry
);
pEntry
=
NULL
;
return
prevLogTerm
;
}
sError
(
"vgId:%d, failed to get log term since %s. index: %"
PRId64
""
,
pNode
->
vgId
,
terrstr
(),
prevIndex
);
terrno
=
TSDB_CODE_WAL_LOG_NOT_EXIST
;
return
-
1
;
}
SyncAppendEntries
*
syncLogToAppendEntries
(
SSyncNode
*
pNode
,
SSyncRaftEntry
*
pEntry
,
SyncTerm
prevLogTerm
)
{
SyncAppendEntries
*
pMsg
=
NULL
;
uint32_t
datalen
=
pEntry
->
bytes
;
uint32_t
datalen
=
pEntry
->
bytes
;
pMsg
=
syncAppendEntriesBuild
(
datalen
,
pNode
->
vgId
);
pMsg
=
syncAppendEntriesBuild
(
datalen
,
pNode
->
vgId
);
if
(
pMsg
==
NULL
)
{
if
(
pMsg
==
NULL
)
{
terrno
=
TSDB_CODE_OUT_OF_MEMORY
;
terrno
=
TSDB_CODE_OUT_OF_MEMORY
;
...
@@ -3326,8 +3630,8 @@ SyncAppendEntries* syncLogToAppendEntries(SSyncLogBuffer* pBuf, SSyncNode* pNode
...
@@ -3326,8 +3630,8 @@ SyncAppendEntries* syncLogToAppendEntries(SSyncLogBuffer* pBuf, SSyncNode* pNode
(
void
)
memcpy
(
pMsg
->
data
,
pEntry
,
datalen
);
(
void
)
memcpy
(
pMsg
->
data
,
pEntry
,
datalen
);
pMsg
->
prevLogIndex
=
index
-
1
;
pMsg
->
prevLogIndex
=
pEntry
->
index
-
1
;
pMsg
->
prevLogTerm
=
syncLogBufferGetTerm
(
pBuf
,
pMsg
->
prevLogIndex
)
;
pMsg
->
prevLogTerm
=
prevLogTerm
;
pMsg
->
vgId
=
pNode
->
vgId
;
pMsg
->
vgId
=
pNode
->
vgId
;
pMsg
->
srcId
=
pNode
->
myRaftId
;
pMsg
->
srcId
=
pNode
->
myRaftId
;
pMsg
->
term
=
pNode
->
pRaftStore
->
currentTerm
;
pMsg
->
term
=
pNode
->
pRaftStore
->
currentTerm
;
...
@@ -3345,10 +3649,10 @@ void syncLogReplicateAppendEntries(SSyncNode* pNode, SyncAppendEntries* pMsg) {
...
@@ -3345,10 +3649,10 @@ void syncLogReplicateAppendEntries(SSyncNode* pNode, SyncAppendEntries* pMsg) {
}
}
}
}
int32_t
syncLogBufferReplicate
(
SSyncLogBuffer
*
pBuf
,
SSyncNode
*
pNode
,
S
yncIndex
index
)
{
int32_t
syncLogBufferReplicate
(
SSyncLogBuffer
*
pBuf
,
SSyncNode
*
pNode
,
S
SyncRaftEntry
*
pEntry
,
SyncTerm
prevLogTerm
)
{
SyncAppendEntries
*
pMsgOut
=
syncLogToAppendEntries
(
pNode
->
pLogBuf
,
pNode
,
index
);
SyncAppendEntries
*
pMsgOut
=
syncLogToAppendEntries
(
pNode
,
pEntry
,
prevLogTerm
);
if
(
pMsgOut
==
NULL
)
{
if
(
pMsgOut
==
NULL
)
{
sError
(
"vgId:%d, failed to get append entries for index:%"
PRId64
""
,
pNode
->
vgId
,
index
);
sError
(
"vgId:%d, failed to get append entries for index:%"
PRId64
""
,
pNode
->
vgId
,
pEntry
->
index
);
goto
_err
;
goto
_err
;
}
}
...
...
source/libs/sync/src/syncReplication.c
浏览文件 @
def4058e
...
@@ -136,7 +136,21 @@ int32_t syncNodeReplicateOne(SSyncNode* pSyncNode, SRaftId* pDestId) {
...
@@ -136,7 +136,21 @@ int32_t syncNodeReplicateOne(SSyncNode* pSyncNode, SRaftId* pDestId) {
return
0
;
return
0
;
}
}
int32_t
syncNodeReplicate
(
SSyncNode
*
pSyncNode
)
{
int32_t
syncNodeReplicate
(
SSyncNode
*
pNode
)
{
if
(
pNode
->
state
!=
TAOS_SYNC_STATE_LEADER
||
pNode
->
replicaNum
==
1
)
{
return
-
1
;
}
for
(
int32_t
i
=
0
;
i
<
pNode
->
replicaNum
;
i
++
)
{
if
(
syncUtilSameId
(
&
pNode
->
replicasId
[
i
],
&
pNode
->
myRaftId
))
{
continue
;
}
SSyncLogReplMgr
*
pMgr
=
pNode
->
logReplMgrs
[
i
];
(
void
)
syncLogBufferReplicateOnce
(
pMgr
,
pNode
);
}
return
0
;
}
int32_t
syncNodeReplicateOld
(
SSyncNode
*
pSyncNode
)
{
if
(
pSyncNode
->
state
!=
TAOS_SYNC_STATE_LEADER
)
{
if
(
pSyncNode
->
state
!=
TAOS_SYNC_STATE_LEADER
)
{
return
-
1
;
return
-
1
;
}
}
...
@@ -159,6 +173,17 @@ int32_t syncNodeReplicate(SSyncNode* pSyncNode) {
...
@@ -159,6 +173,17 @@ int32_t syncNodeReplicate(SSyncNode* pSyncNode) {
}
}
int32_t
syncNodeSendAppendEntries
(
SSyncNode
*
pSyncNode
,
SRaftId
*
destRaftId
,
SyncAppendEntries
*
pMsg
)
{
int32_t
syncNodeSendAppendEntries
(
SSyncNode
*
pSyncNode
,
SRaftId
*
destRaftId
,
SyncAppendEntries
*
pMsg
)
{
sInfo
(
"vgId:%d, send append entries msg index: %"
PRId64
" to dest: 0x%016"
PRId64
,
pSyncNode
->
vgId
,
pMsg
->
prevLogIndex
+
1
,
destRaftId
->
addr
);
int32_t
ret
=
0
;
pMsg
->
destId
=
*
destRaftId
;
SRpcMsg
rpcMsg
;
syncAppendEntries2RpcMsg
(
pMsg
,
&
rpcMsg
);
syncNodeSendMsgById
(
destRaftId
,
pSyncNode
,
&
rpcMsg
);
return
0
;
}
int32_t
syncNodeSendAppendEntriesOld
(
SSyncNode
*
pSyncNode
,
SRaftId
*
destRaftId
,
SyncAppendEntries
*
pMsg
)
{
int32_t
ret
=
0
;
int32_t
ret
=
0
;
pMsg
->
destId
=
*
destRaftId
;
pMsg
->
destId
=
*
destRaftId
;
...
...
source/libs/transport/src/tmsgcb.c
浏览文件 @
def4058e
...
@@ -23,6 +23,9 @@ static SMsgCb defaultMsgCb;
...
@@ -23,6 +23,9 @@ static SMsgCb defaultMsgCb;
void
tmsgSetDefault
(
const
SMsgCb
*
msgcb
)
{
defaultMsgCb
=
*
msgcb
;
}
void
tmsgSetDefault
(
const
SMsgCb
*
msgcb
)
{
defaultMsgCb
=
*
msgcb
;
}
int32_t
tmsgPutToQueue
(
const
SMsgCb
*
msgcb
,
EQueueType
qtype
,
SRpcMsg
*
pMsg
)
{
int32_t
tmsgPutToQueue
(
const
SMsgCb
*
msgcb
,
EQueueType
qtype
,
SRpcMsg
*
pMsg
)
{
if
(
msgcb
==
NULL
)
{
return
-
1
;
}
int32_t
code
=
(
*
msgcb
->
putToQueueFp
)(
msgcb
->
mgmt
,
qtype
,
pMsg
);
int32_t
code
=
(
*
msgcb
->
putToQueueFp
)(
msgcb
->
mgmt
,
qtype
,
pMsg
);
if
(
code
!=
0
)
{
if
(
code
!=
0
)
{
rpcFreeCont
(
pMsg
->
pCont
);
rpcFreeCont
(
pMsg
->
pCont
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录