Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
8656633c
T
TDengine
项目概览
taosdata
/
TDengine
大约 1 年 前同步成功
通知
1185
Star
22015
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
8656633c
编写于
12月 08, 2022
作者:
D
dapan1121
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'enh/insertOptimize' of github.com:taosdata/TDengine into enh/insertOptimize
上级
89a6180a
9a8c6d3d
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
48 addition
and
19 deletion
+48
-19
source/libs/parser/src/parInsertSql.c
source/libs/parser/src/parInsertSql.c
+48
-19
未找到文件。
source/libs/parser/src/parInsertSql.c
浏览文件 @
8656633c
...
...
@@ -563,7 +563,8 @@ static int32_t parseTagValue(SInsertParseContext* pCxt, SVnodeModifOpStmt* pStmt
static
void
buildCreateTbReq
(
SVnodeModifOpStmt
*
pStmt
,
STag
*
pTag
,
SArray
*
pTagName
)
{
insBuildCreateTbReq
(
&
pStmt
->
createTblReq
,
pStmt
->
targetTableName
.
tname
,
pTag
,
pStmt
->
pTableMeta
->
suid
,
pStmt
->
usingTableName
.
tname
,
pTagName
,
pStmt
->
pTableMeta
->
tableInfo
.
numOfTags
,
TSDB_DEFAULT_TABLE_TTL
);
pStmt
->
usingTableName
.
tname
,
pTagName
,
pStmt
->
pTableMeta
->
tableInfo
.
numOfTags
,
TSDB_DEFAULT_TABLE_TTL
);
}
static
int32_t
checkAndTrimValue
(
SToken
*
pToken
,
char
*
tmpTokenBuf
,
SMsgBuf
*
pMsgBuf
)
{
...
...
@@ -829,6 +830,33 @@ static int32_t getTableVgroup(SParseContext* pCxt, SVnodeModifOpStmt* pStmt, boo
return
code
;
}
static
int32_t
getTableMetaAndVgroupImpl
(
SParseContext
*
pCxt
,
SVnodeModifOpStmt
*
pStmt
,
bool
*
pMissCache
)
{
SVgroupInfo
vg
;
bool
exists
=
true
;
int32_t
code
=
catalogGetCachedTableHashVgroup
(
pCxt
->
pCatalog
,
&
pStmt
->
targetTableName
,
&
vg
,
&
exists
);
if
(
TSDB_CODE_SUCCESS
==
code
)
{
if
(
exists
)
{
code
=
taosHashPut
(
pStmt
->
pVgroupsHashObj
,
(
const
char
*
)
&
vg
.
vgId
,
sizeof
(
vg
.
vgId
),
(
char
*
)
&
vg
,
sizeof
(
vg
));
}
*
pMissCache
=
!
exists
;
}
return
code
;
}
static
int32_t
getTableMetaAndVgroup
(
SInsertParseContext
*
pCxt
,
SVnodeModifOpStmt
*
pStmt
,
bool
*
pMissCache
)
{
SParseContext
*
pComCxt
=
pCxt
->
pComCxt
;
int32_t
code
=
TSDB_CODE_SUCCESS
;
if
(
pComCxt
->
async
)
{
code
=
getTableMetaAndVgroupImpl
(
pComCxt
->
pCatalog
,
pStmt
,
pMissCache
);
}
else
{
code
=
getTableMeta
(
pCxt
,
&
pStmt
->
targetTableName
,
false
,
&
pStmt
->
pTableMeta
,
pMissCache
);
if
(
TSDB_CODE_SUCCESS
==
code
&&
!
pCxt
->
missCache
)
{
code
=
getTableVgroup
(
pCxt
->
pComCxt
,
pStmt
,
false
,
&
pCxt
->
missCache
);
}
}
return
code
;
}
static
int32_t
getTargetTableSchema
(
SInsertParseContext
*
pCxt
,
SVnodeModifOpStmt
*
pStmt
)
{
if
(
pCxt
->
forceUpdate
)
{
pCxt
->
missCache
=
true
;
...
...
@@ -836,11 +864,14 @@ static int32_t getTargetTableSchema(SInsertParseContext* pCxt, SVnodeModifOpStmt
}
int32_t
code
=
checkAuth
(
pCxt
->
pComCxt
,
&
pStmt
->
targetTableName
,
&
pCxt
->
missCache
);
// if (TSDB_CODE_SUCCESS == code && !pCxt->missCache) {
// code = getTableMeta(pCxt, &pStmt->targetTableName, false, &pStmt->pTableMeta, &pCxt->missCache);
// }
// if (TSDB_CODE_SUCCESS == code && !pCxt->missCache) {
// code = getTableVgroup(pCxt->pComCxt, pStmt, false, &pCxt->missCache);
// }
if
(
TSDB_CODE_SUCCESS
==
code
&&
!
pCxt
->
missCache
)
{
code
=
getTableMeta
(
pCxt
,
&
pStmt
->
targetTableName
,
false
,
&
pStmt
->
pTableMeta
,
&
pCxt
->
missCache
);
}
if
(
TSDB_CODE_SUCCESS
==
code
&&
!
pCxt
->
missCache
)
{
code
=
getTableVgroup
(
pCxt
->
pComCxt
,
pStmt
,
false
,
&
pCxt
->
missCache
);
code
=
getTableMetaAndVgroup
(
pCxt
,
pStmt
,
&
pCxt
->
missCache
);
}
return
code
;
}
...
...
@@ -934,10 +965,9 @@ static int32_t getTableDataBlocks(SInsertParseContext* pCxt, SVnodeModifOpStmt*
pStmt
->
pTableMeta
->
uid
=
0
;
}
return
insGetDataBlockFromList
(
pStmt
->
pTableBlockHashObj
,
&
uid
,
sizeof
(
pStmt
->
pTableMeta
->
uid
),
TSDB_DEFAULT_PAYLOAD_SIZE
,
sizeof
(
SSubmitBlk
),
getTableInfo
(
pStmt
->
pTableMeta
).
rowSize
,
pStmt
->
pTableMeta
,
pDataBuf
,
NULL
,
&
pStmt
->
createTblReq
);
return
insGetDataBlockFromList
(
pStmt
->
pTableBlockHashObj
,
&
uid
,
sizeof
(
pStmt
->
pTableMeta
->
uid
),
TSDB_DEFAULT_PAYLOAD_SIZE
,
sizeof
(
SSubmitBlk
),
getTableInfo
(
pStmt
->
pTableMeta
).
rowSize
,
pStmt
->
pTableMeta
,
pDataBuf
,
NULL
,
&
pStmt
->
createTblReq
);
}
char
tbFName
[
TSDB_TABLE_FNAME_LEN
];
tNameExtractFullName
(
&
pStmt
->
targetTableName
,
tbFName
);
...
...
@@ -1540,8 +1570,9 @@ static int32_t setStmtInfo(SInsertParseContext* pCxt, SVnodeModifOpStmt* pStmt)
memcpy
(
tags
,
&
pCxt
->
tags
,
sizeof
(
pCxt
->
tags
));
SStmtCallback
*
pStmtCb
=
pCxt
->
pComCxt
->
pStmtCb
;
int32_t
code
=
(
*
pStmtCb
->
setInfoFn
)(
pStmtCb
->
pStmt
,
pStmt
->
pTableMeta
,
tags
,
&
pStmt
->
targetTableName
,
pStmt
->
usingTableProcessing
,
pStmt
->
pVgroupsHashObj
,
pStmt
->
pTableBlockHashObj
,
pStmt
->
usingTableName
.
tname
);
int32_t
code
=
(
*
pStmtCb
->
setInfoFn
)(
pStmtCb
->
pStmt
,
pStmt
->
pTableMeta
,
tags
,
&
pStmt
->
targetTableName
,
pStmt
->
usingTableProcessing
,
pStmt
->
pVgroupsHashObj
,
pStmt
->
pTableBlockHashObj
,
pStmt
->
usingTableName
.
tname
);
memset
(
&
pCxt
->
tags
,
0
,
sizeof
(
pCxt
->
tags
));
pStmt
->
pVgroupsHashObj
=
NULL
;
...
...
@@ -1915,13 +1946,11 @@ static int32_t setNextStageInfo(SInsertParseContext* pCxt, SQuery* pQuery, SCata
}
int32_t
parseInsertSql
(
SParseContext
*
pCxt
,
SQuery
**
pQuery
,
SCatalogReq
*
pCatalogReq
,
const
SMetaData
*
pMetaData
)
{
SInsertParseContext
context
=
{
.
pComCxt
=
pCxt
,
SInsertParseContext
context
=
{.
pComCxt
=
pCxt
,
.
msg
=
{.
buf
=
pCxt
->
pMsg
,
.
len
=
pCxt
->
msgLen
},
.
missCache
=
false
,
.
usingDuplicateTable
=
false
,
.
forceUpdate
=
(
NULL
!=
pCatalogReq
?
pCatalogReq
->
forceUpdate
:
false
)
};
.
forceUpdate
=
(
NULL
!=
pCatalogReq
?
pCatalogReq
->
forceUpdate
:
false
)};
int32_t
code
=
initInsertQuery
(
&
context
,
pCatalogReq
,
pMetaData
,
pQuery
);
if
(
TSDB_CODE_SUCCESS
==
code
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录