Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
TDengine
提交
d9da9fc9
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看板
提交
d9da9fc9
编写于
12月 09, 2020
作者:
S
Shengliang Guan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
TD-2393
上级
f979b1f9
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
165 addition
and
86 deletion
+165
-86
src/dnode/src/dnodeVRead.c
src/dnode/src/dnodeVRead.c
+17
-86
src/util/inc/tworker.h
src/util/inc/tworker.h
+52
-0
src/util/src/tworker.c
src/util/src/tworker.c
+96
-0
未找到文件。
src/dnode/src/dnodeVRead.c
浏览文件 @
d9da9fc9
...
...
@@ -16,66 +16,26 @@
#define _DEFAULT_SOURCE
#include "os.h"
#include "tqueue.h"
#include "tworker.h"
#include "dnodeVRead.h"
typedef
struct
{
pthread_t
thread
;
// thread
int32_t
workerId
;
// worker ID
}
SVReadWorker
;
typedef
struct
{
int32_t
max
;
// max number of workers
int32_t
min
;
// min number of workers
int32_t
num
;
// current number of workers
SVReadWorker
*
worker
;
pthread_mutex_t
mutex
;
}
SVReadWorkerPool
;
static
void
*
dnodeProcessReadQueue
(
void
*
pWorker
);
// module global variable
static
SVReadWorkerPool
tsVReadWP
;
static
taos_qset
tsVReadQset
;
static
SWorkerPool
tsVReadWP
;
int32_t
dnodeInitVRead
()
{
tsVRead
Qset
=
taosOpenQset
()
;
tsVRead
WP
.
name
=
"vquery"
;
tsVReadWP
.
workerFp
=
dnodeProcessReadQueue
;
tsVReadWP
.
min
=
tsNumOfCores
;
tsVReadWP
.
max
=
tsNumOfCores
*
tsNumOfThreadsPerCore
;
if
(
tsVReadWP
.
max
<=
tsVReadWP
.
min
*
2
)
tsVReadWP
.
max
=
2
*
tsVReadWP
.
min
;
tsVReadWP
.
worker
=
calloc
(
sizeof
(
SVReadWorker
),
tsVReadWP
.
max
);
pthread_mutex_init
(
&
tsVReadWP
.
mutex
,
NULL
);
if
(
tsVReadWP
.
worker
==
NULL
)
return
-
1
;
for
(
int
i
=
0
;
i
<
tsVReadWP
.
max
;
++
i
)
{
SVReadWorker
*
pWorker
=
tsVReadWP
.
worker
+
i
;
pWorker
->
workerId
=
i
;
}
dInfo
(
"dnode vread is initialized, min worker:%d max worker:%d"
,
tsVReadWP
.
min
,
tsVReadWP
.
max
);
return
0
;
return
tWorkerInit
(
&
tsVReadWP
);
}
void
dnodeCleanupVRead
()
{
for
(
int
i
=
0
;
i
<
tsVReadWP
.
max
;
++
i
)
{
SVReadWorker
*
pWorker
=
tsVReadWP
.
worker
+
i
;
if
(
pWorker
->
thread
)
{
taosQsetThreadResume
(
tsVReadQset
);
}
}
for
(
int
i
=
0
;
i
<
tsVReadWP
.
max
;
++
i
)
{
SVReadWorker
*
pWorker
=
tsVReadWP
.
worker
+
i
;
if
(
pWorker
->
thread
)
{
pthread_join
(
pWorker
->
thread
,
NULL
);
}
}
free
(
tsVReadWP
.
worker
);
taosCloseQset
(
tsVReadQset
);
pthread_mutex_destroy
(
&
tsVReadWP
.
mutex
);
dInfo
(
"dnode vread is closed"
);
tWorkerCleanup
(
&
tsVReadWP
);
}
void
dnodeDispatchToVReadQueue
(
SRpcMsg
*
pMsg
)
{
...
...
@@ -109,42 +69,11 @@ void dnodeDispatchToVReadQueue(SRpcMsg *pMsg) {
}
void
*
dnodeAllocVReadQueue
(
void
*
pVnode
)
{
pthread_mutex_lock
(
&
tsVReadWP
.
mutex
);
taos_queue
queue
=
taosOpenQueue
();
if
(
queue
==
NULL
)
{
pthread_mutex_unlock
(
&
tsVReadWP
.
mutex
);
return
NULL
;
}
taosAddIntoQset
(
tsVReadQset
,
queue
,
pVnode
);
// spawn a thread to process queue
if
(
tsVReadWP
.
num
<
tsVReadWP
.
max
)
{
do
{
SVReadWorker
*
pWorker
=
tsVReadWP
.
worker
+
tsVReadWP
.
num
;
pthread_attr_t
thAttr
;
pthread_attr_init
(
&
thAttr
);
pthread_attr_setdetachstate
(
&
thAttr
,
PTHREAD_CREATE_JOINABLE
);
if
(
pthread_create
(
&
pWorker
->
thread
,
&
thAttr
,
dnodeProcessReadQueue
,
pWorker
)
!=
0
)
{
dError
(
"failed to create thread to process vread vqueue since %s"
,
strerror
(
errno
));
}
pthread_attr_destroy
(
&
thAttr
);
tsVReadWP
.
num
++
;
dDebug
(
"dnode vread worker:%d is launched, total:%d"
,
pWorker
->
workerId
,
tsVReadWP
.
num
);
}
while
(
tsVReadWP
.
num
<
tsVReadWP
.
min
);
}
pthread_mutex_unlock
(
&
tsVReadWP
.
mutex
);
dDebug
(
"pVnode:%p, dnode vread queue:%p is allocated"
,
pVnode
,
queue
);
return
queue
;
return
tWorkerAllocQueue
(
&
tsVReadWP
,
pVnode
);
}
void
dnodeFreeVReadQueue
(
void
*
pRqueue
)
{
t
aosCloseQueue
(
pRqueue
);
t
WorkerFreeQueue
(
&
tsVReadWP
,
pRqueue
);
}
void
dnodeSendRpcVReadRsp
(
void
*
pVnode
,
SVReadMsg
*
pRead
,
int32_t
code
)
{
...
...
@@ -161,18 +90,20 @@ void dnodeSendRpcVReadRsp(void *pVnode, SVReadMsg *pRead, int32_t code) {
void
dnodeDispatchNonRspMsg
(
void
*
pVnode
,
SVReadMsg
*
pRead
,
int32_t
code
)
{
}
static
void
*
dnodeProcessReadQueue
(
void
*
pWorker
)
{
SVReadMsg
*
pRead
;
int32_t
qtype
;
void
*
pVnode
;
static
void
*
dnodeProcessReadQueue
(
void
*
wparam
)
{
SWorker
*
pWorker
=
wparam
;
SWorkerPool
*
pPool
=
pWorker
->
pPool
;
SVReadMsg
*
pRead
;
int32_t
qtype
;
void
*
pVnode
;
while
(
1
)
{
if
(
taosReadQitemFromQset
(
tsVReadQ
set
,
&
qtype
,
(
void
**
)
&
pRead
,
&
pVnode
)
==
0
)
{
dDebug
(
"
qset:%p dnode vread got no message from qset, exiting"
,
tsVReadQ
set
);
if
(
taosReadQitemFromQset
(
pPool
->
q
set
,
&
qtype
,
(
void
**
)
&
pRead
,
&
pVnode
)
==
0
)
{
dDebug
(
"
dnode vquery got no message from qset:%p, exiting"
,
pPool
->
q
set
);
break
;
}
dTrace
(
"msg:%p, app:%p type:%s will be processed in v
read
queue, qtype:%d"
,
pRead
,
pRead
->
rpcAhandle
,
dTrace
(
"msg:%p, app:%p type:%s will be processed in v
query
queue, qtype:%d"
,
pRead
,
pRead
->
rpcAhandle
,
taosMsg
[
pRead
->
msgType
],
qtype
);
int32_t
code
=
vnodeProcessRead
(
pVnode
,
pRead
);
...
...
src/util/inc/tworker.h
0 → 100644
浏览文件 @
d9da9fc9
/*
* 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_TWORKER_H
#define TDENGINE_TWORKER_H
#ifdef __cplusplus
extern
"C"
{
#endif
typedef
void
*
(
*
FWorkerThread
)(
void
*
pWorker
);
struct
SWorkerPool
;
typedef
struct
{
pthread_t
thread
;
// thread
int32_t
id
;
// worker ID
struct
SWorkerPool
*
pPool
;
}
SWorker
;
typedef
struct
SWorkerPool
{
int32_t
max
;
// max number of workers
int32_t
min
;
// min number of workers
int32_t
num
;
// current number of workers
void
*
qset
;
char
*
name
;
SWorker
*
worker
;
FWorkerThread
workerFp
;
pthread_mutex_t
mutex
;
}
SWorkerPool
;
int32_t
tWorkerInit
(
SWorkerPool
*
pPool
);
void
tWorkerCleanup
(
SWorkerPool
*
pPool
);
void
*
tWorkerAllocQueue
(
SWorkerPool
*
pPool
,
void
*
ahandle
);
void
tWorkerFreeQueue
(
SWorkerPool
*
pPool
,
void
*
pQueue
);
#ifdef __cplusplus
}
#endif
#endif
src/util/src/tworker.c
0 → 100644
浏览文件 @
d9da9fc9
/*
* 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/>.
*/
#define _DEFAULT_SOURCE
#include "os.h"
#include "tulog.h"
#include "tqueue.h"
#include "tworker.h"
int32_t
tWorkerInit
(
SWorkerPool
*
pPool
)
{
pPool
->
qset
=
taosOpenQset
();
pPool
->
worker
=
calloc
(
sizeof
(
SWorker
),
pPool
->
max
);
pthread_mutex_init
(
&
pPool
->
mutex
,
NULL
);
for
(
int
i
=
0
;
i
<
pPool
->
max
;
++
i
)
{
SWorker
*
pWorker
=
pPool
->
worker
+
i
;
pWorker
->
id
=
i
;
pWorker
->
pPool
=
pPool
;
}
uInfo
(
"worker:%s is initialized, min:%d max:%d"
,
pPool
->
name
,
pPool
->
min
,
pPool
->
max
);
return
0
;
}
void
tWorkerCleanup
(
SWorkerPool
*
pPool
)
{
for
(
int
i
=
0
;
i
<
pPool
->
max
;
++
i
)
{
SWorker
*
pWorker
=
pPool
->
worker
+
i
;
if
(
pWorker
->
thread
)
{
taosQsetThreadResume
(
pPool
->
qset
);
}
}
for
(
int
i
=
0
;
i
<
pPool
->
max
;
++
i
)
{
SWorker
*
pWorker
=
pPool
->
worker
+
i
;
if
(
pWorker
->
thread
)
{
pthread_join
(
pWorker
->
thread
,
NULL
);
}
}
free
(
pPool
->
worker
);
taosCloseQset
(
pPool
->
qset
);
pthread_mutex_destroy
(
&
pPool
->
mutex
);
uInfo
(
"worker:%s is closed"
,
pPool
->
name
);
}
void
*
tWorkerAllocQueue
(
SWorkerPool
*
pPool
,
void
*
ahandle
)
{
pthread_mutex_lock
(
&
pPool
->
mutex
);
taos_queue
pQueue
=
taosOpenQueue
();
if
(
pQueue
==
NULL
)
{
pthread_mutex_unlock
(
&
pPool
->
mutex
);
return
NULL
;
}
taosAddIntoQset
(
pPool
->
qset
,
pQueue
,
ahandle
);
// spawn a thread to process queue
if
(
pPool
->
num
<
pPool
->
max
)
{
do
{
SWorker
*
pWorker
=
pPool
->
worker
+
pPool
->
num
;
pthread_attr_t
thAttr
;
pthread_attr_init
(
&
thAttr
);
pthread_attr_setdetachstate
(
&
thAttr
,
PTHREAD_CREATE_JOINABLE
);
if
(
pthread_create
(
&
pWorker
->
thread
,
&
thAttr
,
pPool
->
workerFp
,
pWorker
)
!=
0
)
{
uError
(
"worker:%s:%d failed to create thread to process since %s"
,
pPool
->
name
,
pWorker
->
id
,
strerror
(
errno
));
}
pthread_attr_destroy
(
&
thAttr
);
pPool
->
num
++
;
uDebug
(
"worker:%s:%d is launched, total:%d"
,
pPool
->
name
,
pWorker
->
id
,
pPool
->
num
);
}
while
(
pPool
->
num
<
pPool
->
min
);
}
pthread_mutex_unlock
(
&
pPool
->
mutex
);
uDebug
(
"worker:%s, queue:%p is allocated, ahandle:%p"
,
pPool
->
name
,
pQueue
,
ahandle
);
return
pQueue
;
}
void
tWorkerFreeQueue
(
SWorkerPool
*
pPool
,
void
*
pQueue
)
{
taosCloseQueue
(
pQueue
);
uDebug
(
"worker:%s, queue:%p is freed"
,
pPool
->
name
,
pQueue
);
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录