opt rpc perf
This commit is contained in:
parent
a5420dfaad
commit
f97b972191
|
@ -80,8 +80,7 @@ void* rpcOpen(const SRpcInit* pInit) {
|
||||||
int64_t refId = transAddExHandle(transGetInstMgt(), pRpc);
|
int64_t refId = transAddExHandle(transGetInstMgt(), pRpc);
|
||||||
transAcquireExHandle(transGetInstMgt(), refId);
|
transAcquireExHandle(transGetInstMgt(), refId);
|
||||||
pRpc->refId = refId;
|
pRpc->refId = refId;
|
||||||
return pRpc;
|
return (void*)refId;
|
||||||
// return (void*)refId;
|
|
||||||
}
|
}
|
||||||
void rpcClose(void* arg) {
|
void rpcClose(void* arg) {
|
||||||
tInfo("start to close rpc");
|
tInfo("start to close rpc");
|
||||||
|
|
|
@ -564,7 +564,7 @@ static void addConnToPool(void* pool, SCliConn* conn) {
|
||||||
conn->task = NULL;
|
conn->task = NULL;
|
||||||
assert(!QUEUE_IS_EMPTY(&conn->list->conn));
|
assert(!QUEUE_IS_EMPTY(&conn->list->conn));
|
||||||
|
|
||||||
if (conn->list->size >= 10) {
|
if (conn->list->size >= 50) {
|
||||||
STaskArg* arg = taosMemoryCalloc(1, sizeof(STaskArg));
|
STaskArg* arg = taosMemoryCalloc(1, sizeof(STaskArg));
|
||||||
arg->param1 = conn;
|
arg->param1 = conn;
|
||||||
arg->param2 = thrd;
|
arg->param2 = thrd;
|
||||||
|
@ -1372,7 +1372,7 @@ int transReleaseCliHandle(void* handle) {
|
||||||
}
|
}
|
||||||
|
|
||||||
STransMsg tmsg = {.info.handle = handle};
|
STransMsg tmsg = {.info.handle = handle};
|
||||||
TRACE_SET_MSGID(&tmsg.info.traceId, tGenIdPI64());
|
// TRACE_SET_MSGID(&tmsg.info.traceId, tGenIdPI64());
|
||||||
|
|
||||||
SCliMsg* cmsg = taosMemoryCalloc(1, sizeof(SCliMsg));
|
SCliMsg* cmsg = taosMemoryCalloc(1, sizeof(SCliMsg));
|
||||||
cmsg->msg = tmsg;
|
cmsg->msg = tmsg;
|
||||||
|
@ -1388,12 +1388,11 @@ int transReleaseCliHandle(void* handle) {
|
||||||
}
|
}
|
||||||
|
|
||||||
int transSendRequest(void* shandle, const SEpSet* pEpSet, STransMsg* pReq, STransCtx* ctx) {
|
int transSendRequest(void* shandle, const SEpSet* pEpSet, STransMsg* pReq, STransCtx* ctx) {
|
||||||
// STrans* pTransInst = (STrans*)transAcquireExHandle(transGetInstMgt(), (int64_t)shandle);
|
STrans* pTransInst = (STrans*)transAcquireExHandle(transGetInstMgt(), (int64_t)shandle);
|
||||||
// if (pTransInst == NULL) {
|
if (pTransInst == NULL) {
|
||||||
// transFreeMsg(pReq->pCont);
|
transFreeMsg(pReq->pCont);
|
||||||
// return -1;
|
return -1;
|
||||||
// }
|
}
|
||||||
STrans* pTransInst = shandle;
|
|
||||||
|
|
||||||
bool valid = false;
|
bool valid = false;
|
||||||
SCliThrd* pThrd = transGetWorkThrd(pTransInst, (int64_t)pReq->info.handle, &valid);
|
SCliThrd* pThrd = transGetWorkThrd(pTransInst, (int64_t)pReq->info.handle, &valid);
|
||||||
|
@ -1429,23 +1428,22 @@ int transSendRequest(void* shandle, const SEpSet* pEpSet, STransMsg* pReq, STran
|
||||||
transReleaseExHandle(transGetInstMgt(), (int64_t)shandle);
|
transReleaseExHandle(transGetInstMgt(), (int64_t)shandle);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
// transReleaseExHandle(transGetInstMgt(), (int64_t)shandle);
|
transReleaseExHandle(transGetInstMgt(), (int64_t)shandle);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int transSendRecv(void* shandle, const SEpSet* pEpSet, STransMsg* pReq, STransMsg* pRsp) {
|
int transSendRecv(void* shandle, const SEpSet* pEpSet, STransMsg* pReq, STransMsg* pRsp) {
|
||||||
STrans* pTransInst = shandle;
|
STrans* pTransInst = (STrans*)transAcquireExHandle(transGetInstMgt(), (int64_t)shandle);
|
||||||
// STrans* pTransInst = (STrans*)transAcquireExHandle(transGetInstMgt(), (int64_t)shandle);
|
if (pTransInst == NULL) {
|
||||||
// if (pTransInst == NULL) {
|
transFreeMsg(pReq->pCont);
|
||||||
// transFreeMsg(pReq->pCont);
|
return -1;
|
||||||
// return -1;
|
}
|
||||||
// }
|
|
||||||
|
|
||||||
bool valid = false;
|
bool valid = false;
|
||||||
SCliThrd* pThrd = transGetWorkThrd(pTransInst, (int64_t)pReq->info.handle, &valid);
|
SCliThrd* pThrd = transGetWorkThrd(pTransInst, (int64_t)pReq->info.handle, &valid);
|
||||||
if (pThrd == NULL && valid == false) {
|
if (pThrd == NULL && valid == false) {
|
||||||
transFreeMsg(pReq->pCont);
|
transFreeMsg(pReq->pCont);
|
||||||
// transReleaseExHandle(transGetInstMgt(), (int64_t)shandle);
|
transReleaseExHandle(transGetInstMgt(), (int64_t)shandle);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1483,7 +1481,7 @@ int transSendRecv(void* shandle, const SEpSet* pEpSet, STransMsg* pReq, STransMs
|
||||||
_RETURN:
|
_RETURN:
|
||||||
tsem_destroy(sem);
|
tsem_destroy(sem);
|
||||||
taosMemoryFree(sem);
|
taosMemoryFree(sem);
|
||||||
// transReleaseExHandle(transGetInstMgt(), (int64_t)shandle);
|
transReleaseExHandle(transGetInstMgt(), (int64_t)shandle);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -156,7 +156,8 @@ int transAllocBuffer(SConnBuffer* connBuf, uv_buf_t* uvBuf) {
|
||||||
if (p->left < p->cap - p->len) {
|
if (p->left < p->cap - p->len) {
|
||||||
uvBuf->len = p->left;
|
uvBuf->len = p->left;
|
||||||
} else {
|
} else {
|
||||||
p->buf = taosMemoryRealloc(p->buf, p->left + p->len);
|
p->cap = p->left + p->len;
|
||||||
|
p->buf = taosMemoryRealloc(p->buf, p->cap);
|
||||||
uvBuf->base = p->buf + p->len;
|
uvBuf->base = p->buf + p->len;
|
||||||
uvBuf->len = p->left;
|
uvBuf->len = p->left;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue