TDengine/source/dnode/vnode/src/vnd/vnodeInt.c

42 lines
1.3 KiB
C
Raw Normal View History

2021-09-22 08:15:20 +00:00
/*
* 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
2022-01-14 06:53:08 +00:00
#include "vnd.h"
2022-02-10 08:26:56 +00:00
#include "sync.h"
2022-01-14 06:24:25 +00:00
// #include "vnodeInt.h"
2021-10-04 09:44:39 +00:00
2021-11-01 11:49:44 +00:00
int32_t vnodeAlter(SVnode *pVnode, const SVnodeCfg *pCfg) { return 0; }
2021-12-21 08:59:26 +00:00
2021-11-01 11:49:44 +00:00
int32_t vnodeCompact(SVnode *pVnode) { return 0; }
2021-12-21 08:59:26 +00:00
2021-11-01 11:49:44 +00:00
int32_t vnodeSync(SVnode *pVnode) { return 0; }
2021-10-26 02:19:36 +00:00
2022-02-10 08:26:56 +00:00
int32_t vnodeGetLoad(SVnode *pVnode, SVnodeLoad *pLoad) {
pLoad->vgId = pVnode->vgId;
pLoad->role = TAOS_SYNC_STATE_LEADER;
pLoad->numOfTables = 500;
pLoad->numOfTimeSeries = 400;
pLoad->totalStorage = 300;
pLoad->compStorage = 200;
pLoad->pointsWritten = 100;
return 0;
}
2021-11-04 06:06:29 +00:00
2021-12-21 08:59:26 +00:00
int vnodeProcessSyncReq(SVnode *pVnode, SRpcMsg *pMsg, SRpcMsg **pRsp) {
vInfo("sync message is processed");
return 0;
2021-11-04 06:06:29 +00:00
}