vnodeOpen.c 5.7 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 "vnd.h"
H
save  
Hongze Cheng 已提交
17

H
Hongze Cheng 已提交
18
int vnodeCreate(const char *path, SVnodeCfg *pCfg, STfs *pTfs) {
H
Hongze Cheng 已提交
19 20
  SVnodeInfo info = {0};
  char       dir[TSDB_FILENAME_LEN];
H
Hongze Cheng 已提交
21

H
Hongze Cheng 已提交
22 23 24 25
  // TODO: check if directory exists

  // check config
  if (vnodeCheckCfg(pCfg) < 0) {
H
Hongze Cheng 已提交
26
    vError("vgId:%d failed to create vnode since: %s", pCfg->vgId, tstrerror(terrno));
H
Hongze Cheng 已提交
27 28 29 30
    return -1;
  }

  // create vnode env
H
Hongze Cheng 已提交
31
  if (tfsMkdir(pTfs, path) < 0) {
H
Hongze Cheng 已提交
32
    vError("vgId:%d failed to create vnode since: %s", pCfg->vgId, tstrerror(terrno));
H
Hongze Cheng 已提交
33 34 35
    return -1;
  }

H
Hongze Cheng 已提交
36
  snprintf(dir, TSDB_FILENAME_LEN, "%s%s%s", tfsGetPrimaryPath(pTfs), TD_DIRSEP, path);
H
Hongze Cheng 已提交
37
  info.config = *pCfg;
M
Minghao Li 已提交
38 39
  info.state.committed = -1;
  info.state.applied = -1;
H
Hongze Cheng 已提交
40 41

  if (vnodeSaveInfo(dir, &info) < 0 || vnodeCommitInfo(dir, &info) < 0) {
H
Hongze Cheng 已提交
42
    vError("vgId:%d failed to save vnode config since %s", pCfg->vgId, tstrerror(terrno));
H
Hongze Cheng 已提交
43 44 45
    return -1;
  }

H
Hongze Cheng 已提交
46
  vInfo("vgId:%d vnode is created", pCfg->vgId);
H
Hongze Cheng 已提交
47

H
Hongze Cheng 已提交
48 49 50
  return 0;
}

H
refact  
Hongze Cheng 已提交
51 52
void vnodeDestroy(const char *path, STfs *pTfs) { tfsRmdir(pTfs, path); }

H
Hongze Cheng 已提交
53 54 55 56
SVnode *vnodeOpen(const char *path, STfs *pTfs, SMsgCb msgCb) {
  SVnode    *pVnode = NULL;
  SVnodeInfo info = {0};
  char       dir[TSDB_FILENAME_LEN];
H
Hongze Cheng 已提交
57
  char       tdir[TSDB_FILENAME_LEN * 2];
H
Hongze Cheng 已提交
58
  int        ret;
H
more  
Hongze Cheng 已提交
59

H
Hongze Cheng 已提交
60 61 62 63 64 65
  snprintf(dir, TSDB_FILENAME_LEN, "%s%s%s", tfsGetPrimaryPath(pTfs), TD_DIRSEP, path);

  // load vnode info
  ret = vnodeLoadInfo(dir, &info);
  if (ret < 0) {
    vError("failed to open vnode from %s since %s", path, tstrerror(terrno));
H
more  
Hongze Cheng 已提交
66 67 68
    return NULL;
  }

H
Hongze Cheng 已提交
69
  // create handle
H
Hongze Cheng 已提交
70
  pVnode = (SVnode *)taosMemoryCalloc(1, sizeof(*pVnode) + strlen(path) + 1);
H
more  
Hongze Cheng 已提交
71
  if (pVnode == NULL) {
H
Hongze Cheng 已提交
72
    terrno = TSDB_CODE_OUT_OF_MEMORY;
H
Hongze Cheng 已提交
73
    vError("vgId:%d failed to open vnode since %s", info.config.vgId, tstrerror(terrno));
H
more  
Hongze Cheng 已提交
74 75 76
    return NULL;
  }

H
Hongze Cheng 已提交
77 78
  pVnode->path = (char *)&pVnode[1];
  strcpy(pVnode->path, path);
H
Hongze Cheng 已提交
79
  pVnode->config = info.config;
H
Hongze Cheng 已提交
80 81
  pVnode->state.committed = info.state.committed;
  pVnode->state.applied = info.state.committed;
H
Hongze Cheng 已提交
82 83 84 85 86
  pVnode->pTfs = pTfs;
  pVnode->msgCb = msgCb;

  tsem_init(&(pVnode->canCommit), 0, 1);

H
Hongze Cheng 已提交
87
  // open buffer pool
H
Hongze Cheng 已提交
88
  if (vnodeOpenBufPool(pVnode, pVnode->config.isHeap ? 0 : pVnode->config.szBuf / 3) < 0) {
H
Hongze Cheng 已提交
89
    vError("vgId:%d failed to open vnode buffer pool since %s", TD_VID(pVnode), tstrerror(terrno));
H
Hongze Cheng 已提交
90
    goto _err;
H
more  
Hongze Cheng 已提交
91 92
  }

H
Hongze Cheng 已提交
93
  // open meta
H
Hongze Cheng 已提交
94
  if (metaOpen(pVnode, &pVnode->pMeta) < 0) {
H
Hongze Cheng 已提交
95
    vError("vgId:%d failed to open vnode meta since %s", TD_VID(pVnode), tstrerror(terrno));
H
Hongze Cheng 已提交
96
    goto _err;
H
refact  
Hongze Cheng 已提交
97 98
  }

H
Hongze Cheng 已提交
99
  // open tsdb
C
Cary Xu 已提交
100
  if (!vnodeIsRollup(pVnode) && tsdbOpen(pVnode, &VND_TSDB(pVnode), VNODE_TSDB_DIR, NULL) < 0) {
101 102 103 104 105 106
    vError("vgId:%d failed to open vnode tsdb since %s", TD_VID(pVnode), tstrerror(terrno));
    goto _err;
  }

  // open sma
  if (smaOpen(pVnode)) {
C
Cary Xu 已提交
107
    vError("vgId:%d failed to open vnode sma since %s", TD_VID(pVnode), tstrerror(terrno));
108
    goto _err;
H
refact  
Hongze Cheng 已提交
109 110
  }

H
Hongze Cheng 已提交
111 112
  // open wal
  sprintf(tdir, "%s%s%s", dir, TD_DIRSEP, VNODE_WAL_DIR);
wafwerar's avatar
wafwerar 已提交
113
  taosRealPath(tdir, NULL, sizeof(tdir));
H
Hongze Cheng 已提交
114
  pVnode->pWal = walOpen(tdir, &(pVnode->config.walCfg));
H
merge  
Hongze Cheng 已提交
115
  if (pVnode->pWal == NULL) {
H
Hongze Cheng 已提交
116
    vError("vgId:%d failed to open vnode wal since %s", TD_VID(pVnode), tstrerror(terrno));
H
Hongze Cheng 已提交
117
    goto _err;
H
merge  
Hongze Cheng 已提交
118
  }
H
refact  
Hongze Cheng 已提交
119

H
Hongze Cheng 已提交
120 121
  // open tq
  sprintf(tdir, "%s%s%s", dir, TD_DIRSEP, VNODE_TQ_DIR);
wafwerar's avatar
wafwerar 已提交
122
  taosRealPath(tdir, NULL, sizeof(tdir));
L
Liu Jicong 已提交
123
  pVnode->pTq = tqOpen(tdir, pVnode, pVnode->pWal);
L
Liu Jicong 已提交
124
  if (pVnode->pTq == NULL) {
H
Hongze Cheng 已提交
125
    vError("vgId:%d failed to open vnode tq since %s", TD_VID(pVnode), tstrerror(terrno));
H
Hongze Cheng 已提交
126
    goto _err;
L
Liu Jicong 已提交
127 128
  }

H
Hongze Cheng 已提交
129
  // open query
D
dapan1121 已提交
130
  if (vnodeQueryOpen(pVnode)) {
H
Hongze Cheng 已提交
131
    vError("vgId:%d failed to open vnode query since %s", TD_VID(pVnode), tstrerror(terrno));
132
    terrno = TSDB_CODE_OUT_OF_MEMORY;
H
Hongze Cheng 已提交
133
    goto _err;
D
dapan1121 已提交
134 135
  }

H
Hongze Cheng 已提交
136 137
  // vnode begin
  if (vnodeBegin(pVnode) < 0) {
H
Hongze Cheng 已提交
138
    vError("vgId:%d failed to begin since %s", TD_VID(pVnode), tstrerror(terrno));
139
    terrno = TSDB_CODE_OUT_OF_MEMORY;
H
Hongze Cheng 已提交
140 141 142
    goto _err;
  }

143 144
  // open sync
  if (vnodeSyncOpen(pVnode, dir)) {
H
Hongze Cheng 已提交
145
    vError("vgId:%d failed to open sync since %s", TD_VID(pVnode), tstrerror(terrno));
146
    terrno = TSDB_CODE_OUT_OF_MEMORY;
H
Hongze Cheng 已提交
147 148 149 150 151 152 153 154 155
    goto _err;
  }

  return pVnode;

_err:
  if (pVnode->pQuery) vnodeQueryClose(pVnode);
  if (pVnode->pTq) tqClose(pVnode->pTq);
  if (pVnode->pWal) walClose(pVnode->pWal);
156
  if (pVnode->pTsdb) tsdbClose(&pVnode->pTsdb);
H
Hongze Cheng 已提交
157
  if (pVnode->pMeta) metaClose(pVnode->pMeta);
158 159
  if (pVnode->pSma) smaClose(pVnode->pSma);

H
Hongze Cheng 已提交
160 161 162
  tsem_destroy(&(pVnode->canCommit));
  taosMemoryFree(pVnode);
  return NULL;
H
refact  
Hongze Cheng 已提交
163 164
}

H
Hongze Cheng 已提交
165
void vnodeClose(SVnode *pVnode) {
H
refact  
Hongze Cheng 已提交
166
  if (pVnode) {
H
Hongze Cheng 已提交
167
    vnodeCommit(pVnode);
M
Minghao Li 已提交
168
    vnodeSyncClose(pVnode);
D
dapan1121 已提交
169
    vnodeQueryClose(pVnode);
H
Hongze Cheng 已提交
170 171
    walClose(pVnode->pWal);
    tqClose(pVnode->pTq);
172 173
    if (pVnode->pTsdb) tsdbClose(&pVnode->pTsdb);
    smaClose(pVnode->pSma);
H
Hongze Cheng 已提交
174 175 176 177 178
    metaClose(pVnode->pMeta);
    vnodeCloseBufPool(pVnode);
    // destroy handle
    tsem_destroy(&(pVnode->canCommit));
    taosMemoryFree(pVnode);
H
refact  
Hongze Cheng 已提交
179
  }
L
Liu Jicong 已提交
180
}
H
Hongze Cheng 已提交
181

182 183 184 185 186 187 188 189
// start the sync timer after the queue is ready
int32_t vnodeStart(SVnode *pVnode) {
  vnodeSyncStart(pVnode);
  return 0;
}

void vnodeStop(SVnode *pVnode) {}

H
Hongze Cheng 已提交
190 191 192
int64_t vnodeGetSyncHandle(SVnode *pVnode) { return pVnode->sync; }

void vnodeGetSnapshot(SVnode *pVnode, SSnapshot *pSnapshot) { pSnapshot->lastApplyIndex = pVnode->state.committed; }