[td-11818]Refactor.
This commit is contained in:
parent
4dbbf2863c
commit
b17b493221
|
@ -39,73 +39,73 @@ typedef struct SFilePage {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* create disk-based result buffer
|
* create disk-based result buffer
|
||||||
* @param pResultBuf
|
* @param pBuf
|
||||||
* @param rowSize
|
* @param rowSize
|
||||||
* @param pagesize
|
* @param pagesize
|
||||||
* @param inMemPages
|
* @param inMemPages
|
||||||
* @param handle
|
* @param handle
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
int32_t createDiskbasedBuffer(SDiskbasedBuf** pResultBuf, int32_t pagesize, int32_t inMemBufSize, uint64_t qId, const char* dir);
|
int32_t createDiskbasedBuffer(SDiskbasedBuf** pBuf, int32_t pagesize, int32_t inMemBufSize, uint64_t qId, const char* dir);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param pResultBuf
|
* @param pBuf
|
||||||
* @param groupId
|
* @param groupId
|
||||||
* @param pageId
|
* @param pageId
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
SFilePage* getNewDataBuf(SDiskbasedBuf* pResultBuf, int32_t groupId, int32_t* pageId);
|
SFilePage* getNewDataBuf(SDiskbasedBuf* pBuf, int32_t groupId, int32_t* pageId);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param pResultBuf
|
* @param pBuf
|
||||||
* @param groupId
|
* @param groupId
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
SIDList getDataBufPagesIdList(SDiskbasedBuf* pResultBuf, int32_t groupId);
|
SIDList getDataBufPagesIdList(SDiskbasedBuf* pBuf, int32_t groupId);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* get the specified buffer page by id
|
* get the specified buffer page by id
|
||||||
* @param pResultBuf
|
* @param pBuf
|
||||||
* @param id
|
* @param id
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
SFilePage* getBufPage(SDiskbasedBuf* pResultBuf, int32_t id);
|
SFilePage* getBufPage(SDiskbasedBuf* pBuf, int32_t id);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* release the referenced buf pages
|
* release the referenced buf pages
|
||||||
* @param pResultBuf
|
* @param pBuf
|
||||||
* @param page
|
* @param page
|
||||||
*/
|
*/
|
||||||
void releaseBufPage(SDiskbasedBuf* pResultBuf, void* page);
|
void releaseBufPage(SDiskbasedBuf* pBuf, void* page);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param pResultBuf
|
* @param pBuf
|
||||||
* @param pi
|
* @param pi
|
||||||
*/
|
*/
|
||||||
void releaseBufPageInfo(SDiskbasedBuf* pResultBuf, struct SPageInfo* pi);
|
void releaseBufPageInfo(SDiskbasedBuf* pBuf, struct SPageInfo* pi);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* get the total buffer size in the format of disk file
|
* get the total buffer size in the format of disk file
|
||||||
* @param pResultBuf
|
* @param pBuf
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
size_t getTotalBufSize(const SDiskbasedBuf* pResultBuf);
|
size_t getTotalBufSize(const SDiskbasedBuf* pBuf);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* get the number of groups in the result buffer
|
* get the number of groups in the result buffer
|
||||||
* @param pResultBuf
|
* @param pBuf
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
size_t getNumOfResultBufGroupId(const SDiskbasedBuf* pResultBuf);
|
size_t getNumOfResultBufGroupId(const SDiskbasedBuf* pBuf);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* destroy result buffer
|
* destroy result buffer
|
||||||
* @param pResultBuf
|
* @param pBuf
|
||||||
*/
|
*/
|
||||||
void destroyResultBuf(SDiskbasedBuf* pResultBuf);
|
void destroyResultBuf(SDiskbasedBuf* pBuf);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
|
@ -123,24 +123,30 @@ int32_t getPageId(const SPageInfo* pPgInfo);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return the buffer page size.
|
* Return the buffer page size.
|
||||||
* @param pResultBuf
|
* @param pBuf
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
int32_t getBufPageSize(const SDiskbasedBuf* pResultBuf);
|
int32_t getBufPageSize(const SDiskbasedBuf* pBuf);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param pResultBuf
|
* @param pBuf
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
bool isAllDataInMemBuf(const SDiskbasedBuf* pResultBuf);
|
bool isAllDataInMemBuf(const SDiskbasedBuf* pBuf);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the buffer page is dirty, and needs to be flushed to disk when swap out.
|
* Set the buffer page is dirty, and needs to be flushed to disk when swap out.
|
||||||
* @param pPageInfo
|
* @param pPageInfo
|
||||||
* @param dirty
|
* @param dirty
|
||||||
*/
|
*/
|
||||||
void setBufPageDirty(SPageInfo* pPageInfo, bool dirty);
|
void setBufPageDirty(SFilePage* pPageInfo, bool dirty);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Print the statistics when closing this buffer
|
||||||
|
* @param pBuf
|
||||||
|
*/
|
||||||
|
void printStatisBeforeClose(SDiskbasedBuf* pBuf);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|
|
@ -5729,6 +5729,8 @@ void addToDiskbasedBuf(SOrderOperatorInfo* pInfo, jmp_buf env) {
|
||||||
assert(size <= getBufPageSize(pInfo->pSortInternalBuf));
|
assert(size <= getBufPageSize(pInfo->pSortInternalBuf));
|
||||||
|
|
||||||
blockDataToBuf(pPage->data, p);
|
blockDataToBuf(pPage->data, p);
|
||||||
|
|
||||||
|
setBufPageDirty(pPage, true);
|
||||||
releaseBufPage(pInfo->pSortInternalBuf, pPage);
|
releaseBufPage(pInfo->pSortInternalBuf, pPage);
|
||||||
|
|
||||||
blockDataDestroy(p);
|
blockDataDestroy(p);
|
||||||
|
|
|
@ -293,6 +293,8 @@ TEST(testCase, external_sort_Test) {
|
||||||
// }
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
printStatisBeforeClose(((SOrderOperatorInfo*) pOperator->info)->pSortInternalBuf);
|
||||||
|
|
||||||
int64_t s2 = taosGetTimestampUs();
|
int64_t s2 = taosGetTimestampUs();
|
||||||
printf("total:%ld\n", s2 - s1);
|
printf("total:%ld\n", s2 - s1);
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
#include "tpagedbuf.h"
|
#include "tpagedbuf.h"
|
||||||
|
#include <ulog.h>
|
||||||
|
#include <zconf.h>
|
||||||
#include "stddef.h"
|
#include "stddef.h"
|
||||||
#include "taoserror.h"
|
#include "taoserror.h"
|
||||||
#include "tcompression.h"
|
#include "tcompression.h"
|
||||||
|
@ -28,8 +30,9 @@ typedef struct SPageInfo {
|
||||||
} SPageInfo;
|
} SPageInfo;
|
||||||
|
|
||||||
typedef struct SDiskbasedBufStatis {
|
typedef struct SDiskbasedBufStatis {
|
||||||
int32_t flushBytes;
|
int64_t flushBytes;
|
||||||
int32_t loadBytes;
|
int64_t loadBytes;
|
||||||
|
int32_t loadPages;
|
||||||
int32_t getPages;
|
int32_t getPages;
|
||||||
int32_t releasePages;
|
int32_t releasePages;
|
||||||
int32_t flushPages;
|
int32_t flushPages;
|
||||||
|
@ -55,12 +58,15 @@ typedef struct SDiskbasedBuf {
|
||||||
|
|
||||||
uint64_t qId; // for debug purpose
|
uint64_t qId; // for debug purpose
|
||||||
SDiskbasedBufStatis statis;
|
SDiskbasedBufStatis statis;
|
||||||
|
bool printStatis; // Print statistics info when closing this buffer.
|
||||||
} SDiskbasedBuf;
|
} SDiskbasedBuf;
|
||||||
|
|
||||||
int32_t createDiskbasedBuffer(SDiskbasedBuf** pResultBuf, int32_t pagesize, int32_t inMemBufSize, uint64_t qId, const char* dir) {
|
static void printStatisData(const SDiskbasedBuf* pBuf);
|
||||||
*pResultBuf = calloc(1, sizeof(SDiskbasedBuf));
|
|
||||||
|
|
||||||
SDiskbasedBuf* pResBuf = *pResultBuf;
|
int32_t createDiskbasedBuffer(SDiskbasedBuf** pBuf, int32_t pagesize, int32_t inMemBufSize, uint64_t qId, const char* dir) {
|
||||||
|
*pBuf = calloc(1, sizeof(SDiskbasedBuf));
|
||||||
|
|
||||||
|
SDiskbasedBuf* pResBuf = *pBuf;
|
||||||
if (pResBuf == NULL) {
|
if (pResBuf == NULL) {
|
||||||
return TSDB_CODE_OUT_OF_MEMORY;
|
return TSDB_CODE_OUT_OF_MEMORY;
|
||||||
}
|
}
|
||||||
|
@ -97,50 +103,50 @@ int32_t createDiskbasedBuffer(SDiskbasedBuf** pResultBuf, int32_t pagesize, int3
|
||||||
return TSDB_CODE_SUCCESS;
|
return TSDB_CODE_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int32_t createDiskFile(SDiskbasedBuf* pResultBuf) {
|
static int32_t createDiskFile(SDiskbasedBuf* pBuf) {
|
||||||
pResultBuf->file = fopen(pResultBuf->path, "wb+");
|
pBuf->file = fopen(pBuf->path, "wb+");
|
||||||
if (pResultBuf->file == NULL) {
|
if (pBuf->file == NULL) {
|
||||||
// qError("failed to create tmp file: %s on disk. %s", pResultBuf->path, strerror(errno));
|
// qError("failed to create tmp file: %s on disk. %s", pBuf->path, strerror(errno));
|
||||||
return TAOS_SYSTEM_ERROR(errno);
|
return TAOS_SYSTEM_ERROR(errno);
|
||||||
}
|
}
|
||||||
|
|
||||||
return TSDB_CODE_SUCCESS;
|
return TSDB_CODE_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
static char* doCompressData(void* data, int32_t srcSize, int32_t *dst, SDiskbasedBuf* pResultBuf) { // do nothing
|
static char* doCompressData(void* data, int32_t srcSize, int32_t *dst, SDiskbasedBuf* pBuf) { // do nothing
|
||||||
if (!pResultBuf->comp) {
|
if (!pBuf->comp) {
|
||||||
*dst = srcSize;
|
*dst = srcSize;
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
*dst = tsCompressString(data, srcSize, 1, pResultBuf->assistBuf, srcSize, ONE_STAGE_COMP, NULL, 0);
|
*dst = tsCompressString(data, srcSize, 1, pBuf->assistBuf, srcSize, ONE_STAGE_COMP, NULL, 0);
|
||||||
|
|
||||||
memcpy(data, pResultBuf->assistBuf, *dst);
|
memcpy(data, pBuf->assistBuf, *dst);
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
static char* doDecompressData(void* data, int32_t srcSize, int32_t *dst, SDiskbasedBuf* pResultBuf) { // do nothing
|
static char* doDecompressData(void* data, int32_t srcSize, int32_t *dst, SDiskbasedBuf* pBuf) { // do nothing
|
||||||
if (!pResultBuf->comp) {
|
if (!pBuf->comp) {
|
||||||
*dst = srcSize;
|
*dst = srcSize;
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
*dst = tsDecompressString(data, srcSize, 1, pResultBuf->assistBuf, pResultBuf->pageSize, ONE_STAGE_COMP, NULL, 0);
|
*dst = tsDecompressString(data, srcSize, 1, pBuf->assistBuf, pBuf->pageSize, ONE_STAGE_COMP, NULL, 0);
|
||||||
if (*dst > 0) {
|
if (*dst > 0) {
|
||||||
memcpy(data, pResultBuf->assistBuf, *dst);
|
memcpy(data, pBuf->assistBuf, *dst);
|
||||||
}
|
}
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
static uint64_t allocatePositionInFile(SDiskbasedBuf* pResultBuf, size_t size) {
|
static uint64_t allocatePositionInFile(SDiskbasedBuf* pBuf, size_t size) {
|
||||||
if (pResultBuf->pFree == NULL) {
|
if (pBuf->pFree == NULL) {
|
||||||
return pResultBuf->nextPos;
|
return pBuf->nextPos;
|
||||||
} else {
|
} else {
|
||||||
int32_t offset = -1;
|
int32_t offset = -1;
|
||||||
|
|
||||||
size_t num = taosArrayGetSize(pResultBuf->pFree);
|
size_t num = taosArrayGetSize(pBuf->pFree);
|
||||||
for(int32_t i = 0; i < num; ++i) {
|
for(int32_t i = 0; i < num; ++i) {
|
||||||
SFreeListItem* pi = taosArrayGet(pResultBuf->pFree, i);
|
SFreeListItem* pi = taosArrayGet(pBuf->pFree, i);
|
||||||
if (pi->len >= size) {
|
if (pi->len >= size) {
|
||||||
offset = pi->offset;
|
offset = pi->offset;
|
||||||
pi->offset += (int32_t)size;
|
pi->offset += (int32_t)size;
|
||||||
|
@ -151,128 +157,141 @@ static uint64_t allocatePositionInFile(SDiskbasedBuf* pResultBuf, size_t size) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// no available recycle space, allocate new area in file
|
// no available recycle space, allocate new area in file
|
||||||
return pResultBuf->nextPos;
|
return pBuf->nextPos;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static char* doFlushPageToDisk(SDiskbasedBuf* pResultBuf, SPageInfo* pg) {
|
static char* doFlushPageToDisk(SDiskbasedBuf* pBuf, SPageInfo* pg) {
|
||||||
assert(!pg->used && pg->pData != NULL);
|
assert(!pg->used && pg->pData != NULL);
|
||||||
|
|
||||||
int32_t size = -1;
|
int32_t size = -1;
|
||||||
char* t = doCompressData(GET_DATA_PAYLOAD(pg), pResultBuf->pageSize, &size, pResultBuf);
|
char* t = doCompressData(GET_DATA_PAYLOAD(pg), pBuf->pageSize, &size, pBuf);
|
||||||
|
|
||||||
// this page is flushed to disk for the first time
|
// this page is flushed to disk for the first time
|
||||||
if (pg->offset == -1) {
|
if (pg->offset == -1) {
|
||||||
pg->offset = allocatePositionInFile(pResultBuf, size);
|
assert(pg->dirty == true);
|
||||||
pResultBuf->nextPos += size;
|
|
||||||
|
|
||||||
int32_t ret = fseek(pResultBuf->file, pg->offset, SEEK_SET);
|
pg->offset = allocatePositionInFile(pBuf, size);
|
||||||
|
pBuf->nextPos += size;
|
||||||
|
|
||||||
|
int32_t ret = fseek(pBuf->file, pg->offset, SEEK_SET);
|
||||||
if (ret != 0) {
|
if (ret != 0) {
|
||||||
terrno = TAOS_SYSTEM_ERROR(errno);
|
terrno = TAOS_SYSTEM_ERROR(errno);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = (int32_t) fwrite(t, 1, size, pResultBuf->file);
|
ret = (int32_t) fwrite(t, 1, size, pBuf->file);
|
||||||
if (ret != size) {
|
if (ret != size) {
|
||||||
terrno = TAOS_SYSTEM_ERROR(errno);
|
terrno = TAOS_SYSTEM_ERROR(errno);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (pResultBuf->fileSize < pg->offset + size) {
|
if (pBuf->fileSize < pg->offset + size) {
|
||||||
pResultBuf->fileSize = pg->offset + size;
|
pBuf->fileSize = pg->offset + size;
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
|
pBuf->statis.flushBytes += size;
|
||||||
|
pBuf->statis.flushPages += 1;
|
||||||
|
} else if (pg->dirty) {
|
||||||
// length becomes greater, current space is not enough, allocate new place, otherwise, do nothing
|
// length becomes greater, current space is not enough, allocate new place, otherwise, do nothing
|
||||||
if (pg->length < size) {
|
if (pg->length < size) {
|
||||||
// 1. add current space to free list
|
// 1. add current space to free list
|
||||||
SPageDiskInfo dinfo = {.length = pg->length, .offset = pg->offset};
|
SPageDiskInfo dinfo = {.length = pg->length, .offset = pg->offset};
|
||||||
taosArrayPush(pResultBuf->pFree, &dinfo);
|
taosArrayPush(pBuf->pFree, &dinfo);
|
||||||
|
|
||||||
// 2. allocate new position, and update the info
|
// 2. allocate new position, and update the info
|
||||||
pg->offset = allocatePositionInFile(pResultBuf, size);
|
pg->offset = allocatePositionInFile(pBuf, size);
|
||||||
pResultBuf->nextPos += size;
|
pBuf->nextPos += size;
|
||||||
}
|
}
|
||||||
|
|
||||||
//3. write to disk.
|
// 3. write to disk.
|
||||||
int32_t ret = fseek(pResultBuf->file, pg->offset, SEEK_SET);
|
int32_t ret = fseek(pBuf->file, pg->offset, SEEK_SET);
|
||||||
if (ret != 0) {
|
if (ret != 0) {
|
||||||
terrno = TAOS_SYSTEM_ERROR(errno);
|
terrno = TAOS_SYSTEM_ERROR(errno);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = (int32_t)fwrite(t, 1, size, pResultBuf->file);
|
ret = (int32_t)fwrite(t, 1, size, pBuf->file);
|
||||||
if (ret != size) {
|
if (ret != size) {
|
||||||
terrno = TAOS_SYSTEM_ERROR(errno);
|
terrno = TAOS_SYSTEM_ERROR(errno);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (pResultBuf->fileSize < pg->offset + size) {
|
if (pBuf->fileSize < pg->offset + size) {
|
||||||
pResultBuf->fileSize = pg->offset + size;
|
pBuf->fileSize = pg->offset + size;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pBuf->statis.flushBytes += size;
|
||||||
|
pBuf->statis.flushPages += 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
char* ret = pg->pData;
|
char* pDataBuf = pg->pData;
|
||||||
memset(ret, 0, pResultBuf->pageSize);
|
memset(pDataBuf, 0, pBuf->pageSize);
|
||||||
|
|
||||||
pg->pData = NULL;
|
pg->pData = NULL; // this means the data is not in buffer
|
||||||
pg->length = size;
|
pg->length = size;
|
||||||
|
pg->dirty = false;
|
||||||
|
|
||||||
pResultBuf->statis.flushBytes += pg->length;
|
return pDataBuf;
|
||||||
return ret;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static char* flushPageToDisk(SDiskbasedBuf* pResultBuf, SPageInfo* pg) {
|
static char* flushPageToDisk(SDiskbasedBuf* pBuf, SPageInfo* pg) {
|
||||||
int32_t ret = TSDB_CODE_SUCCESS;
|
int32_t ret = TSDB_CODE_SUCCESS;
|
||||||
assert(((int64_t) pResultBuf->numOfPages * pResultBuf->pageSize) == pResultBuf->totalBufSize && pResultBuf->numOfPages >= pResultBuf->inMemPages);
|
assert(((int64_t) pBuf->numOfPages * pBuf->pageSize) == pBuf->totalBufSize && pBuf->numOfPages >= pBuf->inMemPages);
|
||||||
|
|
||||||
if (pResultBuf->file == NULL) {
|
if (pBuf->file == NULL) {
|
||||||
if ((ret = createDiskFile(pResultBuf)) != TSDB_CODE_SUCCESS) {
|
if ((ret = createDiskFile(pBuf)) != TSDB_CODE_SUCCESS) {
|
||||||
terrno = ret;
|
terrno = ret;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return doFlushPageToDisk(pResultBuf, pg);
|
return doFlushPageToDisk(pBuf, pg);
|
||||||
}
|
}
|
||||||
|
|
||||||
// load file block data in disk
|
// load file block data in disk
|
||||||
static char* loadPageFromDisk(SDiskbasedBuf* pResultBuf, SPageInfo* pg) {
|
static int32_t loadPageFromDisk(SDiskbasedBuf* pBuf, SPageInfo* pg) {
|
||||||
int32_t ret = fseek(pResultBuf->file, pg->offset, SEEK_SET);
|
int32_t ret = fseek(pBuf->file, pg->offset, SEEK_SET);
|
||||||
ret = (int32_t)fread(GET_DATA_PAYLOAD(pg), 1, pg->length, pResultBuf->file);
|
if (ret != 0) {
|
||||||
if (ret != pg->length) {
|
ret = TAOS_SYSTEM_ERROR(errno);
|
||||||
terrno = errno;
|
return ret;
|
||||||
return NULL;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pResultBuf->statis.loadBytes += pg->length;
|
ret = (int32_t)fread(GET_DATA_PAYLOAD(pg), 1, pg->length, pBuf->file);
|
||||||
|
if (ret != pg->length) {
|
||||||
|
ret = TAOS_SYSTEM_ERROR(errno);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
pBuf->statis.loadBytes += pg->length;
|
||||||
|
pBuf->statis.loadPages += 1;
|
||||||
|
|
||||||
int32_t fullSize = 0;
|
int32_t fullSize = 0;
|
||||||
doDecompressData(GET_DATA_PAYLOAD(pg), pg->length, &fullSize, pResultBuf);
|
doDecompressData(GET_DATA_PAYLOAD(pg), pg->length, &fullSize, pBuf);
|
||||||
|
return 0;
|
||||||
return (char*)GET_DATA_PAYLOAD(pg);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static SIDList addNewGroup(SDiskbasedBuf* pResultBuf, int32_t groupId) {
|
static SIDList addNewGroup(SDiskbasedBuf* pBuf, int32_t groupId) {
|
||||||
assert(taosHashGet(pResultBuf->groupSet, (const char*) &groupId, sizeof(int32_t)) == NULL);
|
assert(taosHashGet(pBuf->groupSet, (const char*) &groupId, sizeof(int32_t)) == NULL);
|
||||||
|
|
||||||
SArray* pa = taosArrayInit(1, POINTER_BYTES);
|
SArray* pa = taosArrayInit(1, POINTER_BYTES);
|
||||||
int32_t ret = taosHashPut(pResultBuf->groupSet, (const char*)&groupId, sizeof(int32_t), &pa, POINTER_BYTES);
|
int32_t ret = taosHashPut(pBuf->groupSet, (const char*)&groupId, sizeof(int32_t), &pa, POINTER_BYTES);
|
||||||
assert(ret == 0);
|
assert(ret == 0);
|
||||||
|
|
||||||
return pa;
|
return pa;
|
||||||
}
|
}
|
||||||
|
|
||||||
static SPageInfo* registerPage(SDiskbasedBuf* pResultBuf, int32_t groupId, int32_t pageId) {
|
static SPageInfo* registerPage(SDiskbasedBuf* pBuf, int32_t groupId, int32_t pageId) {
|
||||||
SIDList list = NULL;
|
SIDList list = NULL;
|
||||||
|
|
||||||
char** p = taosHashGet(pResultBuf->groupSet, (const char*)&groupId, sizeof(int32_t));
|
char** p = taosHashGet(pBuf->groupSet, (const char*)&groupId, sizeof(int32_t));
|
||||||
if (p == NULL) { // it is a new group id
|
if (p == NULL) { // it is a new group id
|
||||||
list = addNewGroup(pResultBuf, groupId);
|
list = addNewGroup(pBuf, groupId);
|
||||||
} else {
|
} else {
|
||||||
list = (SIDList) (*p);
|
list = (SIDList) (*p);
|
||||||
}
|
}
|
||||||
|
|
||||||
pResultBuf->numOfPages += 1;
|
pBuf->numOfPages += 1;
|
||||||
|
|
||||||
SPageInfo* ppi = malloc(sizeof(SPageInfo));//{ .info = PAGE_INFO_INITIALIZER, .pageId = pageId, .pn = NULL};
|
SPageInfo* ppi = malloc(sizeof(SPageInfo));//{ .info = PAGE_INFO_INITIALIZER, .pageId = pageId, .pn = NULL};
|
||||||
|
|
||||||
|
@ -286,9 +305,9 @@ static SPageInfo* registerPage(SDiskbasedBuf* pResultBuf, int32_t groupId, int32
|
||||||
return *(SPageInfo**) taosArrayPush(list, &ppi);
|
return *(SPageInfo**) taosArrayPush(list, &ppi);
|
||||||
}
|
}
|
||||||
|
|
||||||
static SListNode* getEldestUnrefedPage(SDiskbasedBuf* pResultBuf) {
|
static SListNode* getEldestUnrefedPage(SDiskbasedBuf* pBuf) {
|
||||||
SListIter iter = {0};
|
SListIter iter = {0};
|
||||||
tdListInitIter(pResultBuf->lruList, &iter, TD_LIST_BACKWARD);
|
tdListInitIter(pBuf->lruList, &iter, TD_LIST_BACKWARD);
|
||||||
|
|
||||||
SListNode* pn = NULL;
|
SListNode* pn = NULL;
|
||||||
while((pn = tdListNext(&iter)) != NULL) {
|
while((pn = tdListNext(&iter)) != NULL) {
|
||||||
|
@ -305,23 +324,22 @@ static SListNode* getEldestUnrefedPage(SDiskbasedBuf* pResultBuf) {
|
||||||
return pn;
|
return pn;
|
||||||
}
|
}
|
||||||
|
|
||||||
static char* evacOneDataPage(SDiskbasedBuf* pResultBuf) {
|
static char* evacOneDataPage(SDiskbasedBuf* pBuf) {
|
||||||
char* bufPage = NULL;
|
char* bufPage = NULL;
|
||||||
SListNode* pn = getEldestUnrefedPage(pResultBuf);
|
SListNode* pn = getEldestUnrefedPage(pBuf);
|
||||||
|
|
||||||
// all pages are referenced by user, try to allocate new space
|
// all pages are referenced by user, try to allocate new space
|
||||||
if (pn == NULL) {
|
if (pn == NULL) {
|
||||||
assert(0);
|
assert(0);
|
||||||
int32_t prev = pResultBuf->inMemPages;
|
int32_t prev = pBuf->inMemPages;
|
||||||
|
|
||||||
// increase by 50% of previous mem pages
|
// increase by 50% of previous mem pages
|
||||||
pResultBuf->inMemPages = (int32_t)(pResultBuf->inMemPages * 1.5f);
|
pBuf->inMemPages = (int32_t)(pBuf->inMemPages * 1.5f);
|
||||||
|
|
||||||
// qWarn("%p in memory buf page not sufficient, expand from %d to %d, page size:%d", pResultBuf, prev,
|
// qWarn("%p in memory buf page not sufficient, expand from %d to %d, page size:%d", pBuf, prev,
|
||||||
// pResultBuf->inMemPages, pResultBuf->pageSize);
|
// pBuf->inMemPages, pBuf->pageSize);
|
||||||
} else {
|
} else {
|
||||||
pResultBuf->statis.flushPages += 1;
|
tdListPopNode(pBuf->lruList, pn);
|
||||||
tdListPopNode(pResultBuf->lruList, pn);
|
|
||||||
|
|
||||||
SPageInfo* d = *(SPageInfo**) pn->data;
|
SPageInfo* d = *(SPageInfo**) pn->data;
|
||||||
assert(d->pn == pn);
|
assert(d->pn == pn);
|
||||||
|
@ -329,7 +347,7 @@ static char* evacOneDataPage(SDiskbasedBuf* pResultBuf) {
|
||||||
d->pn = NULL;
|
d->pn = NULL;
|
||||||
tfree(pn);
|
tfree(pn);
|
||||||
|
|
||||||
bufPage = flushPageToDisk(pResultBuf, d);
|
bufPage = flushPageToDisk(pBuf, d);
|
||||||
}
|
}
|
||||||
|
|
||||||
return bufPage;
|
return bufPage;
|
||||||
|
@ -350,12 +368,12 @@ static FORCE_INLINE size_t getAllocPageSize(int32_t pageSize) {
|
||||||
return pageSize + POINTER_BYTES + 2 + sizeof(SFilePage);
|
return pageSize + POINTER_BYTES + 2 + sizeof(SFilePage);
|
||||||
}
|
}
|
||||||
|
|
||||||
SFilePage* getNewDataBuf(SDiskbasedBuf* pResultBuf, int32_t groupId, int32_t* pageId) {
|
SFilePage* getNewDataBuf(SDiskbasedBuf* pBuf, int32_t groupId, int32_t* pageId) {
|
||||||
pResultBuf->statis.getPages += 1;
|
pBuf->statis.getPages += 1;
|
||||||
|
|
||||||
char* availablePage = NULL;
|
char* availablePage = NULL;
|
||||||
if (NO_IN_MEM_AVAILABLE_PAGES(pResultBuf)) {
|
if (NO_IN_MEM_AVAILABLE_PAGES(pBuf)) {
|
||||||
availablePage = evacOneDataPage(pResultBuf);
|
availablePage = evacOneDataPage(pBuf);
|
||||||
|
|
||||||
// Failed to allocate a new buffer page, and there is an error occurs.
|
// Failed to allocate a new buffer page, and there is an error occurs.
|
||||||
if (availablePage == NULL) {
|
if (availablePage == NULL) {
|
||||||
|
@ -364,26 +382,26 @@ SFilePage* getNewDataBuf(SDiskbasedBuf* pResultBuf, int32_t groupId, int32_t* pa
|
||||||
}
|
}
|
||||||
|
|
||||||
// register new id in this group
|
// register new id in this group
|
||||||
*pageId = (++pResultBuf->allocateId);
|
*pageId = (++pBuf->allocateId);
|
||||||
|
|
||||||
// register page id info
|
// register page id info
|
||||||
SPageInfo* pi = registerPage(pResultBuf, groupId, *pageId);
|
SPageInfo* pi = registerPage(pBuf, groupId, *pageId);
|
||||||
|
|
||||||
// add to LRU list
|
// add to LRU list
|
||||||
assert(listNEles(pResultBuf->lruList) < pResultBuf->inMemPages && pResultBuf->inMemPages > 0);
|
assert(listNEles(pBuf->lruList) < pBuf->inMemPages && pBuf->inMemPages > 0);
|
||||||
lruListPushFront(pResultBuf->lruList, pi);
|
lruListPushFront(pBuf->lruList, pi);
|
||||||
|
|
||||||
// add to hash map
|
// add to hash map
|
||||||
taosHashPut(pResultBuf->all, pageId, sizeof(int32_t), &pi, POINTER_BYTES);
|
taosHashPut(pBuf->all, pageId, sizeof(int32_t), &pi, POINTER_BYTES);
|
||||||
|
|
||||||
// allocate buf
|
// allocate buf
|
||||||
if (availablePage == NULL) {
|
if (availablePage == NULL) {
|
||||||
pi->pData = calloc(1, getAllocPageSize(pResultBuf->pageSize)); // add extract bytes in case of zipped buffer increased.
|
pi->pData = calloc(1, getAllocPageSize(pBuf->pageSize)); // add extract bytes in case of zipped buffer increased.
|
||||||
} else {
|
} else {
|
||||||
pi->pData = availablePage;
|
pi->pData = availablePage;
|
||||||
}
|
}
|
||||||
|
|
||||||
pResultBuf->totalBufSize += pResultBuf->pageSize;
|
pBuf->totalBufSize += pBuf->pageSize;
|
||||||
|
|
||||||
((void**)pi->pData)[0] = pi;
|
((void**)pi->pData)[0] = pi;
|
||||||
pi->used = true;
|
pi->used = true;
|
||||||
|
@ -391,16 +409,16 @@ SFilePage* getNewDataBuf(SDiskbasedBuf* pResultBuf, int32_t groupId, int32_t* pa
|
||||||
return (void *)(GET_DATA_PAYLOAD(pi));
|
return (void *)(GET_DATA_PAYLOAD(pi));
|
||||||
}
|
}
|
||||||
|
|
||||||
SFilePage* getBufPage(SDiskbasedBuf* pResultBuf, int32_t id) {
|
SFilePage* getBufPage(SDiskbasedBuf* pBuf, int32_t id) {
|
||||||
assert(pResultBuf != NULL && id >= 0);
|
assert(pBuf != NULL && id >= 0);
|
||||||
pResultBuf->statis.getPages += 1;
|
pBuf->statis.getPages += 1;
|
||||||
|
|
||||||
SPageInfo** pi = taosHashGet(pResultBuf->all, &id, sizeof(int32_t));
|
SPageInfo** pi = taosHashGet(pBuf->all, &id, sizeof(int32_t));
|
||||||
assert(pi != NULL && *pi != NULL);
|
assert(pi != NULL && *pi != NULL);
|
||||||
|
|
||||||
if ((*pi)->pData != NULL) { // it is in memory
|
if ((*pi)->pData != NULL) { // it is in memory
|
||||||
// no need to update the LRU list if only one page exists
|
// no need to update the LRU list if only one page exists
|
||||||
if (pResultBuf->numOfPages == 1) {
|
if (pBuf->numOfPages == 1) {
|
||||||
(*pi)->used = true;
|
(*pi)->used = true;
|
||||||
return (void *)(GET_DATA_PAYLOAD(*pi));
|
return (void *)(GET_DATA_PAYLOAD(*pi));
|
||||||
}
|
}
|
||||||
|
@ -408,7 +426,7 @@ SFilePage* getBufPage(SDiskbasedBuf* pResultBuf, int32_t id) {
|
||||||
SPageInfo** pInfo = (SPageInfo**) ((*pi)->pn->data);
|
SPageInfo** pInfo = (SPageInfo**) ((*pi)->pn->data);
|
||||||
assert(*pInfo == *pi);
|
assert(*pInfo == *pi);
|
||||||
|
|
||||||
lruListMoveToFront(pResultBuf->lruList, (*pi));
|
lruListMoveToFront(pBuf->lruList, (*pi));
|
||||||
(*pi)->used = true;
|
(*pi)->used = true;
|
||||||
|
|
||||||
return (void *)(GET_DATA_PAYLOAD(*pi));
|
return (void *)(GET_DATA_PAYLOAD(*pi));
|
||||||
|
@ -417,79 +435,93 @@ SFilePage* getBufPage(SDiskbasedBuf* pResultBuf, int32_t id) {
|
||||||
assert((*pi)->pData == NULL && (*pi)->pn == NULL && (*pi)->length >= 0 && (*pi)->offset >= 0);
|
assert((*pi)->pData == NULL && (*pi)->pn == NULL && (*pi)->length >= 0 && (*pi)->offset >= 0);
|
||||||
|
|
||||||
char* availablePage = NULL;
|
char* availablePage = NULL;
|
||||||
if (NO_IN_MEM_AVAILABLE_PAGES(pResultBuf)) {
|
if (NO_IN_MEM_AVAILABLE_PAGES(pBuf)) {
|
||||||
availablePage = evacOneDataPage(pResultBuf);
|
availablePage = evacOneDataPage(pBuf);
|
||||||
if (availablePage == NULL) {
|
if (availablePage == NULL) {
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (availablePage == NULL) {
|
if (availablePage == NULL) {
|
||||||
(*pi)->pData = calloc(1, getAllocPageSize(pResultBuf->pageSize));
|
(*pi)->pData = calloc(1, getAllocPageSize(pBuf->pageSize));
|
||||||
} else {
|
} else {
|
||||||
(*pi)->pData = availablePage;
|
(*pi)->pData = availablePage;
|
||||||
}
|
}
|
||||||
|
|
||||||
((void**)((*pi)->pData))[0] = (*pi);
|
((void**)((*pi)->pData))[0] = (*pi);
|
||||||
|
|
||||||
lruListPushFront(pResultBuf->lruList, *pi);
|
lruListPushFront(pBuf->lruList, *pi);
|
||||||
(*pi)->used = true;
|
(*pi)->used = true;
|
||||||
|
|
||||||
loadPageFromDisk(pResultBuf, *pi);
|
int32_t code = loadPageFromDisk(pBuf, *pi);
|
||||||
|
if (code != 0) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
return (void *)(GET_DATA_PAYLOAD(*pi));
|
return (void *)(GET_DATA_PAYLOAD(*pi));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void releaseBufPage(SDiskbasedBuf* pResultBuf, void* page) {
|
void releaseBufPage(SDiskbasedBuf* pBuf, void* page) {
|
||||||
assert(pResultBuf != NULL && page != NULL);
|
assert(pBuf != NULL && page != NULL);
|
||||||
char* p = (char*) page - POINTER_BYTES;
|
int32_t offset = offsetof(SPageInfo, pData);
|
||||||
|
char* p = page - offset;
|
||||||
|
|
||||||
SPageInfo* ppi = ((SPageInfo**) p)[0];
|
SPageInfo* ppi = ((SPageInfo**) p)[0];
|
||||||
releaseBufPageInfo(pResultBuf, ppi);
|
releaseBufPageInfo(pBuf, ppi);
|
||||||
}
|
}
|
||||||
|
|
||||||
void releaseBufPageInfo(SDiskbasedBuf* pResultBuf, SPageInfo* pi) {
|
void releaseBufPageInfo(SDiskbasedBuf* pBuf, SPageInfo* pi) {
|
||||||
assert(pi->pData != NULL && pi->used);
|
assert(pi->pData != NULL && pi->used);
|
||||||
|
|
||||||
pi->used = false;
|
pi->used = false;
|
||||||
pResultBuf->statis.releasePages += 1;
|
pBuf->statis.releasePages += 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t getNumOfResultBufGroupId(const SDiskbasedBuf* pResultBuf) { return taosHashGetSize(pResultBuf->groupSet); }
|
size_t getNumOfResultBufGroupId(const SDiskbasedBuf* pBuf) { return taosHashGetSize(pBuf->groupSet); }
|
||||||
|
|
||||||
size_t getTotalBufSize(const SDiskbasedBuf* pResultBuf) { return (size_t)pResultBuf->totalBufSize; }
|
size_t getTotalBufSize(const SDiskbasedBuf* pBuf) { return (size_t)pBuf->totalBufSize; }
|
||||||
|
|
||||||
SIDList getDataBufPagesIdList(SDiskbasedBuf* pResultBuf, int32_t groupId) {
|
SIDList getDataBufPagesIdList(SDiskbasedBuf* pBuf, int32_t groupId) {
|
||||||
assert(pResultBuf != NULL);
|
assert(pBuf != NULL);
|
||||||
|
|
||||||
char** p = taosHashGet(pResultBuf->groupSet, (const char*)&groupId, sizeof(int32_t));
|
char** p = taosHashGet(pBuf->groupSet, (const char*)&groupId, sizeof(int32_t));
|
||||||
if (p == NULL) { // it is a new group id
|
if (p == NULL) { // it is a new group id
|
||||||
return pResultBuf->emptyDummyIdList;
|
return pBuf->emptyDummyIdList;
|
||||||
} else {
|
} else {
|
||||||
return (SArray*) (*p);
|
return (SArray*) (*p);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void destroyResultBuf(SDiskbasedBuf* pResultBuf) {
|
void destroyResultBuf(SDiskbasedBuf* pBuf) {
|
||||||
if (pResultBuf == NULL) {
|
if (pBuf == NULL) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (pResultBuf->file != NULL) {
|
printStatisData(pBuf);
|
||||||
// qDebug("QInfo:0x%"PRIx64" res output buffer closed, total:%.2f Kb, inmem size:%.2f Kb, file size:%.2f Kb",
|
|
||||||
// pResultBuf->qId, pResultBuf->totalBufSize/1024.0, listNEles(pResultBuf->lruList) * pResultBuf->pageSize / 1024.0,
|
|
||||||
// pResultBuf->fileSize/1024.0);
|
|
||||||
|
|
||||||
fclose(pResultBuf->file);
|
if (pBuf->file != NULL) {
|
||||||
|
uDebug("Paged buffer closed, total:%.2f Kb (%d Pages), inmem size:%.2f Kb (%d Pages), file size:%.2f Kb, page size:%.2f Kb, %"PRIx64"\n",
|
||||||
|
pBuf->totalBufSize/1024.0, pBuf->numOfPages, listNEles(pBuf->lruList) * pBuf->pageSize / 1024.0,
|
||||||
|
listNEles(pBuf->lruList), pBuf->fileSize/1024.0, pBuf->pageSize/1024.0f, pBuf->qId);
|
||||||
|
|
||||||
|
fclose(pBuf->file);
|
||||||
} else {
|
} else {
|
||||||
// qDebug("QInfo:0x%"PRIx64" res output buffer closed, total:%.2f Kb, no file created", pResultBuf->qId,
|
uDebug("Paged buffer closed, total:%.2f Kb, no file created, %"PRIx64, pBuf->totalBufSize/1024.0, pBuf->qId);
|
||||||
// pResultBuf->totalBufSize/1024.0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
remove(pResultBuf->path);
|
// print the statistics information
|
||||||
tfree(pResultBuf->path);
|
{
|
||||||
|
SDiskbasedBufStatis *ps = &pBuf->statis;
|
||||||
|
uDebug("Get/Release pages:%d/%d, flushToDisk:%.2f Kb (%d Pages), loadFromDisk:%.2f Kb (%d Pages), avgPageSize:%.2f Kb\n"
|
||||||
|
, ps->getPages, ps->releasePages, ps->flushBytes/1024.0f, ps->flushPages, ps->loadBytes/1024.0f, ps->loadPages
|
||||||
|
, ps->loadBytes/(1024.0 * ps->loadPages));
|
||||||
|
}
|
||||||
|
|
||||||
SArray** p = taosHashIterate(pResultBuf->groupSet, NULL);
|
remove(pBuf->path);
|
||||||
|
tfree(pBuf->path);
|
||||||
|
|
||||||
|
SArray** p = taosHashIterate(pBuf->groupSet, NULL);
|
||||||
while(p) {
|
while(p) {
|
||||||
size_t n = taosArrayGetSize(*p);
|
size_t n = taosArrayGetSize(*p);
|
||||||
for(int32_t i = 0; i < n; ++i) {
|
for(int32_t i = 0; i < n; ++i) {
|
||||||
|
@ -499,16 +531,16 @@ void destroyResultBuf(SDiskbasedBuf* pResultBuf) {
|
||||||
}
|
}
|
||||||
|
|
||||||
taosArrayDestroy(*p);
|
taosArrayDestroy(*p);
|
||||||
p = taosHashIterate(pResultBuf->groupSet, p);
|
p = taosHashIterate(pBuf->groupSet, p);
|
||||||
}
|
}
|
||||||
|
|
||||||
tdListFree(pResultBuf->lruList);
|
tdListFree(pBuf->lruList);
|
||||||
taosArrayDestroy(pResultBuf->emptyDummyIdList);
|
taosArrayDestroy(pBuf->emptyDummyIdList);
|
||||||
taosHashCleanup(pResultBuf->groupSet);
|
taosHashCleanup(pBuf->groupSet);
|
||||||
taosHashCleanup(pResultBuf->all);
|
taosHashCleanup(pBuf->all);
|
||||||
|
|
||||||
tfree(pResultBuf->assistBuf);
|
tfree(pBuf->assistBuf);
|
||||||
tfree(pResultBuf);
|
tfree(pBuf);
|
||||||
}
|
}
|
||||||
|
|
||||||
SPageInfo* getLastPageInfo(SIDList pList) {
|
SPageInfo* getLastPageInfo(SIDList pList) {
|
||||||
|
@ -522,14 +554,41 @@ int32_t getPageId(const SPageInfo* pPgInfo) {
|
||||||
return pPgInfo->pageId;
|
return pPgInfo->pageId;
|
||||||
}
|
}
|
||||||
|
|
||||||
int32_t getBufPageSize(const SDiskbasedBuf* pResultBuf) {
|
int32_t getBufPageSize(const SDiskbasedBuf* pBuf) {
|
||||||
return pResultBuf->pageSize;
|
return pBuf->pageSize;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool isAllDataInMemBuf(const SDiskbasedBuf* pResultBuf) {
|
bool isAllDataInMemBuf(const SDiskbasedBuf* pBuf) {
|
||||||
return pResultBuf->fileSize == 0;
|
return pBuf->fileSize == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void setBufPageDirty(SPageInfo* pPageInfo, bool dirty) {
|
void setBufPageDirty(SFilePage* pPage, bool dirty) {
|
||||||
pPageInfo->dirty = dirty;
|
int32_t offset = offsetof(SPageInfo, pData); // todo extract method
|
||||||
|
char* p = (char*)pPage - offset;
|
||||||
|
|
||||||
|
SPageInfo* ppi = ((SPageInfo**) p)[0];
|
||||||
|
ppi->dirty = dirty;
|
||||||
|
}
|
||||||
|
|
||||||
|
void printStatisBeforeClose(SDiskbasedBuf* pBuf) {
|
||||||
|
pBuf->printStatis = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void printStatisData(const SDiskbasedBuf* pBuf) {
|
||||||
|
if (!pBuf->printStatis) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const SDiskbasedBufStatis* ps = &pBuf->statis;
|
||||||
|
|
||||||
|
printf(
|
||||||
|
"Paged buffer closed, total:%.2f Kb (%d Pages), inmem size:%.2f Kb (%d Pages), file size:%.2f Kb, page size:%.2f "
|
||||||
|
"Kb, %" PRIx64 "\n",
|
||||||
|
pBuf->totalBufSize / 1024.0, pBuf->numOfPages, listNEles(pBuf->lruList) * pBuf->pageSize / 1024.0,
|
||||||
|
listNEles(pBuf->lruList), pBuf->fileSize / 1024.0, pBuf->pageSize / 1024.0f, pBuf->qId);
|
||||||
|
|
||||||
|
printf(
|
||||||
|
"Get/Release pages:%d/%d, flushToDisk:%.2f Kb (%d Pages), loadFromDisk:%.2f Kb (%d Pages), avgPageSize:%.2f Kb\n",
|
||||||
|
ps->getPages, ps->releasePages, ps->flushBytes / 1024.0f, ps->flushPages, ps->loadBytes / 1024.0f, ps->loadPages,
|
||||||
|
ps->loadBytes / (1024.0 * ps->loadPages));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue