fix: memory leak of geos
This commit is contained in:
parent
2457c61411
commit
800e7c4e7a
|
@ -23,6 +23,7 @@
|
|||
#include "query.h"
|
||||
#include "scheduler.h"
|
||||
#include "tdatablock.h"
|
||||
#include "tgeosctx.h"
|
||||
#include "tglobal.h"
|
||||
#include "tmsg.h"
|
||||
#include "tref.h"
|
||||
|
@ -94,6 +95,7 @@ void taos_cleanup(void) {
|
|||
tmqMgmtClose();
|
||||
|
||||
DestroyRegexCache();
|
||||
destroyThreadLocalGeosCtx();
|
||||
|
||||
tscInfo("all local resources released");
|
||||
taosCleanupCfg();
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
#include "index.h"
|
||||
#include "qworker.h"
|
||||
#include "tcompression.h"
|
||||
#include "tgeosctx.h"
|
||||
#include "tglobal.h"
|
||||
#include "tgrant.h"
|
||||
#include "tstream.h"
|
||||
|
@ -121,6 +122,7 @@ void dmCleanupDnode(SDnode *pDnode) {
|
|||
streamMetaCleanup();
|
||||
indexCleanup();
|
||||
taosConvDestroy();
|
||||
destroyThreadLocalGeosCtx();
|
||||
|
||||
// compress destroy
|
||||
tsCompressExit();
|
||||
|
|
|
@ -15,38 +15,82 @@
|
|||
|
||||
#include "tgeosctx.h"
|
||||
#include "tdef.h"
|
||||
#include "tlockfree.h"
|
||||
#include "tlog.h"
|
||||
|
||||
static threadlocal SGeosContext tlGeosCtx = {0};
|
||||
typedef struct {
|
||||
SGeosContext *pool;
|
||||
int32_t capacity;
|
||||
int32_t size;
|
||||
SRWLatch lock;
|
||||
} SGeosContextPool;
|
||||
|
||||
SGeosContext* getThreadLocalGeosCtx() { return &tlGeosCtx; }
|
||||
static SGeosContextPool sGeosPool = {0};
|
||||
|
||||
void destroyThreadLocalGeosCtx() {
|
||||
if (tlGeosCtx.WKTReader) {
|
||||
GEOSWKTReader_destroy_r(tlGeosCtx.handle, tlGeosCtx.WKTReader);
|
||||
tlGeosCtx.WKTReader = NULL;
|
||||
static threadlocal SGeosContext *tlGeosCtx = NULL;
|
||||
|
||||
SGeosContext *getThreadLocalGeosCtx() {
|
||||
if (tlGeosCtx) return tlGeosCtx;
|
||||
|
||||
taosWLockLatch(&sGeosPool.lock);
|
||||
if (sGeosPool.size >= sGeosPool.capacity) {
|
||||
sGeosPool.capacity += 64;
|
||||
void *tmp = taosMemoryRealloc(sGeosPool.pool, sGeosPool.capacity * sizeof(SGeosContext));
|
||||
if (!tmp) {
|
||||
taosWUnLockLatch(&sGeosPool.lock);
|
||||
terrno = TSDB_CODE_OUT_OF_MEMORY;
|
||||
return NULL;
|
||||
}
|
||||
sGeosPool.pool = tmp;
|
||||
TAOS_MEMSET(sGeosPool.pool + sGeosPool.size, 0, (sGeosPool.capacity - sGeosPool.size) * sizeof(SGeosContext));
|
||||
}
|
||||
tlGeosCtx = sGeosPool.pool + sGeosPool.size;
|
||||
++sGeosPool.size;
|
||||
taosWUnLockLatch(&sGeosPool.lock);
|
||||
|
||||
if (tlGeosCtx.WKTWriter) {
|
||||
GEOSWKTWriter_destroy_r(tlGeosCtx.handle, tlGeosCtx.WKTWriter);
|
||||
tlGeosCtx.WKTWriter = NULL;
|
||||
}
|
||||
return tlGeosCtx;
|
||||
}
|
||||
|
||||
if (tlGeosCtx.WKBReader) {
|
||||
GEOSWKBReader_destroy_r(tlGeosCtx.handle, tlGeosCtx.WKBReader);
|
||||
tlGeosCtx.WKBReader = NULL;
|
||||
}
|
||||
static void destroyGeosCtx(SGeosContext *pCtx) {
|
||||
if (pCtx) {
|
||||
if (pCtx->WKTReader) {
|
||||
GEOSWKTReader_destroy_r(pCtx->handle, pCtx->WKTReader);
|
||||
pCtx->WKTReader = NULL;
|
||||
}
|
||||
|
||||
if (tlGeosCtx.WKBWriter) {
|
||||
GEOSWKBWriter_destroy_r(tlGeosCtx.handle, tlGeosCtx.WKBWriter);
|
||||
tlGeosCtx.WKBWriter = NULL;
|
||||
}
|
||||
if (pCtx->WKTWriter) {
|
||||
GEOSWKTWriter_destroy_r(pCtx->handle, pCtx->WKTWriter);
|
||||
pCtx->WKTWriter = NULL;
|
||||
}
|
||||
|
||||
if (tlGeosCtx.WKTRegex) {
|
||||
destroyRegexes(tlGeosCtx.WKTRegex, tlGeosCtx.WKTMatchData);
|
||||
}
|
||||
if (pCtx->WKBReader) {
|
||||
GEOSWKBReader_destroy_r(pCtx->handle, pCtx->WKBReader);
|
||||
pCtx->WKBReader = NULL;
|
||||
}
|
||||
|
||||
if (tlGeosCtx.handle) {
|
||||
GEOS_finish_r(tlGeosCtx.handle);
|
||||
tlGeosCtx.handle = NULL;
|
||||
if (pCtx->WKBWriter) {
|
||||
GEOSWKBWriter_destroy_r(pCtx->handle, pCtx->WKBWriter);
|
||||
pCtx->WKBWriter = NULL;
|
||||
}
|
||||
|
||||
if (pCtx->WKTRegex) {
|
||||
destroyRegexes(pCtx->WKTRegex, pCtx->WKTMatchData);
|
||||
pCtx->WKTRegex = NULL;
|
||||
pCtx->WKTMatchData = NULL;
|
||||
}
|
||||
|
||||
if (pCtx->handle) {
|
||||
GEOS_finish_r(pCtx->handle);
|
||||
pCtx->handle = NULL;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void destroyThreadLocalGeosCtx() {
|
||||
uInfo("geos ctx is cleaned up");
|
||||
if (!sGeosPool.pool) return;
|
||||
for (int32_t i = 0; i < sGeosPool.size; ++i) {
|
||||
destroyGeosCtx(sGeosPool.pool + i);
|
||||
}
|
||||
taosMemoryFreeClear(sGeosPool.pool);
|
||||
}
|
|
@ -178,7 +178,7 @@ void *taosProcessSchedQueue(void *scheduler) {
|
|||
(*(msg.tfp))(msg.ahandle, msg.thandle);
|
||||
}
|
||||
|
||||
destroyThreadLocalGeosCtx();
|
||||
// destroyThreadLocalGeosCtx();
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
|
|
@ -105,7 +105,7 @@ static void *tQWorkerThreadFp(SQueueWorker *worker) {
|
|||
taosUpdateItemSize(qinfo.queue, 1);
|
||||
}
|
||||
|
||||
destroyThreadLocalGeosCtx();
|
||||
// destroyThreadLocalGeosCtx();
|
||||
DestoryThreadLocalRegComp();
|
||||
|
||||
return NULL;
|
||||
|
@ -665,7 +665,7 @@ static void *tQueryAutoQWorkerThreadFp(SQueryAutoQWorker *worker) {
|
|||
}
|
||||
}
|
||||
|
||||
destroyThreadLocalGeosCtx();
|
||||
// destroyThreadLocalGeosCtx();
|
||||
DestoryThreadLocalRegComp();
|
||||
|
||||
return NULL;
|
||||
|
|
Loading…
Reference in New Issue