qworkerInt.h 8.8 KB
Newer Older
D
dapan1121 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * 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/>.
 */

#ifndef _TD_QWORKER_INT_H_
#define _TD_QWORKER_INT_H_

#ifdef __cplusplus
extern "C" {
#endif

S
Shengliang Guan 已提交
23
#include "qworker.h"
D
dapan1121 已提交
24
#include "tlockfree.h"
D
dapan1121 已提交
25
#include "ttimer.h"
D
dapan1121 已提交
26

D
dapan1121 已提交
27 28 29 30
#define QW_DEFAULT_SCHEDULER_NUMBER 10000
#define QW_DEFAULT_TASK_NUMBER 10000
#define QW_DEFAULT_SCH_TASK_NUMBER 10000
#define QW_DEFAULT_SHORT_RUN_TIMES 2
D
dapan1121 已提交
31 32
#define QW_DEFAULT_HEARTBEAT_MSEC 3000

D
dapan1121 已提交
33
enum {
D
dapan1121 已提交
34 35 36 37
  QW_PHASE_PRE_QUERY = 1,
  QW_PHASE_POST_QUERY,
  QW_PHASE_PRE_FETCH,
  QW_PHASE_POST_FETCH,
D
dapan1121 已提交
38 39
  QW_PHASE_PRE_CQUERY,
  QW_PHASE_POST_CQUERY,
D
dapan1121 已提交
40 41
};

D
dapan1121 已提交
42
enum {
D
dapan1121 已提交
43 44 45 46
  QW_EVENT_CANCEL = 1,
  QW_EVENT_READY,
  QW_EVENT_FETCH,
  QW_EVENT_DROP,
47
  QW_EVENT_CQUERY,
D
dapan1121 已提交
48 49 50 51 52 53 54 55

  QW_EVENT_MAX,
};

enum {
  QW_EVENT_NOT_RECEIVED = 0,
  QW_EVENT_RECEIVED,
  QW_EVENT_PROCESSED,
D
dapan1121 已提交
56 57 58 59 60 61 62
};

enum {
  QW_READ = 1,
  QW_WRITE,
};

D
dapan1121 已提交
63 64 65 66 67 68

enum {
  QW_NOT_EXIST_RET_ERR = 1,
  QW_NOT_EXIST_ADD,
};

69
typedef struct SQWDebug {
D
dapan1121 已提交
70 71
  bool lockEnable;
  bool statusEnable;
D
dapan1121 已提交
72
  bool dumpEnable;
73 74
} SQWDebug;

D
dapan1121 已提交
75 76 77 78 79
typedef struct SQWConnInfo {
  void *handle;
  void *ahandle;
} SQWConnInfo;

D
dapan1121 已提交
80
typedef struct SQWMsg {
D
dapan1121 已提交
81
  void        *node;
D
dapan1121 已提交
82
  int32_t      code;
D
dapan1121 已提交
83 84 85
  char        *msg;
  int32_t      msgLen;
  SQWConnInfo  connInfo;
D
dapan1121 已提交
86 87
} SQWMsg;

D
dapan1121 已提交
88 89
typedef struct SQWHbInfo {
  SSchedulerHbRsp  rsp;
D
dapan1121 已提交
90
  SQWConnInfo      connInfo;
D
dapan1121 已提交
91 92
} SQWHbInfo;

D
dapan1121 已提交
93
typedef struct SQWPhaseInput {
D
dapan1121 已提交
94
  int32_t        code;
D
dapan1121 已提交
95 96 97 98 99 100
} SQWPhaseInput;

typedef struct SQWPhaseOutput {
} SQWPhaseOutput;


D
dapan1121 已提交
101
typedef struct SQWTaskStatus {  
D
dapan1121 已提交
102
  int64_t  refId;        // job's refId
D
dapan1121 已提交
103 104
  int32_t  code;
  int8_t   status;
D
dapan1121 已提交
105
} SQWTaskStatus;
D
dapan1121 已提交
106

D
dapan1121 已提交
107
typedef struct SQWTaskCtx {
108
  SRWLatch        lock;
D
dapan1121 已提交
109
  int8_t          phase;
D
dapan1121 已提交
110
  int8_t          taskType;
D
dapan1121 已提交
111
  int8_t          explain;
D
dapan1121 已提交
112
  
D
dapan1121 已提交
113 114 115 116
  bool            queryFetched;
  bool            queryEnd;
  bool            queryContinue;
  bool            queryInQueue;
D
dapan1121 已提交
117
  int32_t         rspCode; 
D
dapan1121 已提交
118

D
dapan1121 已提交
119 120 121
  SQWConnInfo     ctrlConnInfo;
  SQWConnInfo     dataConnInfo;

D
dapan1121 已提交
122
  int8_t          events[QW_EVENT_MAX];
D
dapan1121 已提交
123
  
124 125
  qTaskInfo_t     taskHandle;
  DataSinkHandle  sinkHandle;
D
dapan1121 已提交
126
} SQWTaskCtx;
D
dapan1121 已提交
127

D
dapan1121 已提交
128
typedef struct SQWSchStatus {
D
dapan1121 已提交
129
  int32_t        lastAccessTs; // timestamp in second
D
dapan1121 已提交
130
  SRWLatch       hbConnLock;
D
dapan1121 已提交
131
  SQWConnInfo    hbConnInfo;
D
dapan1121 已提交
132
  SQueryNodeEpId hbEpId;  
D
dapan1121 已提交
133 134
  SRWLatch       tasksLock;
  SHashObj      *tasksHash;   // key:queryId+taskId, value: SQWTaskStatus
D
dapan1121 已提交
135
} SQWSchStatus;
D
dapan1121 已提交
136 137 138

// Qnode/Vnode level task management
typedef struct SQWorkerMgmt {
S
Shengliang Guan 已提交
139 140 141 142 143 144 145 146 147 148
  SQWorkerCfg cfg;
  int8_t      nodeType;
  int32_t     nodeId;
  void       *timer;
  tmr_h       hbTimer;
  SRWLatch    schLock;
  // SRWLatch ctxLock;
  SHashObj   *schHash;  // key: schedulerId,    value: SQWSchStatus
  SHashObj   *ctxHash;  // key: queryId+taskId, value: SQWTaskCtx
  SMsgCb      msgCb;
D
dapan1121 已提交
149 150
} SQWorkerMgmt;

D
dapan1121 已提交
151 152
#define QW_FPARAMS_DEF SQWorkerMgmt *mgmt, uint64_t sId, uint64_t qId, uint64_t tId, int64_t rId
#define QW_IDS() sId, qId, tId, rId
D
dapan1121 已提交
153 154
#define QW_FPARAMS() mgmt, QW_IDS()

D
dapan1121 已提交
155 156
#define QW_GET_EVENT_VALUE(ctx, event) atomic_load_8(&(ctx)->events[event])

157 158 159 160
#define QW_IS_EVENT_RECEIVED(ctx, event) (atomic_load_8(&(ctx)->events[event]) == QW_EVENT_RECEIVED)
#define QW_IS_EVENT_PROCESSED(ctx, event) (atomic_load_8(&(ctx)->events[event]) == QW_EVENT_PROCESSED)
#define QW_SET_EVENT_RECEIVED(ctx, event) atomic_store_8(&(ctx)->events[event], QW_EVENT_RECEIVED)
#define QW_SET_EVENT_PROCESSED(ctx, event) atomic_store_8(&(ctx)->events[event], QW_EVENT_PROCESSED)
D
dapan1121 已提交
161

D
dapan1121 已提交
162 163
#define QW_GET_PHASE(ctx) atomic_load_8(&(ctx)->phase)

D
dapan1121 已提交
164 165
#define QW_SET_RSP_CODE(ctx, code) atomic_store_32(&(ctx)->rspCode, code)
#define QW_UPDATE_RSP_CODE(ctx, code) atomic_val_compare_exchange_32(&(ctx)->rspCode, 0, code)
D
dapan1121 已提交
166

D
dapan1121 已提交
167
#define QW_IS_QUERY_RUNNING(ctx) (QW_GET_PHASE(ctx) == QW_PHASE_PRE_QUERY || QW_GET_PHASE(ctx) == QW_PHASE_PRE_CQUERY)
D
dapan1121 已提交
168

D
dapan1121 已提交
169 170
#define QW_TASK_NOT_EXIST(code) (TSDB_CODE_QRY_SCH_NOT_EXIST == (code) || TSDB_CODE_QRY_TASK_NOT_EXIST == (code))
#define QW_TASK_ALREADY_EXIST(code) (TSDB_CODE_QRY_TASK_ALREADY_EXIST == (code))
D
dapan1121 已提交
171
#define QW_TASK_READY(status) (status == JOB_TASK_STATUS_SUCCEED || status == JOB_TASK_STATUS_FAILED || status == JOB_TASK_STATUS_CANCELLED || status == JOB_TASK_STATUS_PARTIAL_SUCCEED)
D
dapan1121 已提交
172 173
#define QW_SET_QTID(id, qId, tId) do { *(uint64_t *)(id) = (qId); *(uint64_t *)((char *)(id) + sizeof(qId)) = (tId); } while (0)
#define QW_GET_QTID(id, qId, tId) do { (qId) = *(uint64_t *)(id); (tId) = *(uint64_t *)((char *)(id) + sizeof(qId)); } while (0)
D
dapan1121 已提交
174

D
dapan1121 已提交
175 176 177 178
#define QW_ERR_RET(c) do { int32_t _code = c; if (_code != TSDB_CODE_SUCCESS) { terrno = _code; return _code; } } while (0)
#define QW_RET(c) do { int32_t _code = c; if (_code != TSDB_CODE_SUCCESS) { terrno = _code; } return _code; } while (0)
#define QW_ERR_JRET(c) do { code = c; if (code != TSDB_CODE_SUCCESS) { terrno = code; goto _return; } } while (0)

D
dapan1121 已提交
179 180 181
#define QW_ELOG(param, ...) qError("QW:%p " param, mgmt, __VA_ARGS__)
#define QW_DLOG(param, ...) qDebug("QW:%p " param, mgmt, __VA_ARGS__)

D
dapan1121 已提交
182 183 184
#define QW_DUMP(param, ...) do { if (gQWDebug.dumpEnable) { qDebug("QW:%p " param, mgmt, __VA_ARGS__); } } while (0)


D
dapan1121 已提交
185 186
#define QW_SCH_ELOG(param, ...) qError("QW:%p SID:%"PRIx64" " param, mgmt, sId, __VA_ARGS__)
#define QW_SCH_DLOG(param, ...) qDebug("QW:%p SID:%"PRIx64" " param, mgmt, sId, __VA_ARGS__)
D
dapan1121 已提交
187

H
Haojun Liao 已提交
188 189 190
#define QW_TASK_ELOG(param, ...) qError("QW:%p QID:0x%"PRIx64",TID:0x%"PRIx64" " param, mgmt, qId, tId, __VA_ARGS__)
#define QW_TASK_WLOG(param, ...) qWarn("QW:%p QID:0x%"PRIx64",TID:0x%"PRIx64" " param, mgmt, qId, tId, __VA_ARGS__)
#define QW_TASK_DLOG(param, ...) qDebug("QW:%p QID:0x%"PRIx64",TID:0x%"PRIx64" " param, mgmt, qId, tId, __VA_ARGS__)
D
dapan1121 已提交
191
#define QW_TASK_DLOGL(param, ...) qDebugL("QW:%p QID:0x%"PRIx64",TID:0x%"PRIx64" " param, mgmt, qId, tId, __VA_ARGS__)
D
dapan1121 已提交
192

H
Haojun Liao 已提交
193 194 195
#define QW_TASK_ELOG_E(param) qError("QW:%p QID:0x%"PRIx64",TID:0x%"PRIx64" " param, mgmt, qId, tId)
#define QW_TASK_WLOG_E(param) qWarn("QW:%p QID:0x%"PRIx64",TID:0x%"PRIx64" " param, mgmt, qId, tId)
#define QW_TASK_DLOG_E(param) qDebug("QW:%p QID:0x%"PRIx64",TID:0x%"PRIx64" " param, mgmt, qId, tId)
D
dapan1121 已提交
196

197 198 199
#define QW_SCH_TASK_ELOG(param, ...) qError("QW:%p SID:0x%"PRIx64",QID:0x%"PRIx64",TID:0x%"PRIx64" " param, mgmt, sId, qId, tId, __VA_ARGS__)
#define QW_SCH_TASK_WLOG(param, ...) qWarn("QW:%p SID:0x%"PRIx64",QID:0x%"PRIx64",TID:0x%"PRIx64" " param, mgmt, sId, qId, tId, __VA_ARGS__)
#define QW_SCH_TASK_DLOG(param, ...) qDebug("QW:%p SID:0x%"PRIx64",QID:0x%"PRIx64",TID:0x%"PRIx64" " param, mgmt, sId, qId, tId, __VA_ARGS__)
D
dapan1121 已提交
200

D
dapan1121 已提交
201
#define QW_LOCK_DEBUG(...) do { if (gQWDebug.lockEnable) { qDebug(__VA_ARGS__); } } while (0)
D
dapan1121 已提交
202 203 204

#define TD_RWLATCH_WRITE_FLAG_COPY 0x40000000

D
dapan1121 已提交
205 206
#define QW_LOCK(type, _lock) do {   \
  if (QW_READ == (type)) {          \
D
dapan1121 已提交
207
    assert(atomic_load_32((_lock)) >= 0);  \
208
    QW_LOCK_DEBUG("QW RLOCK%p:%d, %s:%d B", (_lock), atomic_load_32(_lock), __FILE__, __LINE__); \
D
dapan1121 已提交
209
    taosRLockLatch(_lock);           \
210
    QW_LOCK_DEBUG("QW RLOCK%p:%d, %s:%d E", (_lock), atomic_load_32(_lock), __FILE__, __LINE__); \
D
dapan1121 已提交
211
    assert(atomic_load_32((_lock)) > 0);  \
D
dapan1121 已提交
212
  } else {                                                \
D
dapan1121 已提交
213
    assert(atomic_load_32((_lock)) >= 0);  \
214
    QW_LOCK_DEBUG("QW WLOCK%p:%d, %s:%d B", (_lock), atomic_load_32(_lock), __FILE__, __LINE__);  \
D
dapan1121 已提交
215
    taosWLockLatch(_lock);                                \
216
    QW_LOCK_DEBUG("QW WLOCK%p:%d, %s:%d E", (_lock), atomic_load_32(_lock), __FILE__, __LINE__);  \
D
dapan1121 已提交
217
    assert(atomic_load_32((_lock)) == TD_RWLATCH_WRITE_FLAG_COPY);  \
D
dapan1121 已提交
218 219
  }                                                       \
} while (0)
D
dapan1121 已提交
220
    
D
dapan1121 已提交
221 222
#define QW_UNLOCK(type, _lock) do {                       \
  if (QW_READ == (type)) {                                \
D
dapan1121 已提交
223
    assert(atomic_load_32((_lock)) > 0);  \
D
dapan1121 已提交
224
    QW_LOCK_DEBUG("QW RULOCK%p:%d, %s:%d B", (_lock), atomic_load_32(_lock), __FILE__, __LINE__); \
D
dapan1121 已提交
225
    taosRUnLockLatch(_lock);                              \
D
dapan1121 已提交
226
    QW_LOCK_DEBUG("QW RULOCK%p:%d, %s:%d E", (_lock), atomic_load_32(_lock), __FILE__, __LINE__); \
D
dapan1121 已提交
227
    assert(atomic_load_32((_lock)) >= 0);  \
D
dapan1121 已提交
228
  } else {                                                \
D
dapan1121 已提交
229
    assert(atomic_load_32((_lock)) == TD_RWLATCH_WRITE_FLAG_COPY);  \
D
dapan1121 已提交
230
    QW_LOCK_DEBUG("QW WULOCK%p:%d, %s:%d B", (_lock), atomic_load_32(_lock), __FILE__, __LINE__); \
D
dapan1121 已提交
231
    taosWUnLockLatch(_lock);                              \
D
dapan1121 已提交
232
    QW_LOCK_DEBUG("QW WULOCK%p:%d, %s:%d E", (_lock), atomic_load_32(_lock), __FILE__, __LINE__); \
D
dapan1121 已提交
233
    assert(atomic_load_32((_lock)) >= 0);  \
D
dapan1121 已提交
234 235
  }                                                       \
} while (0)
D
dapan1121 已提交
236

D
dapan1121 已提交
237 238 239 240 241
#ifdef __cplusplus
}
#endif

#endif /*_TD_QWORKER_INT_H_*/