Micro Compaction Part 1 : master placeholder

This commit is contained in:
obdev 2024-09-20 06:35:17 +00:00 committed by ob-robot
parent d31ecabcce
commit a9f6491d8e
3 changed files with 4 additions and 1 deletions

View File

@ -95,6 +95,7 @@ enum ObDiagnoseTabletType {
TYPE_MDS_MINI_MERGE,
TYPE_BATCH_EXECUTE, // for batch execute dag
TYPE_S2_REFRESH, // for shared storage
TYPE_MICRO_MINI_MERGE,
TYPE_DIAGNOSE_TABLET_MAX
};

View File

@ -78,7 +78,8 @@ const char* ObITable::table_type_name_[] =
"DDL_MEM_CG",
"DDL_MEM_MINI_SSTABLE",
"MDS_MINI",
"MDS_MINOR"
"MDS_MINOR",
"MICRO_MINI_SSTABLE"
};
uint64_t ObITable::TableKey::hash() const

View File

@ -109,6 +109,7 @@ public:
DDL_MEM_MINI_SSTABLE = 25,
MDS_MINI_SSTABLE = 26,
MDS_MINOR_SSTABLE = 27,
MICRO_MINI_SSTABLE = 28,
// < add new sstable before here, See is_sstable()
MAX_TABLE_TYPE