vnodeCfg.c 1.5 KB
Newer Older
H
save  
Hongze Cheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * 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
Hongze Cheng 已提交
16
#include "vnodeInt.h"
H
save  
Hongze Cheng 已提交
17

H
Hongze Cheng 已提交
18 19 20 21 22 23 24 25 26
const SVnodeCfg vnodeCfgDefault = {
    .wsize = 96 * 1024 * 1024, .ssize = 1 * 1024 * 1024, .lsize = 1024, .walCfg = {.level = TAOS_WAL_WRITE}};

int vnodeCheckCfg(const SVnodeCfg *pCfg) {
  // TODO
  return 0;
}

#if 1  //======================================================================
H
refact  
Hongze Cheng 已提交
27 28
void vnodeOptionsCopy(SVnodeCfg *pDest, const SVnodeCfg *pSrc) {
  memcpy((void *)pDest, (void *)pSrc, sizeof(SVnodeCfg));
D
dapan1121 已提交
29 30
}

D
dapan1121 已提交
31
int vnodeValidateTableHash(SVnodeCfg *pVnodeOptions, char *tableFName) {
D
dapan1121 已提交
32
  uint32_t hashValue = 0;
H
Hongze Cheng 已提交
33

D
dapan1121 已提交
34 35
  switch (pVnodeOptions->hashMethod) {
    default:
D
dapan1121 已提交
36
      hashValue = MurmurHash3_32(tableFName, strlen(tableFName));
D
dapan1121 已提交
37 38 39
      break;
  }

H
Hongze Cheng 已提交
40
    // TODO OPEN THIS !!!!!!!
D
dapan1121 已提交
41
#if 0
D
dapan1121 已提交
42 43 44 45
  if (hashValue < pVnodeOptions->hashBegin || hashValue > pVnodeOptions->hashEnd) {
    terrno = TSDB_CODE_VND_HASH_MISMATCH;
    return TSDB_CODE_VND_HASH_MISMATCH;
  }
D
dapan1121 已提交
46
#endif
D
dapan1121 已提交
47 48 49

  return TSDB_CODE_SUCCESS;
}
H
Hongze Cheng 已提交
50 51

#endif