opt checkpoint

This commit is contained in:
Yihao Deng 2024-05-17 15:30:04 +08:00
parent b0377a2e3a
commit bb47a8df33
1 changed files with 1 additions and 2 deletions

View File

@ -1090,7 +1090,7 @@ int32_t chkpDoDbCheckpoint(rocksdb_t* db, char* path) {
taosMemoryFreeClear(err); taosMemoryFreeClear(err);
goto _ERROR; goto _ERROR;
} }
rocksdb_checkpoint_create(cp, path, 0, &err); rocksdb_checkpoint_create(cp, path, UINT64_MAX, &err);
if (err != NULL) { if (err != NULL) {
stError("failed to do checkpoint at:%s, reason:%s", path, err); stError("failed to do checkpoint at:%s, reason:%s", path, err);
taosMemoryFreeClear(err); taosMemoryFreeClear(err);
@ -1102,7 +1102,6 @@ _ERROR:
return code; return code;
} }
int32_t chkpPreFlushDb(rocksdb_t* db, rocksdb_column_family_handle_t** cf, int32_t nCf) { int32_t chkpPreFlushDb(rocksdb_t* db, rocksdb_column_family_handle_t** cf, int32_t nCf) {
if (nCf == 0) return 0;
int code = 0; int code = 0;
char* err = NULL; char* err = NULL;