Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
770b1bb1
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看板
提交
770b1bb1
编写于
11月 03, 2021
作者:
H
Hongze Cheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
more
上级
552051da
变更
9
隐藏空白更改
内联
并排
Showing
9 changed file
with
90 addition
and
26 deletion
+90
-26
include/server/vnode/meta/impl/metaImpl.h
include/server/vnode/meta/impl/metaImpl.h
+28
-21
source/dnode/vnode/meta/inc/metaDB.h
source/dnode/vnode/meta/inc/metaDB.h
+2
-0
source/dnode/vnode/meta/inc/metaDef.h
source/dnode/vnode/meta/inc/metaDef.h
+2
-0
source/dnode/vnode/meta/inc/metaIdx.h
source/dnode/vnode/meta/inc/metaIdx.h
+2
-0
source/dnode/vnode/meta/inc/metaTbOptions.h
source/dnode/vnode/meta/inc/metaTbOptions.h
+4
-0
source/dnode/vnode/meta/src/metaDB.c
source/dnode/vnode/meta/src/metaDB.c
+10
-0
source/dnode/vnode/meta/src/metaIdx.c
source/dnode/vnode/meta/src/metaIdx.c
+5
-1
source/dnode/vnode/meta/src/metaTable.c
source/dnode/vnode/meta/src/metaTable.c
+29
-3
source/dnode/vnode/meta/src/metaTbOptions.c
source/dnode/vnode/meta/src/metaTbOptions.c
+8
-1
未找到文件。
include/server/vnode/meta/impl/metaImpl.h
浏览文件 @
770b1bb1
...
...
@@ -25,37 +25,44 @@ extern "C" {
#endif
typedef
uint64_t
tb_uid_t
;
/* ------------------------ SMetaOptions ------------------------ */
struct
SMetaOptions
{
size_t
lruCacheSize
;
// LRU cache size
size_t
lruCacheSize
;
// LRU cache size
};
#if 0
typedef enum { META_INIT_TABLE = 0, META_SUPER_TABLE = 1, META_CHILD_TABLE = 2, META_NORMAL_TABLE = 3 } EMetaTableT;
typedef struct SSuperTableOpts {
/* ------------------------ STbOptions ------------------------ */
typedef
struct
{
}
SSMAOptions
;
// super table options
typedef
struct
{
tb_uid_t
uid
;
STSchema
*pSchema; // (ts timestamp, a int)
STSchema
*pTagSchema; // (tag1 binary(10), tag2 int)
} SS
uperTableOpt
s;
STSchema
*
pSchema
;
STSchema
*
pTagSchema
;
}
SS
TbOption
s
;
typedef struct SChildTableOpts {
tb_uid_t suid; // super table uid
SKVRow tags; // tag value of the child table
} SChildTableOpts;
// child table options
typedef
struct
{
tb_uid_t
suid
;
SKVRow
tags
;
}
SCTbOptions
;
typedef struct SNormalTableOpts {
STSchema *pSchema;
} SNormalTableOpts;
// normal table options
typedef
struct
{
SSchema
*
pSchame
;
}
SNTbOptions
;
struct STableOptions {
int8_t type;
char * name;
struct
STbOptions
{
uint8_t
type
;
char
*
name
;
uint64_t
ttl
;
// time to live
SSMAOptions
bsma
;
// Block-wise sma
union
{
SS
uperTableOpts superOpt
s;
S
ChildTableOpts childOpt
s;
S
NormalTableOpts normalOpt
s;
SS
TbOptions
stbOption
s
;
S
NTbOptions
ntbOption
s
;
S
CTbOptions
ctbOption
s
;
};
};
#endif
#ifdef __cplusplus
}
...
...
source/dnode/vnode/meta/inc/metaDB.h
浏览文件 @
770b1bb1
...
...
@@ -28,6 +28,8 @@ typedef rocksdb_t meta_db_t;
int
metaOpenDB
(
SMeta
*
pMeta
);
void
metaCloseDB
(
SMeta
*
pMeta
);
int
metaSaveTableToDB
(
SMeta
*
pMeta
,
const
STbOptions
*
pTbOptions
);
int
metaRemoveTableFromDb
(
SMeta
*
pMeta
,
tb_uid_t
uid
);
#ifdef __cplusplus
}
...
...
source/dnode/vnode/meta/inc/metaDef.h
浏览文件 @
770b1bb1
...
...
@@ -16,9 +16,11 @@
#ifndef _TD_META_DEF_H_
#define _TD_META_DEF_H_
#include "meta.h"
#include "metaCache.h"
#include "metaDB.h"
#include "metaIdx.h"
#include "metaOptions.h"
#include "metaTbUid.h"
#ifdef __cplusplus
...
...
source/dnode/vnode/meta/inc/metaIdx.h
浏览文件 @
770b1bb1
...
...
@@ -28,6 +28,8 @@ typedef rocksdb_t meta_index_t;
int
metaOpenIdx
(
SMeta
*
pMeta
);
void
metaCloseIdx
(
SMeta
*
pMeta
);
int
metaSaveTableToIdx
(
SMeta
*
pMeta
,
const
STbOptions
*
pTbOptions
);
int
metaRemoveTableFromIdx
(
SMeta
*
pMeta
,
tb_uid_t
uid
);
#ifdef __cplusplus
}
...
...
source/dnode/vnode/meta/inc/metaTbOptions.h
浏览文件 @
770b1bb1
...
...
@@ -16,10 +16,14 @@
#ifndef _TD_META_TABLE_OPTIONS_H_
#define _TD_META_TABLE_OPTIONS_H_
#include "meta.h"
#ifdef __cplusplus
extern
"C"
{
#endif
int
metaValidateTbOptions
(
SMeta
*
pMeta
,
const
STbOptions
*
);
#ifdef __cplusplus
}
#endif
...
...
source/dnode/vnode/meta/src/metaDB.c
浏览文件 @
770b1bb1
...
...
@@ -46,4 +46,14 @@ void metaCloseDB(SMeta *pMeta) {
rocksdb_close
(
pMeta
->
pDB
);
pMeta
->
pDB
=
NULL
;
}
}
int
metaSaveTableToDB
(
SMeta
*
pMeta
,
const
STbOptions
*
pTbOptions
)
{
// TODO
return
0
;
}
int
metaRemoveTableFromDb
(
SMeta
*
pMeta
,
tb_uid_t
uid
)
{
/* TODO */
return
0
;
}
\ No newline at end of file
source/dnode/vnode/meta/src/metaIdx.c
浏览文件 @
770b1bb1
...
...
@@ -13,7 +13,6 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "meta.h"
#include "metaDef.h"
int
metaOpenIdx
(
SMeta
*
pMeta
)
{
...
...
@@ -46,4 +45,9 @@ void metaCloseIdx(SMeta *pMeta) { /* TODO */
rocksdb_close
(
pMeta
->
pIdx
);
pMeta
->
pIdx
=
NULL
;
}
}
int
metaSaveTableToIdx
(
SMeta
*
pMeta
,
const
STbOptions
*
pTbOptions
)
{
// TODO
return
0
;
}
\ No newline at end of file
source/dnode/vnode/meta/src/metaTable.c
浏览文件 @
770b1bb1
...
...
@@ -13,14 +13,40 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "meta.h"
#include "meta
Def
.h"
int
metaCreateTable
(
SMeta
*
pMeta
,
const
STbOptions
*
pTbOptions
)
{
// TODO
// Validate the tbOptions
if
(
metaValidateTbOptions
(
pTbOptions
)
<
0
)
{
// TODO: handle error
return
-
1
;
}
// TODO: add atomicity
if
(
metaSaveTableToDB
(
pMeta
,
pTbOptions
)
<
0
)
{
// TODO: handle error
return
-
1
;
}
if
(
metaSaveTableToIdx
(
pMeta
,
pTbOptions
)
<
0
)
{
// TODO: handle error
return
-
1
;
}
return
0
;
}
int
metaDropTable
(
SMeta
*
pMeta
,
tb_uid_t
uid
)
{
// TODO
if
(
metaRemoveTableFromIdx
(
pMeta
,
uid
)
<
0
)
{
// TODO: handle error
return
-
1
;
}
if
(
metaRemoveTableFromIdx
(
pMeta
,
uid
)
<
0
)
{
// TODO
return
-
1
;
}
return
0
;
}
source/dnode/vnode/meta/src/metaTbOptions.c
浏览文件 @
770b1bb1
...
...
@@ -11,4 +11,11 @@
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
\ No newline at end of file
*/
#include "metaDef.h"
int
metaValidateTbOptions
(
SMeta
*
pMeta
,
const
STbOptions
*
pTbOptions
)
{
// TODO
return
0
;
}
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录