tsdbTests.cpp 5.3 KB
Newer Older
H
hzcheng 已提交
1 2
#include <gtest/gtest.h>
#include <stdlib.h>
H
TD-34  
hzcheng 已提交
3
#include <sys/time.h>
H
hzcheng 已提交
4

H
hzcheng 已提交
5
#include "dataformat.h"
H
TD-34  
hzcheng 已提交
6
#include "tsdbMain.h"
H
TD-27  
hzcheng 已提交
7

H
TD-34  
hzcheng 已提交
8 9 10 11 12 13
double getCurTime() {
  struct timeval tv;
  gettimeofday(&tv, NULL);
  return tv.tv_sec + tv.tv_usec * 1E-6;
}

H
TD-34  
hzcheng 已提交
14
TEST(TsdbTest, DISABLED_tableEncodeDecode) {
H
TD-34  
hzcheng 已提交
15
// TEST(TsdbTest, tableEncodeDecode) {
H
TD-27  
hzcheng 已提交
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
  STable *pTable = (STable *)malloc(sizeof(STable));

  pTable->type = TSDB_NORMAL_TABLE;
  pTable->tableId.uid = 987607499877672L;
  pTable->tableId.tid = 0;
  pTable->superUid = -1;
  pTable->sversion = 0;
  pTable->tagSchema = NULL;
  pTable->tagVal = NULL;
  int nCols = 5;
  STSchema *schema = tdNewSchema(nCols);

  for (int i = 0; i < nCols; i++) {
    if (i == 0) {
      tdSchemaAppendCol(schema, TSDB_DATA_TYPE_TIMESTAMP, i, -1);
    } else {
      tdSchemaAppendCol(schema, TSDB_DATA_TYPE_INT, i, -1);
    }
  }

  pTable->schema = schema;

  int bufLen = 0;
  void *buf = tsdbEncodeTable(pTable, &bufLen);

  STable *tTable = tsdbDecodeTable(buf, bufLen);

  ASSERT_EQ(pTable->type, tTable->type);
  ASSERT_EQ(pTable->tableId.uid, tTable->tableId.uid);
  ASSERT_EQ(pTable->tableId.tid, tTable->tableId.tid);
  ASSERT_EQ(pTable->superUid, tTable->superUid);
  ASSERT_EQ(pTable->sversion, tTable->sversion);
  ASSERT_EQ(memcmp(pTable->schema, tTable->schema, sizeof(STSchema) + sizeof(STColumn) * nCols), 0);
}
H
hzcheng 已提交
50

H
TD-34  
hzcheng 已提交
51 52
// TEST(TsdbTest, DISABLED_createRepo) {
TEST(TsdbTest, createRepo) {
H
hzcheng 已提交
53
  STsdbCfg config;
H
hzcheng 已提交
54

H
hzcheng 已提交
55
  // 1. Create a tsdb repository
H
hzcheng 已提交
56 57
  tsdbSetDefaultCfg(&config);
  tsdb_repo_t *pRepo = tsdbCreateRepo("/home/ubuntu/work/ttest/vnode0", &config, NULL);
H
hzcheng 已提交
58 59
  ASSERT_NE(pRepo, nullptr);

H
hzcheng 已提交
60 61 62
  // 2. Create a normal table
  STableCfg tCfg;
  ASSERT_EQ(tsdbInitTableCfg(&tCfg, TSDB_SUPER_TABLE, 987607499877672L, 0), -1);
S
[TD-10]  
slguan 已提交
63
  ASSERT_EQ(tsdbInitTableCfg(&tCfg, TSDB_NORMAL_TABLE, 987607499877672L, 0), 0);
H
hzcheng 已提交
64

H
hzcheng 已提交
65
  int       nCols = 5;
H
hzcheng 已提交
66 67
  STSchema *schema = tdNewSchema(nCols);

H
hzcheng 已提交
68
  for (int i = 0; i < nCols; i++) {
H
hzcheng 已提交
69 70 71 72 73 74
    if (i == 0) {
      tdSchemaAppendCol(schema, TSDB_DATA_TYPE_TIMESTAMP, i, -1);
    } else {
      tdSchemaAppendCol(schema, TSDB_DATA_TYPE_INT, i, -1);
    }
  }
H
hzcheng 已提交
75

H
hzcheng 已提交
76
  tsdbTableSetSchema(&tCfg, schema, true);
H
hzcheng 已提交
77

H
hzcheng 已提交
78
  tsdbCreateTable(pRepo, &tCfg);
H
hzcheng 已提交
79

H
hzcheng 已提交
80
  // // 3. Loop to write some simple data
H
TD-34  
hzcheng 已提交
81 82
  int nRows = 1;
  int rowsPerSubmit = 1;
H
more  
hzcheng 已提交
83 84
  int64_t start_time = 1584081000000;

H
TD-34  
hzcheng 已提交
85 86
  SSubmitMsg *pMsg = (SSubmitMsg *)malloc(sizeof(SSubmitMsg) + sizeof(SSubmitBlk) + tdMaxRowBytesFromSchema(schema) * rowsPerSubmit);

H
TD-34  
hzcheng 已提交
87 88
  double stime = getCurTime();

H
TD-34  
hzcheng 已提交
89
  for (int k = 0; k < nRows/rowsPerSubmit; k++) {
H
TD-34  
hzcheng 已提交
90
    memset((void *)pMsg, 0, sizeof(SSubmitMsg));
H
TD-34  
hzcheng 已提交
91
    SSubmitBlk *pBlock = pMsg->blocks;
H
TD-34  
hzcheng 已提交
92 93
    pBlock->uid = 987607499877672L;
    pBlock->tid = 0;
H
TD-34  
hzcheng 已提交
94 95 96
    pBlock->sversion = 0;
    pBlock->len = 0;
    for (int i = 0; i < rowsPerSubmit; i++) {
H
TD-34  
hzcheng 已提交
97
      // start_time += 1000;
H
TD-34  
hzcheng 已提交
98
      start_time += 1000;
H
TD-34  
hzcheng 已提交
99 100 101 102 103 104 105 106 107 108 109 110
      SDataRow row = (SDataRow)(pBlock->data + pBlock->len);
      tdInitDataRow(row, schema);

      for (int j = 0; j < schemaNCols(schema); j++) {
        if (j == 0) {  // Just for timestamp
          tdAppendColVal(row, (void *)(&start_time), schemaColAt(schema, j));
        } else {  // For int
          int val = 10;
          tdAppendColVal(row, (void *)(&val), schemaColAt(schema, j));
        }
      }
      pBlock->len += dataRowLen(row);
H
more  
hzcheng 已提交
111
    }
H
TD-34  
hzcheng 已提交
112 113 114
    pMsg->length = pMsg->length + sizeof(SSubmitBlk) + pBlock->len;
    pMsg->numOfBlocks = 1;

H
TD-34  
hzcheng 已提交
115 116 117 118 119 120 121 122 123 124 125
    pBlock->len = htonl(pBlock->len);
    pBlock->numOfRows = htonl(pBlock->numOfRows);
    pBlock->uid = htobe64(pBlock->uid);
    pBlock->tid = htonl(pBlock->tid);

    pBlock->sversion = htonl(pBlock->sversion);
    pBlock->padding = htonl(pBlock->padding);

    pMsg->length = htonl(pMsg->length);
    pMsg->numOfBlocks = htonl(pMsg->numOfBlocks);
    pMsg->compressed = htonl(pMsg->numOfBlocks);
H
more  
hzcheng 已提交
126

H
TD-34  
hzcheng 已提交
127
    tsdbInsertData(pRepo, pMsg);
H
more  
hzcheng 已提交
128
  }
H
hzcheng 已提交
129

H
TD-34  
hzcheng 已提交
130 131
  double etime = getCurTime();

H
TD-34  
hzcheng 已提交
132 133 134
  void *ptr = malloc(150000);
  free(ptr);

H
TD-34  
hzcheng 已提交
135 136
  printf("Spent %f seconds to write %d records\n", etime - stime, nRows);

H
TD-34  
hzcheng 已提交
137
  tsdbCloseRepo(pRepo);
H
TD-34  
hzcheng 已提交
138

H
hzcheng 已提交
139 140
}

H
TD-34  
hzcheng 已提交
141 142
// TEST(TsdbTest, DISABLED_openRepo) {
TEST(TsdbTest, openRepo) {
H
TD-34  
hzcheng 已提交
143
  tsdb_repo_t *repo = tsdbOpenRepo("/home/ubuntu/work/ttest/vnode0");
H
TD-34  
hzcheng 已提交
144 145 146 147
  ASSERT_NE(repo, nullptr);

  STsdbRepo *pRepo = (STsdbRepo *)repo;

H
TD-34  
hzcheng 已提交
148
  SFileGroup *pGroup = tsdbSearchFGroup(pRepo->tsdbFileH, 1833);
H
TD-34  
hzcheng 已提交
149 150 151 152 153 154 155 156

  for (int type = TSDB_FILE_TYPE_HEAD; type < TSDB_FILE_TYPE_MAX; type++) {
    tsdbOpenFile(&pGroup->files[type], O_RDONLY);
  }

  SCompIdx *pIdx = (SCompIdx *)calloc(pRepo->config.maxTables, sizeof(SCompIdx));
  tsdbLoadCompIdx(pGroup, (void *)pIdx, pRepo->config.maxTables);

H
TD-34  
hzcheng 已提交
157
  SCompInfo *pCompInfo = (SCompInfo *)malloc(sizeof(SCompInfo) + pIdx[1].len);
H
TD-34  
hzcheng 已提交
158

H
TD-34  
hzcheng 已提交
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
  tsdbLoadCompBlocks(pGroup, &pIdx[0], (void *)pCompInfo);

  int blockIdx = 0;
  SCompBlock *pBlock = &(pCompInfo->blocks[blockIdx]);

  SCompData *pCompData = (SCompData *)malloc(sizeof(SCompData) + sizeof(SCompCol) * pBlock->numOfCols);

  tsdbLoadCompCols(&pGroup->files[TSDB_FILE_TYPE_DATA], pBlock, (void *)pCompData);

  STable *pTable = tsdbGetTableByUid(pRepo->tsdbMeta, pCompData->uid);
  SDataCols *pDataCols = tdNewDataCols(tdMaxRowBytesFromSchema(pTable->schema), 5, 10);
  tdInitDataCols(pDataCols, pTable->schema);

  tsdbLoadDataBlock(&pGroup->files[TSDB_FILE_TYPE_DATA], pBlock, 1, pDataCols, pCompData);

H
TD-34  
hzcheng 已提交
174 175 176

  int k = 0;

H
TD-34  
hzcheng 已提交
177 178
}

H
TD-34  
hzcheng 已提交
179
TEST(TsdbTest, DISABLED_createFileGroup) {
H
TD-34  
hzcheng 已提交
180 181
  SFileGroup fGroup;

H
TD-34  
hzcheng 已提交
182
  // ASSERT_EQ(tsdbCreateFileGroup("/home/ubuntu/work/ttest/vnode0/data", 1820, &fGroup, 1000), 0);
H
TD-34  
hzcheng 已提交
183 184

  int k = 0;
H
TD-27  
hzcheng 已提交
185
}