Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
82baff25
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
82baff25
编写于
10月 20, 2020
作者:
H
Hongze Cheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
more code
上级
de5dec9c
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
141 addition
and
0 deletion
+141
-0
CMakeLists.txt
CMakeLists.txt
+1
-0
cmake/define.inc
cmake/define.inc
+4
-0
src/dnode/inc/dnodeTier.h
src/dnode/inc/dnodeTier.h
+107
-0
src/dnode/src/dnodeTier.c
src/dnode/src/dnodeTier.c
+29
-0
未找到文件。
CMakeLists.txt
浏览文件 @
82baff25
...
...
@@ -16,6 +16,7 @@ SET(TD_GRANT FALSE)
SET
(
TD_SYNC TRUE
)
SET
(
TD_MQTT TRUE
)
SET
(
TD_TSDB_PLUGINS FALSE
)
SET
(
TD_DNODE_PLUGINS FALSE
)
SET
(
TD_COVER FALSE
)
SET
(
TD_MEM_CHECK FALSE
)
...
...
cmake/define.inc
浏览文件 @
82baff25
...
...
@@ -25,6 +25,10 @@ IF (TD_TSDB_PLUGINS)
ADD_DEFINITIONS
(
-
D_TSDB_PLUGINS
)
ENDIF
()
IF
(
TD_DNODE_PLUGINS
)
ADD_DEFINITIONS
(
-
D_DNODE_PLUGINS
)
ENDIF
()
IF
(
TD_GODLL
)
ADD_DEFINITIONS
(
-
D_TD_GO_DLL_
)
ENDIF
()
...
...
src/dnode/inc/dnodeTier.h
0 → 100644
浏览文件 @
82baff25
/*
* Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
*
* This program is free software: you can use, redistribute, and/or modify
* it under the terms of the GNU Affero General Public License, version 3
* or later ("AGPL"), as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE.
*
* 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/>.
*/
#ifndef TDENGINE_DNODE_TIER_H
#define TDENGINE_DNODE_TIER_H
#ifdef __cplusplus
extern
"C"
{
#endif
#include "hash.h"
#include "taoserror.h"
#define DNODE_MAX_TIERS 3
#define DNODE_MAX_DISKS_PER_TIER 16
typedef
struct
{
int
level
;
int
did
;
}
SDiskID
;
typedef
struct
{
uint64_t
size
;
uint64_t
free
;
uint64_t
nfiles
;
}
SDiskMeta
;
typedef
struct
{
char
dir
[
TSDB_FILENAME_LEN
];
SDiskMeta
dmeta
;
}
SDisk
;
typedef
struct
{
int
level
;
int
nDisks
;
SDisk
disks
[
DNODE_MAX_DISKS_PER_TIER
];
}
STier
;
typedef
struct
{
pthread_rwlock_t
rwlock
;
int
nTiers
;
STier
tiers
[
DNODE_MAX_TIERS
];
SHashObj
*
map
;
}
SDnodeTier
;
#define DNODE_PRIMARY_DISK(pDnodeTier) (&(pDnodeTier)->tiers[0].disks[0])
static
FORCE_INLINE
int
dnodeRLockTiers
(
SDnodeTier
*
pDnodeTier
)
{
int
code
=
pthread_rwlock_rdlock
(
&
(
pDnodeTier
->
rwlock
));
if
(
code
!=
0
)
{
terrno
=
TAOS_SYSTEM_ERROR
(
code
);
return
-
1
;
}
return
0
;
}
static
FORCE_INLINE
int
dnodeWLockTiers
(
SDnodeTier
*
pDnodeTier
)
{
int
code
=
pthread_rwlock_wrlock
(
&
(
pDnodeTier
->
rwlock
));
if
(
code
!=
0
)
{
terrno
=
TAOS_SYSTEM_ERROR
(
code
);
return
-
1
;
}
return
0
;
}
static
FORCE_INLINE
int
dnodeUnLockTiers
(
SDnodeTier
*
pDnodeTier
)
{
int
code
=
pthread_rwlock_unlock
(
&
(
pDnodeTier
->
rwlock
));
if
(
code
!=
0
)
{
terrno
=
TAOS_SYSTEM_ERROR
(
code
);
return
-
1
;
}
return
0
;
}
static
FORCE_INLINE
SDisk
*
dnodeGetDisk
(
SDnodeTier
*
pDnodeTier
,
int
level
,
int
did
)
{
if
(
level
<
0
||
level
>=
pDnodeTier
->
nTiers
)
return
NULL
;
if
(
did
<
0
||
did
>=
pDnodeTier
->
tiers
[
level
].
nDisks
)
return
NULL
;
return
&
(
pDnodeTier
->
tiers
[
level
].
disks
[
did
]);
}
SDnodeTier
*
dnodeNewTier
();
void
*
dnodeCloseTier
(
SDnodeTier
*
pDnodeTier
);
int
dnodeAddDisk
(
SDnodeTier
*
pDnodeTier
,
char
*
dir
,
int
level
);
int
dnodeUpdateTiersInfo
(
SDnodeTier
*
pDnodeTier
);
int
dnodeCheckTiers
(
SDnodeTier
*
pDnodeTier
);
SDisk
*
dnodeAssignDisk
(
SDnodeTier
*
pDnodeTier
,
int
level
);
SDisk
*
dnodeGetDiskByName
(
SDnodeTier
*
pDnodeTier
,
char
*
dirName
);
#ifdef __cplusplus
}
#endif
#endif
src/dnode/src/dnodeTier.c
0 → 100644
浏览文件 @
82baff25
/*
* Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
*
* This program is free software: you can use, redistribute, and/or modify
* it under the terms of the GNU Affero General Public License, version 3
* or later ("AGPL"), as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE.
*
* 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/>.
*/
#include "os.h"
#include "dnodeTier.h"
#ifndef _DNODE_PLUGINS
SDnodeTier
*
dnodeNewTier
()
{
return
NULL
;
}
void
*
dnodeCloseTier
(
SDnodeTier
*
pDnodeTier
)
{
return
NULL
;
}
int
dnodeAddDisk
(
SDnodeTier
*
pDnodeTier
,
char
*
dir
,
int
level
)
{
return
0
;
}
int
dnodeUpdateTiersInfo
(
SDnodeTier
*
pDnodeTier
)
{
return
0
;
}
int
dnodeCheckTiers
(
SDnodeTier
*
pDnodeTier
)
{
return
0
;
}
SDisk
*
dnodeAssignDisk
(
SDnodeTier
*
pDnodeTier
,
int
level
)
{
return
NULL
;
}
SDisk
*
dnodeGetDiskByName
(
SDnodeTier
*
pDnodeTier
,
char
*
dirName
)
{
return
NULL
;
}
#endif
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录