walMgmt.c 7.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * 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
#include "os.h"
#include "taoserror.h"
S
Shengliang Guan 已提交
19
#include "tref.h"
S
TD-1895  
Shengliang Guan 已提交
20
#include "tfile.h"
L
Liu Jicong 已提交
21
#include "compare.h"
22
#include "walInt.h"
S
Shengliang Guan 已提交
23

L
Liu Jicong 已提交
24 25 26 27 28
//internal
int32_t walGetNextFile(SWal *pWal, int64_t *nextFileId);
int32_t walGetOldFile(SWal *pWal, int64_t curFileId, int32_t minDiff, int64_t *oldFileId);
int32_t walGetNewFile(SWal *pWal, int64_t *newFileId);

S
Shengliang Guan 已提交
29
typedef struct {
L
Liu Jicong 已提交
30
  int32_t   refSetId;
L
Liu Jicong 已提交
31
  uint32_t  seq;
S
Shengliang Guan 已提交
32
  int8_t    stop;
L
Liu Jicong 已提交
33
  int8_t    inited;
S
Shengliang Guan 已提交
34 35 36
  pthread_t thread;
} SWalMgmt;

L
Liu Jicong 已提交
37
static SWalMgmt tsWal = {0, .seq = 1};
S
Shengliang Guan 已提交
38 39 40 41 42
static int32_t  walCreateThread();
static void     walStopThread();
static int32_t  walInitObj(SWal *pWal);
static void     walFreeObj(void *pWal);

L
Liu Jicong 已提交
43 44 45 46
int64_t walGetSeq() {
  return (int64_t)atomic_load_32(&tsWal.seq);
}

S
Shengliang Guan 已提交
47
int32_t walInit() {
L
Liu Jicong 已提交
48 49
  int8_t old = atomic_val_compare_exchange_8(&tsWal.inited, 0, 1);
  if(old == 1) return 0;
L
Liu Jicong 已提交
50

L
Liu Jicong 已提交
51 52 53 54 55 56
  int code = tfInit();
  if(code != 0) {
    wError("failed to init tfile since %s", tstrerror(code));
    atomic_store_8(&tsWal.inited, 0);
    return code;
  }
L
Liu Jicong 已提交
57
  tsWal.refSetId = taosOpenRef(TSDB_MIN_VNODES, walFreeObj);
S
Shengliang Guan 已提交
58

L
Liu Jicong 已提交
59
  code = walCreateThread();
L
Liu Jicong 已提交
60
  if (code != 0) {
S
TD-1846  
Shengliang Guan 已提交
61
    wError("failed to init wal module since %s", tstrerror(code));
L
Liu Jicong 已提交
62
    atomic_store_8(&tsWal.inited, 0);
S
Shengliang Guan 已提交
63 64 65
    return code;
  }

L
Liu Jicong 已提交
66
  wInfo("wal module is initialized, rsetId:%d", tsWal.refSetId);
L
Liu Jicong 已提交
67
  return 0;
S
Shengliang Guan 已提交
68 69 70 71
}

void walCleanUp() {
  walStopThread();
L
Liu Jicong 已提交
72
  taosCloseRef(tsWal.refSetId);
L
Liu Jicong 已提交
73
  atomic_store_8(&tsWal.inited, 0);
S
Shengliang Guan 已提交
74 75 76
  wInfo("wal module is cleaned up");
}

L
Liu Jicong 已提交
77
SWal *walOpen(const char *path, SWalCfg *pCfg) {
L
Liu Jicong 已提交
78
  SWal *pWal = malloc(sizeof(SWal));
S
Shengliang Guan 已提交
79 80 81 82
  if (pWal == NULL) {
    terrno = TAOS_SYSTEM_ERROR(errno);
    return NULL;
  }
L
Liu Jicong 已提交
83
  memset(pWal, 0, sizeof(SWal));
L
Liu Jicong 已提交
84 85
  pWal->writeLogTfd = -1;
  pWal->writeIdxTfd = -1;
L
Liu Jicong 已提交
86
  pWal->writeCur = -1;
L
Liu Jicong 已提交
87 88 89

  //set config
  pWal->vgId = pCfg->vgId;
S
Shengliang Guan 已提交
90
  pWal->fsyncPeriod = pCfg->fsyncPeriod;
L
Liu Jicong 已提交
91 92
  pWal->rollPeriod = pCfg->rollPeriod;
  pWal->segSize = pCfg->segSize;
L
Liu Jicong 已提交
93 94
  pWal->retentionSize = pCfg->retentionSize;
  pWal->retentionPeriod = pCfg->retentionPeriod;
L
Liu Jicong 已提交
95 96
  pWal->level = pCfg->walLevel;

L
Liu Jicong 已提交
97 98 99 100
  //init version info
  pWal->firstVersion = -1;
  pWal->commitVersion = -1;
  pWal->snapshotVersion = -1;
L
Liu Jicong 已提交
101
  pWal->lastVersion = -1;
L
Liu Jicong 已提交
102 103 104

  pWal->snapshottingVer = -1;

L
Liu Jicong 已提交
105 106
  pWal->totSize = 0;

L
Liu Jicong 已提交
107
  //init status
L
Liu Jicong 已提交
108
  pWal->lastRollSeq = -1;
L
Liu Jicong 已提交
109

L
Liu Jicong 已提交
110
  //init write buffer
L
Liu Jicong 已提交
111
  memset(&pWal->head, 0, sizeof(SWalHead));
L
Liu Jicong 已提交
112
  pWal->head.head.sver = 0;
L
Liu Jicong 已提交
113

S
TD-1846  
Shengliang Guan 已提交
114
  tstrncpy(pWal->path, path, sizeof(pWal->path));
S
Shengliang Guan 已提交
115 116
  pthread_mutex_init(&pWal->mutex, NULL);

S
TD-1847  
Shengliang Guan 已提交
117
  pWal->fsyncSeq = pCfg->fsyncPeriod / 1000;
S
Shengliang Guan 已提交
118 119
  if (pWal->fsyncSeq <= 0) pWal->fsyncSeq = 1;

L
Liu Jicong 已提交
120
  if (walInitObj(pWal) != 0) {
S
Shengliang Guan 已提交
121 122 123 124
    walFreeObj(pWal);
    return NULL;
  }

L
Liu Jicong 已提交
125 126
   pWal->refId = taosAddRef(tsWal.refSetId, pWal);
   if (pWal->refId < 0) {
S
Shengliang Guan 已提交
127 128 129
    walFreeObj(pWal);
    return NULL;
  }
L
Liu Jicong 已提交
130
  walReadMeta(pWal);
S
Shengliang Guan 已提交
131

S
TD-1846  
Shengliang Guan 已提交
132
  wDebug("vgId:%d, wal:%p is opened, level:%d fsyncPeriod:%d", pWal->vgId, pWal, pWal->level, pWal->fsyncPeriod);
S
Shengliang Guan 已提交
133 134 135 136

  return pWal;
}

L
Liu Jicong 已提交
137 138
int32_t walAlter(SWal *pWal, SWalCfg *pCfg) {
  if (pWal == NULL) return TSDB_CODE_WAL_APP_ERROR;
S
Shengliang Guan 已提交
139 140 141 142

  if (pWal->level == pCfg->walLevel && pWal->fsyncPeriod == pCfg->fsyncPeriod) {
    wDebug("vgId:%d, old walLevel:%d fsync:%d, new walLevel:%d fsync:%d not change", pWal->vgId, pWal->level,
           pWal->fsyncPeriod, pCfg->walLevel, pCfg->fsyncPeriod);
L
Liu Jicong 已提交
143
    return 0;
S
Shengliang Guan 已提交
144 145 146 147 148 149 150
  }

  wInfo("vgId:%d, change old walLevel:%d fsync:%d, new walLevel:%d fsync:%d", pWal->vgId, pWal->level,
        pWal->fsyncPeriod, pCfg->walLevel, pCfg->fsyncPeriod);

  pWal->level = pCfg->walLevel;
  pWal->fsyncPeriod = pCfg->fsyncPeriod;
151
  pWal->fsyncSeq = pCfg->fsyncPeriod / 1000;
S
TD-1846  
Shengliang Guan 已提交
152
  if (pWal->fsyncSeq <= 0) pWal->fsyncSeq = 1;
S
Shengliang Guan 已提交
153

L
Liu Jicong 已提交
154
  return 0;
S
TD-1894  
Shengliang Guan 已提交
155 156
}

L
Liu Jicong 已提交
157 158
void walClose(SWal *pWal) {
  if (pWal == NULL) return;
S
TD-1846  
Shengliang Guan 已提交
159

160
  pthread_mutex_lock(&pWal->mutex);
L
Liu Jicong 已提交
161
  tfClose(pWal->writeLogTfd);
L
Liu Jicong 已提交
162
  pWal->writeLogTfd = -1;
L
Liu Jicong 已提交
163
  tfClose(pWal->writeIdxTfd);
L
Liu Jicong 已提交
164 165 166 167
  pWal->writeIdxTfd = -1;
  walWriteMeta(pWal);
  taosArrayDestroy(pWal->fileInfoSet);
  pWal->fileInfoSet = NULL;
168
  pthread_mutex_unlock(&pWal->mutex);
L
Liu Jicong 已提交
169
  taosRemoveRef(tsWal.refSetId, pWal->refId);
S
Shengliang Guan 已提交
170 171 172
}

static int32_t walInitObj(SWal *pWal) {
173
  if (taosMkDir(pWal->path) != 0) {
S
Shengliang Guan 已提交
174
    wError("vgId:%d, path:%s, failed to create directory since %s", pWal->vgId, pWal->path, strerror(errno));
S
TD-1846  
Shengliang Guan 已提交
175
    return TAOS_SYSTEM_ERROR(errno);
S
Shengliang Guan 已提交
176
  }
L
Liu Jicong 已提交
177
  pWal->fileInfoSet = taosArrayInit(8, sizeof(WalFileInfo));
L
Liu Jicong 已提交
178
  if(pWal->fileInfoSet == NULL) {
L
Liu Jicong 已提交
179 180 181
    wError("vgId:%d, path:%s, failed to init taosArray %s", pWal->vgId, pWal->path, strerror(errno));
    return TAOS_SYSTEM_ERROR(errno);
  }
S
Shengliang Guan 已提交
182

S
TD-1887  
Shengliang Guan 已提交
183
  wDebug("vgId:%d, object is initialized", pWal->vgId);
L
Liu Jicong 已提交
184
  return 0;
S
Shengliang Guan 已提交
185 186 187
}

static void walFreeObj(void *wal) {
S
TD-1846  
Shengliang Guan 已提交
188 189
  SWal *pWal = wal;
  wDebug("vgId:%d, wal:%p is freed", pWal->vgId, pWal);
S
Shengliang Guan 已提交
190

L
Liu Jicong 已提交
191 192
  tfClose(pWal->writeLogTfd);
  tfClose(pWal->writeIdxTfd);
L
Liu Jicong 已提交
193 194
  taosArrayDestroy(pWal->fileInfoSet);
  pWal->fileInfoSet = NULL;
S
Shengliang Guan 已提交
195 196 197 198
  pthread_mutex_destroy(&pWal->mutex);
  tfree(pWal);
}

S
TD-1846  
Shengliang Guan 已提交
199 200 201 202
static bool walNeedFsync(SWal *pWal) {
  if (pWal->fsyncPeriod <= 0 || pWal->level != TAOS_WAL_FSYNC) {
    return false;
  }
S
Shengliang Guan 已提交
203

L
Liu Jicong 已提交
204
  if (atomic_load_32(&tsWal.seq) % pWal->fsyncSeq == 0) {
S
TD-1846  
Shengliang Guan 已提交
205 206
    return true;
  }
S
Shengliang Guan 已提交
207

S
TD-1846  
Shengliang Guan 已提交
208 209
  return false;
}
S
Shengliang Guan 已提交
210 211

static void walUpdateSeq() {
S
TD-1846  
Shengliang Guan 已提交
212
  taosMsleep(WAL_REFRESH_MS);
L
Liu Jicong 已提交
213
  atomic_add_fetch_32(&tsWal.seq, 1);
S
Shengliang Guan 已提交
214 215 216
}

static void walFsyncAll() {
L
Liu Jicong 已提交
217
  SWal *pWal = taosIterateRef(tsWal.refSetId, 0);
S
TD-1846  
Shengliang Guan 已提交
218 219
  while (pWal) {
    if (walNeedFsync(pWal)) {
L
Liu Jicong 已提交
220
      wTrace("vgId:%d, do fsync, level:%d seq:%d rseq:%d", pWal->vgId, pWal->level, pWal->fsyncSeq, atomic_load_32(&tsWal.seq));
L
Liu Jicong 已提交
221
      int32_t code = tfFsync(pWal->writeLogTfd);
S
TD-1846  
Shengliang Guan 已提交
222
      if (code != 0) {
L
Liu Jicong 已提交
223
        wError("vgId:%d, file:%"PRId64".log, failed to fsync since %s", pWal->vgId, walGetLastFileFirstVer(pWal), strerror(code));
S
TD-1846  
Shengliang Guan 已提交
224 225
      }
    }
L
Liu Jicong 已提交
226
    pWal = taosIterateRef(tsWal.refSetId, pWal->refId);
S
TD-1846  
Shengliang Guan 已提交
227
  }
S
Shengliang Guan 已提交
228 229 230
}

static void *walThreadFunc(void *param) {
H
Haojun Liao 已提交
231
  setThreadName("wal");
S
Shengliang Guan 已提交
232 233 234
  while (1) {
    walUpdateSeq();
    walFsyncAll();
J
Jun Li 已提交
235

L
Liu Jicong 已提交
236
    if (atomic_load_8(&tsWal.stop)) break;
S
Shengliang Guan 已提交
237 238 239 240 241 242 243 244 245 246 247
  }

  return NULL;
}

static int32_t walCreateThread() {
  pthread_attr_t thAttr;
  pthread_attr_init(&thAttr);
  pthread_attr_setdetachstate(&thAttr, PTHREAD_CREATE_JOINABLE);

  if (pthread_create(&tsWal.thread, &thAttr, walThreadFunc, NULL) != 0) {
S
TD-1846  
Shengliang Guan 已提交
248
    wError("failed to create wal thread since %s", strerror(errno));
S
Shengliang Guan 已提交
249 250 251 252
    return TAOS_SYSTEM_ERROR(errno);
  }

  pthread_attr_destroy(&thAttr);
S
TD-1207  
Shengliang Guan 已提交
253
  wDebug("wal thread is launched, thread:0x%08" PRIx64, taosGetPthreadId(tsWal.thread));
S
Shengliang Guan 已提交
254

L
Liu Jicong 已提交
255
  return 0;
S
Shengliang Guan 已提交
256 257 258
}

static void walStopThread() {
L
Liu Jicong 已提交
259
  atomic_store_8(&tsWal.stop, 1);
J
Jun Li 已提交
260

S
TD-1207  
Shengliang Guan 已提交
261
  if (taosCheckPthreadValid(tsWal.thread)) {
S
Shengliang Guan 已提交
262 263 264 265 266
    pthread_join(tsWal.thread, NULL);
  }

  wDebug("wal thread is stopped");
}