Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
7d7c380c
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看板
提交
7d7c380c
编写于
10月 15, 2021
作者:
H
Hongze Cheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
more
上级
f660db70
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
48 addition
and
46 deletion
+48
-46
include/server/vnode/meta/meta.h
include/server/vnode/meta/meta.h
+29
-1
source/server/vnode/meta/inc/metaDef.h
source/server/vnode/meta/inc/metaDef.h
+0
-27
source/server/vnode/meta/inc/metaUid.h
source/server/vnode/meta/inc/metaUid.h
+1
-2
source/server/vnode/meta/test/metaTests.cpp
source/server/vnode/meta/test/metaTests.cpp
+18
-16
未找到文件。
include/server/vnode/meta/meta.h
浏览文件 @
7d7c380c
...
...
@@ -24,9 +24,10 @@
extern
"C"
{
#endif
typedef
uint64_t
tuid_t
;
/* ------------------------ APIs Exposed ------------------------ */
// Types exported
typedef
uint64_t
tb_uid_t
;
typedef
struct
SMeta
SMeta
;
typedef
struct
SMetaOpts
SMetaOpts
;
typedef
struct
SMetaQueryHandle
SMetaQueryHandle
;
...
...
@@ -59,6 +60,33 @@ void metaQueryOptionsDestroy(SMetaQueryOpts *);
// STableOpts
void
metaTableOptsInit
(
STableOpts
*
,
int8_t
type
,
const
char
*
name
,
const
STSchema
*
pSchema
);
/* ------------------------ Impl should hidden ------------------------ */
typedef
enum
{
META_SUPER_TABLE
=
0
,
META_CHILD_TABLE
=
1
,
META_NORMAL_TABLE
=
2
}
EMetaTableT
;
typedef
struct
SSuperTableOpts
{
tb_uid_t
uid
;
STSchema
*
pSchema
;
// (ts timestamp, a int)
STSchema
*
pTagSchema
;
// (tag1 binary(10), tag2 int)
}
SSuperTableOpts
;
typedef
struct
SChildTableOpts
{
tb_uid_t
suid
;
// super table uid
SKVRow
tags
;
// tag value of the child table
}
SChildTableOpts
;
typedef
struct
SNormalTableOpts
{
STSchema
*
pSchema
;
}
SNormalTableOpts
;
struct
STableOpts
{
EMetaTableT
type
;
char
*
name
;
union
{
SSuperTableOpts
superOpts
;
SChildTableOpts
childOpts
;
SNormalTableOpts
normalOpts
;
};
};
#ifdef __cplusplus
}
#endif
...
...
source/server/vnode/meta/inc/metaDef.h
浏览文件 @
7d7c380c
...
...
@@ -34,33 +34,6 @@ struct SMeta {
// STkvCache* metaCache; // TODO: add a global cache here
};
/* ------------------------ TEST CODE ------------------------ */
typedef
enum
{
META_SUPER_TABLE
=
0
,
META_CHILD_TABLE
=
1
,
META_NORMAL_TABLE
=
2
}
EMetaTableT
;
typedef
struct
SSuperTableOpts
{
tb_uid_t
uid
;
STSchema
*
pSchema
;
// (ts timestamp, a int)
STSchema
*
pTagSchema
;
// (tag1 binary(10), tag2 int)
}
SSuperTableOpts
;
typedef
struct
SChildTableOpts
{
tb_uid_t
suid
;
// super table uid
SKVRow
tags
;
// tag value of the child table
}
SChildTableOpts
;
typedef
struct
SNormalTableOpts
{
STSchema
*
pSchema
;
}
SNormalTableOpts
;
struct
STableOpts
{
EMetaTableT
type
;
char
*
name
;
union
{
SSuperTableOpts
superOpts
;
SChildTableOpts
childOpts
;
SNormalTableOpts
normalOpts
;
};
};
#ifdef __cplusplus
}
#endif
...
...
source/server/vnode/meta/inc/metaUid.h
浏览文件 @
7d7c380c
...
...
@@ -16,14 +16,13 @@
#ifndef _TD_META_UID_H_
#define _TD_META_UID_H_
#include "
os
.h"
#include "
meta
.h"
#ifdef __cplusplus
extern
"C"
{
#endif
/* ------------------------ APIS EXPOSED ------------------------ */
typedef
uint64_t
tb_uid_t
;
typedef
struct
STableUidGenerator
STableUidGenerator
;
// tb_uid_t
...
...
source/server/vnode/meta/test/metaTests.cpp
浏览文件 @
7d7c380c
...
...
@@ -9,23 +9,25 @@ TEST(MetaTest, meta_open_test) {
SMeta
*
meta
=
metaOpen
(
NULL
);
std
::
cout
<<
"Meta is opened!"
<<
std
::
endl
;
// // Create tables
// STableOpts tbOpts;
// char tbname[128];
// STSchema * pSchema;
// STSchemaBuilder sb;
// tdInitTSchemaBuilder(&sb, 0);
// for (size_t i = 0; i < 10; i++) {
// tdAddColToSchema(&sb, TSDB_DATA_TYPE_TIMESTAMP, i, 8);
// }
// pSchema = tdGetSchemaFromBuilder(&sb);
// tdDestroyTSchemaBuilder(&sb);
// for (size_t i = 0; i < 1000000; i++) {
// sprintf(tbname, "tb%ld", i);
// metaTableOptsInit(&tbOpts, 0, tbname, pSchema);
#if 0
// Create tables
STableOpts tbOpts;
char tbname[128];
STSchema * pSchema;
STSchemaBuilder sb;
tdInitTSchemaBuilder(&sb, 0);
for (size_t i = 0; i < 10; i++) {
tdAddColToSchema(&sb, TSDB_DATA_TYPE_TIMESTAMP, i, 8);
}
pSchema = tdGetSchemaFromBuilder(&sb);
tdDestroyTSchemaBuilder(&sb);
for (size_t i = 0; i < 1000000; i++) {
sprintf(tbname, "tb%ld", i);
metaTableOptsInit(&tbOpts, 0, tbname, pSchema);
// metaCreateTable(meta, &tbOpts);
// }
metaCreateTable(meta, &tbOpts);
}
#endif
// Close Meta
metaClose
(
meta
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录