Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
b51c6ae1
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看板
提交
b51c6ae1
编写于
1月 07, 2022
作者:
H
Hongze Cheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refact
上级
63a68154
变更
3
展开全部
隐藏空白更改
内联
并排
Showing
3 changed file
with
106 addition
and
272 deletion
+106
-272
include/dnode/vnode/tsdb2/tsdb.h
include/dnode/vnode/tsdb2/tsdb.h
+0
-9
source/dnode/vnode/tsdb2/inc/tsdbint.h
source/dnode/vnode/tsdb2/inc/tsdbint.h
+25
-68
source/dnode/vnode/tsdb2/src/tsdbMain.c
source/dnode/vnode/tsdb2/src/tsdbMain.c
+81
-195
未找到文件。
include/dnode/vnode/tsdb2/tsdb.h
浏览文件 @
b51c6ae1
...
...
@@ -58,15 +58,6 @@ typedef struct SDataStatis {
}
SDataStatis
;
// --------- TSDB APPLICATION HANDLE DEFINITION
typedef
struct
{
void
*
appH
;
void
*
cqH
;
int
(
*
notifyStatus
)(
void
*
,
int
status
,
int
eno
);
int
(
*
eventCallBack
)(
void
*
);
void
*
(
*
cqCreateFunc
)(
void
*
handle
,
uint64_t
uid
,
int32_t
sid
,
const
char
*
dstTable
,
char
*
sqlStr
,
STSchema
*
pSchema
,
int
start
);
void
(
*
cqDropFunc
)(
void
*
handle
);
}
STsdbAppH
;
// --------- TSDB REPOSITORY CONFIGURATION DEFINITION
typedef
struct
{
...
...
source/dnode/vnode/tsdb2/inc/tsdbint.h
浏览文件 @
b51c6ae1
...
...
@@ -16,22 +16,21 @@
#ifndef _TD_TSDB_INT_H_
#define _TD_TSDB_INT_H_
#include "os.h"
#include "tlog.h"
#include "taosdef.h"
#include "taoserror.h"
#include "tarray.h"
#include "tchecksum.h"
#include "tskiplist.h"
#include "tdataformat.h"
#include "tcoding.h"
#include "tcompression.h"
#include "tlockfree.h"
#include "tlist.h"
#include "thash.h"
#include "tarray.h"
#include "tdataformat.h"
#include "tfs.h"
#include "thash.h"
#include "tlist.h"
#include "tlockfree.h"
#include "tlog.h"
#include "tsdbMemory.h"
#include "tskiplist.h"
#include "tsdb.h"
...
...
@@ -61,32 +60,15 @@ extern "C" {
#include "tsdbRowMergeBuf.h"
// Main definitions
struct
STsdb
{
uint8_t
state
;
STsdbCfg
config
;
STsdbCfg
save_config
;
// save apply config
bool
config_changed
;
// config changed flag
pthread_mutex_t
save_mutex
;
// protect save config
int16_t
cacheLastConfigVersion
;
STsdbAppH
appH
;
STsdbStat
stat
;
STsdbMeta
*
tsdbMeta
;
// STsdbBufPool* pPool;
SMemTable
*
mem
;
SMemTable
*
imem
;
STsdbFS
*
fs
;
SRtn
rtn
;
tsem_t
readyToCommit
;
pthread_mutex_t
mutex
;
bool
repoLocked
;
int32_t
code
;
// Commit code
SMergeBuf
mergeBuf
;
//used when update=2
int8_t
compactState
;
// compact state: inCompact/noCompact/waitingCompact?
pthread_t
*
pthread
;
uint8_t
state
;
STsdbCfg
config
;
STsdbStat
stat
;
STsdbMeta
*
tsdbMeta
;
SMemTable
*
mem
;
SMemTable
*
imem
;
STsdbFS
*
fs
;
SRtn
rtn
;
SMergeBuf
mergeBuf
;
// used when update=2
};
#define REPO_ID(r) (r)->config.tsdbId
...
...
@@ -95,40 +77,15 @@ struct STsdb {
#define IS_REPO_LOCKED(r) (r)->repoLocked
#define TSDB_SUBMIT_MSG_HEAD_SIZE sizeof(SSubmitMsg)
int
tsdbLockRepo
(
STsdb
*
pRepo
);
int
tsdbUnlockRepo
(
STsdb
*
pRepo
);
STsdbMeta
*
tsdbGetMeta
(
STsdb
*
pRepo
);
int
tsdbCheckCommit
(
STsdb
*
pRepo
);
int
tsdbRestoreInfo
(
STsdb
*
pRepo
);
UNUSED_FUNC
int
tsdbCacheLastData
(
STsdb
*
pRepo
,
STsdbCfg
*
oldCfg
);
int32_t
tsdbLoadLastCache
(
STsdb
*
pRepo
,
STable
*
pTable
);
void
tsdbGetRootDir
(
int
repoid
,
char
dirName
[]);
void
tsdbGetDataDir
(
int
repoid
,
char
dirName
[]);
// static FORCE_INLINE STsdbBufBlock* tsdbGetCurrBufBlock(STsdb* pRepo) {
// ASSERT(pRepo != NULL);
// if (pRepo->mem == NULL) return NULL;
// SListNode* pNode = listTail(pRepo->mem->bufBlockList);
// if (pNode == NULL) return NULL;
// STsdbBufBlock* pBufBlock = NULL;
// tdListNodeGetData(pRepo->mem->bufBlockList, pNode, (void*)(&pBufBlock));
// return pBufBlock;
// }
// static FORCE_INLINE int tsdbGetNextMaxTables(int tid) {
// ASSERT(tid >= 1 && tid <= TSDB_MAX_TABLES);
// int maxTables = TSDB_INIT_NTABLES;
// while (true) {
// maxTables = MIN(maxTables, TSDB_MAX_TABLES);
// if (tid <= maxTables) break;
// maxTables *= 2;
// }
// return maxTables + 1;
// }
int
tsdbLockRepo
(
STsdb
*
pRepo
);
int
tsdbUnlockRepo
(
STsdb
*
pRepo
);
STsdbMeta
*
tsdbGetMeta
(
STsdb
*
pRepo
);
int
tsdbCheckCommit
(
STsdb
*
pRepo
);
int
tsdbRestoreInfo
(
STsdb
*
pRepo
);
UNUSED_FUNC
int
tsdbCacheLastData
(
STsdb
*
pRepo
,
STsdbCfg
*
oldCfg
);
int32_t
tsdbLoadLastCache
(
STsdb
*
pRepo
,
STable
*
pTable
);
void
tsdbGetRootDir
(
int
repoid
,
char
dirName
[]);
void
tsdbGetDataDir
(
int
repoid
,
char
dirName
[]);
#ifdef __cplusplus
}
...
...
source/dnode/vnode/tsdb2/src/tsdbMain.c
浏览文件 @
b51c6ae1
此差异已折叠。
点击以展开。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录