enh: adjust log format
This commit is contained in:
parent
61e0e77dcf
commit
9a8fc303ae
|
@ -1789,8 +1789,8 @@ int32_t doProcessMsgFromServerImpl(SRpcMsg* pMsg, SEpSet* pEpSet) {
|
|||
char tbuf[40] = {0};
|
||||
TRACE_TO_STR(trace, tbuf);
|
||||
|
||||
tscDebug("processMsgFromServer handle %p, message: %s, size:%d, code: %s, QID:%s", pMsg->info.handle,
|
||||
TMSG_INFO(pMsg->msgType), pMsg->contLen, tstrerror(pMsg->code), tbuf);
|
||||
tscDebug("QID:%s, process message from server, handle:%p, message:%s, size:%d, code:%s", tbuf, pMsg->info.handle,
|
||||
TMSG_INFO(pMsg->msgType), pMsg->contLen, tstrerror(pMsg->code));
|
||||
|
||||
if (pSendInfo->requestObjRefId != 0) {
|
||||
SRequestObj* pRequest = (SRequestObj*)taosAcquireRef(clientReqRefPool, pSendInfo->requestObjRefId);
|
||||
|
|
|
@ -1249,7 +1249,7 @@ int32_t tdRSmaPersistExecImpl(SRSmaStat *pRSmaStat, SHashObj *pInfoHash) {
|
|||
if (streamFlushed) {
|
||||
pRSmaInfo->items[i].streamFlushed = 1;
|
||||
if (++nStreamFlushed >= nTaskInfo) {
|
||||
smaInfo("vgId:%d, rsma commit, checkpoint ready, %d us consumed, received/total: %d/%d", TD_VID(pVnode),
|
||||
smaInfo("vgId:%d, rsma commit, checkpoint ready, %d us consumed, received/total:%d/%d", TD_VID(pVnode),
|
||||
nSleep * 10, nStreamFlushed, nTaskInfo);
|
||||
taosHashCancelIterate(pInfoHash, infoHash);
|
||||
goto _checkpoint;
|
||||
|
@ -1260,7 +1260,7 @@ int32_t tdRSmaPersistExecImpl(SRSmaStat *pRSmaStat, SHashObj *pInfoHash) {
|
|||
}
|
||||
taosUsleep(10);
|
||||
++nSleep;
|
||||
smaDebug("vgId:%d, rsma commit, wait for checkpoint ready, %d us elapsed, received/total: %d/%d", TD_VID(pVnode),
|
||||
smaDebug("vgId:%d, rsma commit, wait for checkpoint ready, %d us elapsed, received/total:%d/%d", TD_VID(pVnode),
|
||||
nSleep * 10, nStreamFlushed, nTaskInfo);
|
||||
}
|
||||
} while (0);
|
||||
|
|
|
@ -1519,7 +1519,7 @@ int32_t ctgHandleTaskEnd(SCtgTask* pTask, int32_t rspCode) {
|
|||
|
||||
int32_t taskDone = atomic_add_fetch_32(&pJob->taskDone, 1);
|
||||
if (taskDone < taosArrayGetSize(pJob->pTasks)) {
|
||||
qDebug("QID:0x%" PRIx64 ", task done: %d, total: %d", pJob->queryId, taskDone,
|
||||
qDebug("QID:0x%" PRIx64 ", task done:%d, total:%d", pJob->queryId, taskDone,
|
||||
(int32_t)taosArrayGetSize(pJob->pTasks));
|
||||
|
||||
ctgUpdateJobErrCode(pJob, rspCode);
|
||||
|
|
|
@ -489,7 +489,8 @@ int32_t schHandleCallback(void *param, SDataBuf *pMsg, int32_t rspCode) {
|
|||
SSchTask *pTask = NULL;
|
||||
SSchJob *pJob = NULL;
|
||||
|
||||
qDebug("begin to handle rsp msg, type:%s, handle:%p, code:%s", TMSG_INFO(pMsg->msgType), pMsg->handle,
|
||||
int64_t qid = pParam->queryId;
|
||||
qDebug("QID:0x%" PRIx64 ", begin to handle rsp msg, type:%s, handle:%p, code:%s", qid,TMSG_INFO(pMsg->msgType), pMsg->handle,
|
||||
tstrerror(rspCode));
|
||||
|
||||
SCH_ERR_JRET(schProcessOnCbBegin(&pJob, &pTask, pParam->queryId, pParam->refId, pParam->taskId));
|
||||
|
@ -503,7 +504,7 @@ _return:
|
|||
taosMemoryFreeClear(pMsg->pData);
|
||||
taosMemoryFreeClear(pMsg->pEpSet);
|
||||
|
||||
qDebug("end to handle rsp msg, type:%s, handle:%p, code:%s", TMSG_INFO(pMsg->msgType), pMsg->handle,
|
||||
qDebug("QID:0x%" PRIx64 ", end to handle rsp msg, type:%s, handle:%p, code:%s", qid, TMSG_INFO(pMsg->msgType), pMsg->handle,
|
||||
tstrerror(rspCode));
|
||||
|
||||
SCH_RET(code);
|
||||
|
|
|
@ -62,7 +62,7 @@ int32_t schedulerInit() {
|
|||
}
|
||||
|
||||
int32_t schedulerExecJob(SSchedulerReq *pReq, int64_t *pJobId) {
|
||||
qDebug("scheduler %s exec job start", pReq->syncReq ? "SYNC" : "ASYNC");
|
||||
qDebug("scheduler %s exec job will start", pReq->syncReq ? "SYNC" : "ASYNC");
|
||||
|
||||
int32_t code = 0;
|
||||
SSchJob *pJob = NULL;
|
||||
|
@ -111,7 +111,7 @@ int32_t schedulerGetTasksStatus(int64_t jobId, SArray *pSub) {
|
|||
for (int32_t m = 0; m < pLevel->taskNum; ++m) {
|
||||
SSchTask *pTask = taosArrayGet(pLevel->subTasks, m);
|
||||
if (NULL == pTask) {
|
||||
qError("failed to get task %d, total: %d", m, pLevel->taskNum);
|
||||
qError("failed to get task %d, total:%d", m, pLevel->taskNum);
|
||||
SCH_ERR_JRET(TSDB_CODE_SCH_INTERNAL_ERROR);
|
||||
}
|
||||
|
||||
|
@ -120,7 +120,7 @@ int32_t schedulerGetTasksStatus(int64_t jobId, SArray *pSub) {
|
|||
TAOS_STRCPY(subDesc.status, jobTaskStatusStr(pTask->status));
|
||||
|
||||
if (NULL == taosArrayPush(pSub, &subDesc)) {
|
||||
qError("taosArrayPush task %d failed, error: %x, ", m, terrno);
|
||||
qError("taosArrayPush task %d failed, error:0x%x", m, terrno);
|
||||
SCH_ERR_JRET(terrno);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -235,7 +235,7 @@ static FORCE_INLINE int32_t taosBuildDstAddr(const char* server, uint16_t port,
|
|||
uint32_t ip = 0;
|
||||
int32_t code = taosGetIpv4FromFqdn(server, &ip);
|
||||
if (code) {
|
||||
tError("http-report failed to resolving domain names %s, reason: %s", server, tstrerror(code));
|
||||
tError("http-report failed to resolving domain names %s, reason:%s", server, tstrerror(code));
|
||||
return TSDB_CODE_RPC_FQDN_ERROR;
|
||||
}
|
||||
char buf[TD_IP_LEN] = {0};
|
||||
|
@ -332,7 +332,7 @@ static void httpMayDiscardMsg(SHttpModule* http, SAsyncItem* item) {
|
|||
QUEUE_REMOVE(h);
|
||||
msg = QUEUE_DATA(h, SHttpMsg, q);
|
||||
if (!msg->quit) {
|
||||
tError("http-report failed to report chanId:%" PRId64 ",seq:%" PRId64 ", reason: %s", msg->chanId, msg->seq,
|
||||
tError("http-report failed to report chanId:%" PRId64 ",seq:%" PRId64 ", reason:%s", msg->chanId, msg->seq,
|
||||
tstrerror(TSDB_CODE_HTTP_MODULE_QUIT));
|
||||
httpDestroyMsg(msg);
|
||||
} else {
|
||||
|
@ -471,7 +471,7 @@ static void clientSentCb(uv_write_t* req, int32_t status) {
|
|||
STUB_RAND_NETWORK_ERR(status);
|
||||
SHttpClient* cli = req->data;
|
||||
if (status != 0) {
|
||||
tError("http-report failed to send data, reason: %s, dst:%s:%d, chanId:%" PRId64 ", seq:%" PRId64 "",
|
||||
tError("http-report failed to send data, reason:%s, dst:%s:%d, chanId:%" PRId64 ", seq:%" PRId64 "",
|
||||
uv_strerror(status), cli->addr, cli->port, cli->chanId, cli->seq);
|
||||
if (!uv_is_closing((uv_handle_t*)&cli->tcp)) {
|
||||
uv_close((uv_handle_t*)&cli->tcp, clientCloseCb);
|
||||
|
@ -725,7 +725,7 @@ static void httpHandleReq(SHttpMsg* msg) {
|
|||
|
||||
END:
|
||||
if (ignore == false) {
|
||||
tError("http-report failed to report to addr: %s:%d, chanId:%" PRId64 ",seq:%" PRId64 " reason:%s", msg->server,
|
||||
tError("http-report failed to report to addr:%s:%d, chanId:%" PRId64 ",seq:%" PRId64 " reason:%s", msg->server,
|
||||
msg->port, chanId, msg->seq, tstrerror(code));
|
||||
}
|
||||
httpDestroyMsg(msg);
|
||||
|
@ -937,12 +937,12 @@ int64_t taosInitHttpChan() {
|
|||
}
|
||||
|
||||
void taosDestroyHttpChan(int64_t chanId) {
|
||||
tDebug("http-report send quit, chanId: %" PRId64 "", chanId);
|
||||
tDebug("http-report send quit, chanId:%" PRId64, chanId);
|
||||
|
||||
int ret = 0;
|
||||
SHttpModule* load = taosAcquireRef(httpRefMgt, chanId);
|
||||
if (load == NULL) {
|
||||
tError("http-report failed to destroy chanId %" PRId64 ", reason:%s", chanId, tstrerror(terrno));
|
||||
tError("http-report failed to destroy chanId:%" PRId64 ", reason:%s", chanId, tstrerror(terrno));
|
||||
ret = terrno;
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -941,7 +941,7 @@ static void addConnToPool(void* pool, SCliConn* conn) {
|
|||
QUEUE_INIT(&conn->q);
|
||||
QUEUE_PUSH(&conn->list->conns, &conn->q);
|
||||
conn->list->size += 1;
|
||||
tDebug("conn:%p, added to pool, pool size: %d, dst: %s", conn, conn->list->size, conn->dstAddr);
|
||||
tDebug("conn:%p, added to pool, pool size:%d, dst:%s", conn, conn->list->size, conn->dstAddr);
|
||||
|
||||
conn->heapMissHit = 0;
|
||||
|
||||
|
@ -1894,7 +1894,7 @@ static FORCE_INLINE int32_t cliUpdateFqdnCache(SHashObj* cache, char* fqdn) {
|
|||
char old[TSDB_FQDN_LEN] = {0}, new[TSDB_FQDN_LEN] = {0};
|
||||
taosInetNtoa(old, *v);
|
||||
taosInetNtoa(new, addr);
|
||||
tWarn("update ip of fqdn:%s, old: %s, new: %s", fqdn, old, new);
|
||||
tWarn("update ip of fqdn:%s, old:%s, new:%s", fqdn, old, new);
|
||||
code = taosHashPut(cache, fqdn, len, &addr, sizeof(addr));
|
||||
}
|
||||
} else {
|
||||
|
@ -2541,7 +2541,7 @@ static FORCE_INLINE void cliPerfLog_schedMsg(SCliReq* pReq, char* label) {
|
|||
return;
|
||||
}
|
||||
|
||||
tGDebug("%s retry on next node,use:%s, step: %d,timeout:%" PRId64 "", label, tbuf, pCtx->retryStep,
|
||||
tGDebug("%s retry on next node,use:%s, step:%d,timeout:%" PRId64, label, tbuf, pCtx->retryStep,
|
||||
pCtx->retryNextInterval);
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -836,7 +836,7 @@ int32_t subnetInit(SubnetUtils* pUtils, SIpV4Range* pRange) {
|
|||
return 0;
|
||||
}
|
||||
int32_t subnetDebugInfoToBuf(SubnetUtils* pUtils, char* buf) {
|
||||
sprintf(buf, "raw: %s, address: %d, netmask:%d, network:%d, broadcast:%d", pUtils->info, pUtils->address,
|
||||
sprintf(buf, "raw:%s, address:%d, netmask:%d, network:%d, broadcast:%d", pUtils->info, pUtils->address,
|
||||
pUtils->netmask, pUtils->network, pUtils->broadcast);
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -274,7 +274,7 @@ int32_t uvWhiteListToStr(SWhiteUserList* plist, char* user, char** ppBuf) {
|
|||
return terrno;
|
||||
}
|
||||
|
||||
int32_t len = sprintf(pBuf, "user: %s, ver: %" PRId64 ", ip: {%s}", user, plist->ver, tmp);
|
||||
int32_t len = sprintf(pBuf, "user:%s, ver:%" PRId64 ", ip:{%s}", user, plist->ver, tmp);
|
||||
taosMemoryFree(tmp);
|
||||
|
||||
*ppBuf = pBuf;
|
||||
|
@ -1027,7 +1027,7 @@ void uvOnAcceptCb(uv_stream_t* stream, int status) {
|
|||
|
||||
int err = uv_tcp_init(pObj->loop, cli);
|
||||
if (err != 0) {
|
||||
tError("failed to create tcp: %s", uv_err_name(err));
|
||||
tError("failed to create tcp:%s", uv_err_name(err));
|
||||
taosMemoryFree(cli);
|
||||
return;
|
||||
}
|
||||
|
@ -1059,10 +1059,10 @@ void uvOnAcceptCb(uv_stream_t* stream, int status) {
|
|||
uv_write2(wr, (uv_stream_t*)&(pObj->pipe[pObj->workerIdx][0]), &buf, 1, (uv_stream_t*)cli, uvOnPipeWriteCb));
|
||||
} else {
|
||||
if (!uv_is_closing((uv_handle_t*)cli)) {
|
||||
tError("failed to accept tcp: %s", uv_err_name(err));
|
||||
tError("failed to accept tcp:%s", uv_err_name(err));
|
||||
uv_close((uv_handle_t*)cli, uvFreeCb);
|
||||
} else {
|
||||
tError("failed to accept tcp: %s", uv_err_name(err));
|
||||
tError("failed to accept tcp:%s", uv_err_name(err));
|
||||
taosMemoryFree(cli);
|
||||
}
|
||||
}
|
||||
|
@ -1464,7 +1464,7 @@ static void uvDestroyConn(uv_handle_t* handle) {
|
|||
}
|
||||
static void uvPipeListenCb(uv_stream_t* handle, int status) {
|
||||
if (status != 0) {
|
||||
tError("server failed to init pipe, errmsg: %s", uv_err_name(status));
|
||||
tError("server failed to init pipe, errmsg:%s", uv_err_name(status));
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -1473,12 +1473,12 @@ static void uvPipeListenCb(uv_stream_t* handle, int status) {
|
|||
|
||||
int ret = uv_pipe_init(srv->loop, pipe, 1);
|
||||
if (ret != 0) {
|
||||
tError("trans-svr failed to init pipe, errmsg: %s", uv_err_name(ret));
|
||||
tError("trans-svr failed to init pipe, errmsg:%s", uv_err_name(ret));
|
||||
}
|
||||
|
||||
ret = uv_accept((uv_stream_t*)&srv->pipeListen, (uv_stream_t*)pipe);
|
||||
if (ret != 0) {
|
||||
tError("trans-svr failed to accept pipe, errmsg: %s", uv_err_name(ret));
|
||||
tError("trans-svr failed to accept pipe, errmsg:%s", uv_err_name(ret));
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -1507,7 +1507,7 @@ void* transInitServer(uint32_t ip, uint32_t port, char* label, int numOfThreads,
|
|||
SServerObj* srv = taosMemoryCalloc(1, sizeof(SServerObj));
|
||||
if (srv == NULL) {
|
||||
code = terrno;
|
||||
tError("failed to init server since: %s", tstrerror(code));
|
||||
tError("failed to init server since:%s", tstrerror(code));
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
@ -1526,7 +1526,7 @@ void* transInitServer(uint32_t ip, uint32_t port, char* label, int numOfThreads,
|
|||
|
||||
code = uv_loop_init(srv->loop);
|
||||
if (code != 0) {
|
||||
tError("failed to init server since: %s", uv_err_name(code));
|
||||
tError("failed to init server since:%s", uv_err_name(code));
|
||||
code = TSDB_CODE_THIRDPARTY_ERROR;
|
||||
goto End;
|
||||
}
|
||||
|
@ -1541,7 +1541,7 @@ void* transInitServer(uint32_t ip, uint32_t port, char* label, int numOfThreads,
|
|||
#if defined(WINDOWS) || defined(DARWIN)
|
||||
int ret = uv_pipe_init(srv->loop, &srv->pipeListen, 0);
|
||||
if (ret != 0) {
|
||||
tError("failed to init pipe, errmsg: %s", uv_err_name(ret));
|
||||
tError("failed to init pipe, errmsg:%s", uv_err_name(ret));
|
||||
goto End;
|
||||
}
|
||||
#if defined(WINDOWS)
|
||||
|
@ -1553,13 +1553,13 @@ void* transInitServer(uint32_t ip, uint32_t port, char* label, int numOfThreads,
|
|||
|
||||
ret = uv_pipe_bind(&srv->pipeListen, pipeName);
|
||||
if (ret != 0) {
|
||||
tError("failed to bind pipe, errmsg: %s", uv_err_name(ret));
|
||||
tError("failed to bind pipe, errmsg:%s", uv_err_name(ret));
|
||||
goto End;
|
||||
}
|
||||
|
||||
ret = uv_listen((uv_stream_t*)&srv->pipeListen, SOMAXCONN, uvPipeListenCb);
|
||||
if (ret != 0) {
|
||||
tError("failed to listen pipe, errmsg: %s", uv_err_name(ret));
|
||||
tError("failed to listen pipe, errmsg:%s", uv_err_name(ret));
|
||||
goto End;
|
||||
}
|
||||
|
||||
|
@ -1637,21 +1637,21 @@ void* transInitServer(uint32_t ip, uint32_t port, char* label, int numOfThreads,
|
|||
|
||||
uv_os_sock_t fds[2];
|
||||
if ((code = uv_socketpair(SOCK_STREAM, 0, fds, UV_NONBLOCK_PIPE, UV_NONBLOCK_PIPE)) != 0) {
|
||||
tError("failed to create pipe, errmsg: %s", uv_err_name(code));
|
||||
tError("failed to create pipe, errmsg:%s", uv_err_name(code));
|
||||
code = TSDB_CODE_THIRDPARTY_ERROR;
|
||||
goto End;
|
||||
}
|
||||
|
||||
code = uv_pipe_init(srv->loop, &(srv->pipe[i][0]), 1);
|
||||
if (code != 0) {
|
||||
tError("failed to init pipe, errmsg: %s", uv_err_name(code));
|
||||
tError("failed to init pipe, errmsg:%s", uv_err_name(code));
|
||||
code = TSDB_CODE_THIRDPARTY_ERROR;
|
||||
goto End;
|
||||
}
|
||||
|
||||
code = uv_pipe_open(&(srv->pipe[i][0]), fds[1]);
|
||||
if (code != 0) {
|
||||
tError("failed to init pipe, errmsg: %s", uv_err_name(code));
|
||||
tError("failed to init pipe, errmsg:%s", uv_err_name(code));
|
||||
code = TSDB_CODE_THIRDPARTY_ERROR;
|
||||
goto End;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue