Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
2c3f35e7
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
2c3f35e7
编写于
1月 25, 2022
作者:
S
Shengliang Guan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
save sdb in every 3 seconds
上级
59d7cb6d
变更
6
显示空白变更内容
内联
并排
Showing
6 changed file
with
26 addition
and
19 deletion
+26
-19
source/dnode/mgmt/impl/src/dndMgmt.c
source/dnode/mgmt/impl/src/dndMgmt.c
+1
-1
source/dnode/mnode/impl/src/mndTrans.c
source/dnode/mnode/impl/src/mndTrans.c
+3
-1
source/dnode/mnode/sdb/src/sdb.c
source/dnode/mnode/sdb/src/sdb.c
+1
-5
source/dnode/mnode/sdb/src/sdbFile.c
source/dnode/mnode/sdb/src/sdbFile.c
+12
-3
tests/script/tsim/dnode/basic1.sim
tests/script/tsim/dnode/basic1.sim
+3
-3
tests/script/tsim/table/basic1.sim
tests/script/tsim/table/basic1.sim
+6
-6
未找到文件。
source/dnode/mgmt/impl/src/dndMgmt.c
浏览文件 @
2c3f35e7
...
...
@@ -529,7 +529,7 @@ int32_t dndInitMgmt(SDnode *pDnode) {
}
if
(
pMgmt
->
dropped
)
{
dError
(
"dnode
will not start for
its already dropped"
);
dError
(
"dnode
not start since
its already dropped"
);
return
-
1
;
}
...
...
source/dnode/mnode/impl/src/mndTrans.c
浏览文件 @
2c3f35e7
...
...
@@ -921,7 +921,7 @@ static int32_t mndProcessTransMsg(SMnodeMsg *pMsg) {
void
mndTransPullup
(
SMnode
*
pMnode
)
{
STrans
*
pTrans
=
NULL
;
void
*
pIter
=
NULL
;
void
*
pIter
=
NULL
;
while
(
1
)
{
pIter
=
sdbFetch
(
pMnode
->
pSdb
,
SDB_TRANS
,
pIter
,
(
void
**
)
&
pTrans
);
...
...
@@ -930,4 +930,6 @@ void mndTransPullup(SMnode *pMnode) {
mndTransExecute
(
pMnode
,
pTrans
);
sdbRelease
(
pMnode
->
pSdb
,
pTrans
);
}
sdbWriteFile
(
pMnode
->
pSdb
);
}
source/dnode/mnode/sdb/src/sdb.c
浏览文件 @
2c3f35e7
...
...
@@ -64,11 +64,7 @@ SSdb *sdbInit(SSdbOpt *pOption) {
void
sdbCleanup
(
SSdb
*
pSdb
)
{
mDebug
(
"start to cleanup sdb"
);
if
(
pSdb
->
curVer
>
pSdb
->
lastCommitVer
)
{
mDebug
(
"write sdb file for current ver:%"
PRId64
" larger than last commit ver:%"
PRId64
,
pSdb
->
curVer
,
pSdb
->
lastCommitVer
);
sdbWriteFile
(
pSdb
);
}
if
(
pSdb
->
currDir
!=
NULL
)
{
tfree
(
pSdb
->
currDir
);
...
...
source/dnode/mnode/sdb/src/sdbFile.c
浏览文件 @
2c3f35e7
...
...
@@ -221,7 +221,7 @@ PARSE_SDB_DATA_ERROR:
return
code
;
}
int32_t
sdbWriteFile
(
SSdb
*
pSdb
)
{
static
int32_t
sdbWriteFileImp
(
SSdb
*
pSdb
)
{
int32_t
code
=
0
;
char
tmpfile
[
PATH_MAX
]
=
{
0
};
...
...
@@ -229,7 +229,8 @@ int32_t sdbWriteFile(SSdb *pSdb) {
char
curfile
[
PATH_MAX
]
=
{
0
};
snprintf
(
curfile
,
sizeof
(
curfile
),
"%s%ssdb.data"
,
pSdb
->
currDir
,
TD_DIRSEP
);
mDebug
(
"start to write file:%s"
,
curfile
);
mDebug
(
"start to write file:%s, current ver:%"
PRId64
", commit ver:%"
PRId64
,
curfile
,
pSdb
->
curVer
,
pSdb
->
lastCommitVer
);
FileFd
fd
=
taosOpenFileCreateWriteTrunc
(
tmpfile
);
if
(
fd
<=
0
)
{
...
...
@@ -323,12 +324,20 @@ int32_t sdbWriteFile(SSdb *pSdb) {
return
code
;
}
int32_t
sdbWriteFile
(
SSdb
*
pSdb
)
{
if
(
pSdb
->
curVer
==
pSdb
->
lastCommitVer
)
{
return
0
;
}
return
sdbWriteFileImp
(
pSdb
);
}
int32_t
sdbDeploy
(
SSdb
*
pSdb
)
{
if
(
sdbRunDeployFp
(
pSdb
)
!=
0
)
{
return
-
1
;
}
if
(
sdbWriteFile
(
pSdb
)
!=
0
)
{
if
(
sdbWriteFile
Imp
(
pSdb
)
!=
0
)
{
return
-
1
;
}
...
...
tests/script/tsim/dnode/basic1.sim
浏览文件 @
2c3f35e7
...
...
@@ -178,9 +178,9 @@ if $rows != 3 then
endi
sql select * from st
#
if $rows != 15 then
#
return -1
#
endi
if $rows != 15 then
return -1
endi
print =============== drop dnode
sql drop dnode 2;
...
...
tests/script/tsim/table/basic1.sim
浏览文件 @
2c3f35e7
...
...
@@ -139,9 +139,9 @@ endi
print =============== query data frpm st
sql select * from st
#
if $rows != 21 then
#
return -1
#
endi
if $rows != 21 then
return -1
endi
system sh/exec.sh -n dnode1 -s stop -x SIGINT
system sh/exec.sh -n dnode1 -s start
...
...
@@ -200,8 +200,8 @@ endi
print =============== query data frpm st
sql select * from st
#
if $rows != 21 then
#
return -1
#
endi
if $rows != 21 then
return -1
endi
system sh/exec.sh -n dnode1 -s stop -x SIGINT
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录