trigger checkpoint

This commit is contained in:
yihaoDeng 2023-06-14 21:43:47 +08:00
parent 551cd7cdc8
commit bd0168e562
2 changed files with 2 additions and 1 deletions

View File

@ -200,7 +200,7 @@ int64_t tsWalFsyncDataSizeLimit = (100 * 1024 * 1024L);
// internal
int32_t tsTransPullupInterval = 2;
int32_t tsMqRebalanceInterval = 2;
int32_t tsStreamCheckpointTickInterval = 2;
int32_t tsStreamCheckpointTickInterval = 20;
int32_t tsTtlUnit = 86400;
int32_t tsTtlPushInterval = 3600;
int32_t tsGrantHBInterval = 60;

View File

@ -1053,6 +1053,7 @@ static int32_t mndProcessStreamDoCheckpoint(SRpcMsg *pReq) {
code = mndProcessStreamCheckpointTrans(pMnode, pStream, vgIds, checkpointId);
sdbRelease(pSdb, pStream);
}
taosHashCleanup(vgIds);
return 0;
}