tsdb.h 10.2 KB
Newer Older
H
more  
hzcheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * 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/>.
 */
H
hzcheng 已提交
15
#ifndef _TD_TSDB_H_
H
Hongze Cheng 已提交
16 17 18 19 20 21
#define _TD_TSDB_H_

#include <pthread.h>
#include <stdbool.h>
#include <stdint.h>

H
hzcheng 已提交
22
#include "taosdef.h"
H
hzcheng 已提交
23
#include "taosmsg.h"
H
hjxilinx 已提交
24
#include "tarray.h"
H
Hongze Cheng 已提交
25 26
#include "tdataformat.h"
#include "tname.h"
H
Haojun Liao 已提交
27
#include "hash.h"
H
Hongze Cheng 已提交
28

H
more  
hzcheng 已提交
29 30 31 32
#ifdef __cplusplus
extern "C" {
#endif

H
Hongze Cheng 已提交
33 34 35
#define TSDB_VERSION_MAJOR 1
#define TSDB_VERSION_MINOR 0

H
hzcheng 已提交
36 37
#define TSDB_INVALID_SUPER_TABLE_ID -1

38
#define TSDB_STATUS_COMMIT_START 1
H
Hongze Cheng 已提交
39
#define TSDB_STATUS_COMMIT_OVER 2
40

H
TD-1027  
Hongze Cheng 已提交
41 42 43 44
// TSDB STATE DEFINITION
#define TSDB_STATE_OK 0x0
#define TSDB_STATE_BAD_FILE 0x1

H
hzcheng 已提交
45 46 47
// --------- TSDB APPLICATION HANDLE DEFINITION
typedef struct {
  void *appH;
J
jtao1735 已提交
48
  void *cqH;
49
  int (*notifyStatus)(void *, int status, int eno);
H
hzcheng 已提交
50
  int (*eventCallBack)(void *);
51
  void *(*cqCreateFunc)(void *handle, uint64_t uid, int32_t sid, const char* dstTable, char *sqlStr, STSchema *pSchema);
H
TD-354  
Hongze Cheng 已提交
52
  void (*cqDropFunc)(void *handle);
H
hzcheng 已提交
53 54
} STsdbAppH;

H
hzcheng 已提交
55 56 57
// --------- TSDB REPOSITORY CONFIGURATION DEFINITION
typedef struct {
  int32_t tsdbId;
S
slguan 已提交
58 59
  int32_t cacheBlockSize;
  int32_t totalBlocks;
H
Hongze Cheng 已提交
60 61
  int32_t daysPerFile;  // day per file sharding policy
  int32_t keep;         // day of data to keep
S
slguan 已提交
62 63
  int32_t keep1;
  int32_t keep2;
H
hzcheng 已提交
64 65
  int32_t minRowsPerFileBlock;  // minimum rows per file block
  int32_t maxRowsPerFileBlock;  // maximum rows per file block
S
slguan 已提交
66 67
  int8_t  precision;
  int8_t  compression;
H
TD-1438  
Hongze Cheng 已提交
68
  int8_t  update;
69
  int8_t  cacheLastRow;
H
hzcheng 已提交
70 71
} STsdbCfg;

T
Tao Liu 已提交
72 73
// --------- TSDB REPOSITORY USAGE STATISTICS
typedef struct {
74 75 76 77
  int64_t totalStorage;  // total bytes occupie
  int64_t compStorage;
  int64_t pointsWritten;  // total data points written
} STsdbStat;
T
Tao Liu 已提交
78

H
TD-353  
Hongze Cheng 已提交
79
typedef void TSDB_REPO_T;  // use void to hide implementation details from outside
80

H
TD-353  
Hongze Cheng 已提交
81
STsdbCfg *tsdbGetCfg(const TSDB_REPO_T *repo);
H
hzcheng 已提交
82 83

// --------- TSDB REPOSITORY DEFINITION
H
TD-353  
Hongze Cheng 已提交
84
int          tsdbCreateRepo(char *rootDir, STsdbCfg *pCfg);
H
TD-353  
Hongze Cheng 已提交
85
int32_t      tsdbDropRepo(char *rootDir);
H
TD-353  
Hongze Cheng 已提交
86
TSDB_REPO_T *tsdbOpenRepo(char *rootDir, STsdbAppH *pAppH);
H
Hongze Cheng 已提交
87
int          tsdbCloseRepo(TSDB_REPO_T *repo, int toCommit);
H
Hongze Cheng 已提交
88
int32_t      tsdbConfigRepo(TSDB_REPO_T *repo, STsdbCfg *pCfg);
H
TD-1027  
Hongze Cheng 已提交
89
int          tsdbGetState(TSDB_REPO_T *repo);
H
hzcheng 已提交
90 91

// --------- TSDB TABLE DEFINITION
H
more  
hzcheng 已提交
92
typedef struct {
93 94
  uint64_t uid;  // the unique table ID
  int32_t  tid;  // the table ID in the repository.
H
more  
hzcheng 已提交
95 96
} STableId;

H
hzcheng 已提交
97 98
// --------- TSDB TABLE configuration
typedef struct {
H
hzcheng 已提交
99 100 101 102 103
  ETableType type;
  char *     name;
  STableId   tableId;
  int32_t    sversion;
  char *     sname;  // super table name
104
  uint64_t   superUid;
H
hzcheng 已提交
105 106 107
  STSchema * schema;
  STSchema * tagSchema;
  SDataRow   tagValues;
H
TD-354  
Hongze Cheng 已提交
108
  char *     sql;
H
hzcheng 已提交
109 110 111 112
} STableCfg;

void tsdbClearTableCfg(STableCfg *config);

113 114
void* tsdbGetTableTagVal(const void* pTable, int32_t colId, int16_t type, int16_t bytes);
char* tsdbGetTableName(void *pTable);
H
Haojun Liao 已提交
115 116 117

#define TSDB_TABLEID(_table) ((STableId*) (_table))

H
Hongze Cheng 已提交
118
STableCfg *tsdbCreateTableCfgFromMsg(SMDCreateTableMsg *pMsg);
119

H
TD-353  
Hongze Cheng 已提交
120 121
int   tsdbCreateTable(TSDB_REPO_T *repo, STableCfg *pCfg);
int   tsdbDropTable(TSDB_REPO_T *pRepo, STableId tableId);
H
Hongze Cheng 已提交
122
int   tsdbUpdateTableTagValue(TSDB_REPO_T *repo, SUpdateTableTagValMsg *pMsg);
123
// TSKEY tsdbGetTableLastKey(TSDB_REPO_T *repo, uint64_t uid);
H
hzcheng 已提交
124

125
uint32_t tsdbGetFileInfo(TSDB_REPO_T *repo, char *name, uint32_t *index, uint32_t eindex, int64_t *size);
126

H
Hongze Cheng 已提交
127
// the TSDB repository info
H
more  
hzcheng 已提交
128
typedef struct STsdbRepoInfo {
H
more  
hzcheng 已提交
129
  STsdbCfg tsdbCfg;
S
TD-1919  
Shengliang Guan 已提交
130
  uint64_t version;            // version of the repository
H
Hongze Cheng 已提交
131 132 133
  int64_t  tsdbTotalDataSize;  // the original inserted data size
  int64_t  tsdbTotalDiskSize;  // the total disk size taken by this TSDB repository
  // TODO: Other informations to add
H
more  
hzcheng 已提交
134
} STsdbRepoInfo;
H
TD-353  
Hongze Cheng 已提交
135
STsdbRepoInfo *tsdbGetStatus(TSDB_REPO_T *pRepo);
H
hzcheng 已提交
136

H
Hongze Cheng 已提交
137 138 139
// the meter information report structure
typedef struct {
  STableCfg tableCfg;
S
TD-1919  
Shengliang Guan 已提交
140
  uint64_t  version;
H
more  
hzcheng 已提交
141 142
  int64_t   tableTotalDataSize;  // In bytes
  int64_t   tableTotalDiskSize;  // In bytes
H
Hongze Cheng 已提交
143
} STableInfo;
H
TD-353  
Hongze Cheng 已提交
144
STableInfo *tsdbGetTableInfo(TSDB_REPO_T *pRepo, STableId tid);
H
Hongze Cheng 已提交
145 146 147 148 149 150 151 152 153

// -- FOR INSERT DATA
/**
 * Insert data to a table in a repository
 * @param pRepo the TSDB repository handle
 * @param pData the data to insert (will give a more specific description)
 *
 * @return the number of points inserted, -1 for failure and the error number is set
 */
H
Hongze Cheng 已提交
154
int32_t tsdbInsertData(TSDB_REPO_T *repo, SSubmitMsg *pMsg, SShellSubmitRspMsg *pRsp);
H
Hongze Cheng 已提交
155 156 157

// -- FOR QUERY TIME SERIES DATA

H
hzcheng 已提交
158
typedef void *TsdbQueryHandleT;  // Use void to hide implementation details
H
Hongze Cheng 已提交
159 160

// query condition to build vnode iterator
H
hjxilinx 已提交
161
typedef struct STsdbQueryCond {
H
Hongze Cheng 已提交
162 163 164 165
  STimeWindow  twindow;
  int32_t      order;  // desc|asc order to iterate the data block
  int32_t      numOfCols;
  SColumnInfo *colList;
H
hjxilinx 已提交
166
} STsdbQueryCond;
H
Hongze Cheng 已提交
167

H
Haojun Liao 已提交
168 169 170 171 172 173
typedef struct SMemRef {
  int32_t  ref;
  void    *mem;
  void    *imem;
} SMemRef;

H
hjxilinx 已提交
174 175
typedef struct SDataBlockInfo {
  STimeWindow window;
176
  int32_t     rows;
H
hjxilinx 已提交
177 178
  int32_t     numOfCols;
  int64_t     uid;
H
hjxilinx 已提交
179
  int32_t     tid;
H
hjxilinx 已提交
180
} SDataBlockInfo;
H
Hongze Cheng 已提交
181

182
typedef struct {
H
Haojun Liao 已提交
183 184 185 186 187 188
  void  *pTable;
  TSKEY  lastKey;
} STableKeyInfo;

typedef struct {
  size_t    numOfTables;
H
Haojun Liao 已提交
189
  SArray   *pGroupList;
H
Haojun Liao 已提交
190
  SHashObj *map;         // speedup acquire the tableQueryInfo by table uid
191 192
} STableGroupInfo;

H
Hongze Cheng 已提交
193 194
/**
 * Get the data block iterator, starting from position according to the query condition
H
hjxilinx 已提交
195 196 197
 *
 * @param tsdb       tsdb handle
 * @param pCond      query condition, including time window, result set order, and basic required columns for each block
H
Haojun Liao 已提交
198 199
 * @param tableInfoGroup  table object list in the form of set, grouped into different sets according to the
 *                        group by condition
H
Haojun Liao 已提交
200
 * @param qinfo      query info handle from query processor
H
Hongze Cheng 已提交
201 202
 * @return
 */
H
Haojun Liao 已提交
203
TsdbQueryHandleT *tsdbQueryTables(TSDB_REPO_T *tsdb, STsdbQueryCond *pCond, STableGroupInfo *tableInfoGroup, void *qinfo, SMemRef* pRef);
H
Hongze Cheng 已提交
204 205

/**
H
hjxilinx 已提交
206 207 208 209
 * Get the last row of the given query time window for all the tables in STableGroupInfo object.
 * Note that only one data block with only row will be returned while invoking retrieve data block function for
 * all tables in this group.
 *
H
Haojun Liao 已提交
210 211 212
 * @param tsdb   tsdb handle
 * @param pCond  query condition, including time window, result set order, and basic required columns for each block
 * @param tableInfo  table list.
H
hjxilinx 已提交
213 214
 * @return
 */
H
Haojun Liao 已提交
215
TsdbQueryHandleT tsdbQueryLastRow(TSDB_REPO_T *tsdb, STsdbQueryCond *pCond, STableGroupInfo *tableInfo, void *qinfo, SMemRef* pRef);
H
hjxilinx 已提交
216

217 218 219 220 221 222
/**
 * get the queried table object list
 * @param pHandle
 * @return
 */
SArray* tsdbGetQueriedTableList(TsdbQueryHandleT *pHandle);
223

224 225 226 227 228 229 230 231
/**
 * get the group list according to table id from client
 * @param tsdb
 * @param pCond
 * @param groupList
 * @param qinfo
 * @return
 */
H
Hongze Cheng 已提交
232
TsdbQueryHandleT tsdbQueryRowsInExternalWindow(TSDB_REPO_T *tsdb, STsdbQueryCond *pCond, STableGroupInfo *groupList,
H
Haojun Liao 已提交
233
                                               void *qinfo, SMemRef* pRef);
234

H
hjxilinx 已提交
235 236 237
/**
 * move to next block if exists
 *
H
hjxilinx 已提交
238
 * @param pQueryHandle
H
Hongze Cheng 已提交
239 240
 * @return
 */
H
hzcheng 已提交
241
bool tsdbNextDataBlock(TsdbQueryHandleT *pQueryHandle);
H
Hongze Cheng 已提交
242 243

/**
H
hjxilinx 已提交
244
 * Get current data block information
H
Hongze Cheng 已提交
245 246
 *
 * @param pQueryHandle
H
Haojun Liao 已提交
247
 * @param pBlockInfo
H
Hongze Cheng 已提交
248 249
 * @return
 */
H
Haojun Liao 已提交
250
void tsdbRetrieveDataBlockInfo(TsdbQueryHandleT *pQueryHandle, SDataBlockInfo* pBlockInfo);
H
Hongze Cheng 已提交
251 252

/**
H
hjxilinx 已提交
253 254 255 256 257 258 259
 *
 * Get the pre-calculated information w.r.t. current data block.
 *
 * In case of data block in cache, the pBlockStatis will always be NULL.
 * If a block is not completed loaded from disk, the pBlockStatis will be NULL.

 * @pBlockStatis the pre-calculated value for current data blocks. if the block is a cache block, always return 0
H
Hongze Cheng 已提交
260 261
 * @return
 */
H
hzcheng 已提交
262
int32_t tsdbRetrieveDataBlockStatisInfo(TsdbQueryHandleT *pQueryHandle, SDataStatis **pBlockStatis);
H
Hongze Cheng 已提交
263 264

/**
H
hjxilinx 已提交
265
 *
H
hjxilinx 已提交
266 267 268
 * The query condition with primary timestamp is passed to iterator during its constructor function,
 * the returned data block must be satisfied with the time window condition in any cases,
 * which means the SData data block is not actually the completed disk data blocks.
H
Hongze Cheng 已提交
269
 *
H
hjxilinx 已提交
270 271
 * @param pQueryHandle      query handle
 * @param pColumnIdList     required data columns id list
H
Hongze Cheng 已提交
272 273
 * @return
 */
H
hjxilinx 已提交
274
SArray *tsdbRetrieveDataBlock(TsdbQueryHandleT *pQueryHandle, SArray *pColumnIdList);
H
Hongze Cheng 已提交
275 276

/**
277
 * Get the qualified table id for a super table according to the tag query expression.
H
Hongze Cheng 已提交
278 279 280
 * @param stableid. super table sid
 * @param pTagCond. tag query condition
 */
H
Haojun Liao 已提交
281
int32_t tsdbQuerySTableByTagCond(TSDB_REPO_T *tsdb, uint64_t uid, TSKEY key, const char *pTagCond, size_t len,
H
Hongze Cheng 已提交
282 283
                                 int16_t tagNameRelType, const char *tbnameCond, STableGroupInfo *pGroupList,
                                 SColIndex *pColIndex, int32_t numOfCols);
H
hjxilinx 已提交
284

285 286 287 288
/**
 * destory the created table group list, which is generated by tag query
 * @param pGroupList
 */
H
Haojun Liao 已提交
289
void tsdbDestroyTableGroup(STableGroupInfo *pGroupList);
290

H
hjxilinx 已提交
291 292 293 294 295 296 297 298
/**
 * create the table group result including only one table, used to handle the normal table query
 *
 * @param tsdb        tsdbHandle
 * @param uid         table uid
 * @param pGroupInfo  the generated result
 * @return
 */
H
Haojun Liao 已提交
299
int32_t tsdbGetOneTableGroup(TSDB_REPO_T *tsdb, uint64_t uid, TSKEY startKey, STableGroupInfo *pGroupInfo);
H
Hongze Cheng 已提交
300

301 302 303 304 305 306 307 308 309
/**
 *
 * @param tsdb
 * @param pTableIdList
 * @param pGroupInfo
 * @return
 */
int32_t tsdbGetTableGroupFromIdList(TSDB_REPO_T* tsdb, SArray* pTableIdList, STableGroupInfo* pGroupInfo);

310 311 312 313
/**
 * clean up the query handle
 * @param queryHandle
 */
H
hzcheng 已提交
314
void tsdbCleanupQueryHandle(TsdbQueryHandleT queryHandle);
315

T
Tao Liu 已提交
316 317 318 319 320 321 322 323 324
/**
 * get the statistics of repo usage
 * @param repo. point to the tsdbrepo
 * @param totalPoints. total data point written
 * @param totalStorage. total bytes took by the tsdb
 * @param compStorage. total bytes took by the tsdb after compressed
 */
void tsdbReportStat(void *repo, int64_t *totalPoints, int64_t *totalStorage, int64_t *compStorage);

325
int  tsdbInitCommitQueue();
H
Hongze Cheng 已提交
326
void tsdbDestroyCommitQueue();
H
Hongze Cheng 已提交
327
int  tsdbSyncCommit(TSDB_REPO_T *repo);
S
TD-2072  
Shengliang Guan 已提交
328
void tsdbIncCommitRef(int vgId);
S
TD-2072  
Shengliang Guan 已提交
329
void tsdbDecCommitRef(int vgId);
H
Hongze Cheng 已提交
330

H
more  
hzcheng 已提交
331 332 333 334
#ifdef __cplusplus
}
#endif

陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
335
#endif  // _TD_TSDB_H_