Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
TDengine
提交
17a27fa2
T
TDengine
项目概览
慢慢CG
/
TDengine
与 Fork 源项目一致
Fork自
taosdata / TDengine
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
17a27fa2
编写于
10月 20, 2020
作者:
H
Hongze Cheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
more code
上级
db10950a
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
82 addition
and
108 deletion
+82
-108
src/dnode/inc/dnodeTier.h
src/dnode/inc/dnodeTier.h
+0
-107
src/dnode/src/dnodeTier.c
src/dnode/src/dnodeTier.c
+1
-1
src/inc/dnode.h
src/inc/dnode.h
+81
-0
未找到文件。
src/dnode/inc/dnodeTier.h
已删除
100644 → 0
浏览文件 @
db10950a
/*
* 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
浏览文件 @
17a27fa2
...
...
@@ -14,7 +14,7 @@
*/
#include "os.h"
#include "dnode
Tier
.h"
#include "dnode.h"
#ifndef _DNODE_PLUGINS
...
...
src/inc/dnode.h
浏览文件 @
17a27fa2
...
...
@@ -20,6 +20,8 @@
extern
"C"
{
#endif
#include "hash.h"
#include "taoserror.h"
#include "trpc.h"
typedef
struct
{
...
...
@@ -69,6 +71,85 @@ void dnodeDelayReprocessMnodeWriteMsg(void *pMsg);
void
dnodeSendStatusMsgToMnode
();
// DNODE TIER
#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
SDnodeTier
{
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
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录