Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix file not found for GC #19891

Merged
merged 4 commits into from
Nov 8, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions pkg/util/metric/v2/dashboard/grafana_dashboard_task.go
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,7 @@ func (c *DashboardCreator) initTaskStorageUsageRow() dashboard.Option {
[]string{
c.getMetricWithFilter(`mo_task_short_duration_seconds_bucket`, `type="gckp_collect_usage"`),
c.getMetricWithFilter(`mo_task_short_duration_seconds_bucket`, `type="ickp_collect_usage"`),
c.getMetricWithFilter(`mo_task_short_duration_seconds_bucket`, `type="compacted_collect_usage"`),
c.getMetricWithFilter(`mo_task_short_duration_seconds_bucket`, `type="handle_usage_request"`),
c.getMetricWithFilter(`mo_task_short_duration_seconds_bucket`, `type="show_accounts_get_table_stats"`),
c.getMetricWithFilter(`mo_task_short_duration_seconds_bucket`, `type="show_accounts_get_storage_usage"`),
Expand All @@ -237,6 +238,7 @@ func (c *DashboardCreator) initTaskStorageUsageRow() dashboard.Option {
[]string{
"gckp_collect_usage",
"ickp_collect_usage",
"compacted_collect_usage",
"handle_usage_request",
"show_accounts_get_table_stats",
"show_accounts_get_storage_usage",
Expand Down
10 changes: 6 additions & 4 deletions pkg/vm/engine/tae/db/gc/v3/checkpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,8 @@ func (c *checkpointCleaner) Replay() (err error) {
ckpData,
c.mutation.snapshotMeta,
accountSnapshots,
pitrs)
pitrs,
0)
logutil.Info("GC-REPLAY-COLLECT-SNAPSHOT-SIZE",
zap.String("task", c.TaskNameLocked()),
zap.Int("size", len(accountSnapshots)),
Expand Down Expand Up @@ -711,6 +712,7 @@ func (c *checkpointCleaner) mergeCheckpointFilesLocked(
memoryBuffer *containers.OneSchemaBatchBuffer,
accountSnapshots map[uint32][]types.TS,
pitrs *logtail.PitrInfo,
gcFileCount int,
) (err error) {
// checkpointLowWaterMark is empty only in the following cases:
// 1. no incremental and no gloabl checkpoint
Expand Down Expand Up @@ -810,7 +812,8 @@ func (c *checkpointCleaner) mergeCheckpointFilesLocked(
newCheckpointData,
c.mutation.snapshotMeta,
accountSnapshots,
pitrs)
pitrs,
gcFileCount)
if newCheckpoint == nil {
panic("MergeCheckpoint new checkpoint is nil")
}
Expand Down Expand Up @@ -1040,7 +1043,7 @@ func (c *checkpointCleaner) tryGCAgainstGCKPLocked(
if waterMark.GT(&scanMark) {
waterMark = scanMark
}
err = c.mergeCheckpointFilesLocked(&waterMark, memoryBuffer, accountSnapshots, pitrs)
err = c.mergeCheckpointFilesLocked(&waterMark, memoryBuffer, accountSnapshots, pitrs, len(filesToGC))
if err != nil {
extraErrMsg = fmt.Sprintf("mergeCheckpointFilesLocked %v failed", waterMark.ToString())
}
Expand Down Expand Up @@ -1073,7 +1076,6 @@ func (c *checkpointCleaner) doGCAgainstGlobalCheckpointLocked(
zap.Duration("soft-gc", softCost),
zap.Duration("merge-table", mergeCost),
zap.Error(err),
zap.Strings("files-to-gc", filesToGC),
zap.String("metafile", metafile),
zap.String("extra-err-msg", extraErrMsg),
)
Expand Down
16 changes: 15 additions & 1 deletion pkg/vm/engine/tae/db/gc/v3/exec_v1.go
Original file line number Diff line number Diff line change
Expand Up @@ -342,11 +342,25 @@ func MakeFinalCanGCSinker(
ctx context.Context, bat *batch.Batch,
) error {
clear(buffer)
var dropTSs []types.TS
var tableIDs []uint64
if bat.Vecs[0].Length() > 0 {
dropTSs = vector.MustFixedColNoTypeCheck[types.TS](bat.Vecs[2])
tableIDs = vector.MustFixedColNoTypeCheck[uint64](bat.Vecs[4])
}
for i := 0; i < bat.Vecs[0].Length(); i++ {
buf := bat.Vecs[0].GetRawBytesAt(i)
stats := (*objectio.ObjectStats)(unsafe.Pointer(&buf[0]))
name := stats.ObjectName().String()
buffer[name] = struct{}{}
dropTS := dropTSs[i]
tableID := tableIDs[i]
if !dropTS.IsEmpty() {
buffer[name] = struct{}{}
continue
}
if !logtail.IsMoTable(tableID) {
buffer[name] = struct{}{}
}
}
for name := range buffer {
*filesToGC = append(*filesToGC, name)
Expand Down
15 changes: 10 additions & 5 deletions pkg/vm/engine/tae/logtail/snapshot.go
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ func (sm *SnapshotMeta) copyTablesLocked() map[uint32]map[uint64]*tableInfo {
return tables
}

func isMoTable(tid uint64) bool {
func IsMoTable(tid uint64) bool {
return tid == catalog2.MO_TABLES_ID
}

Expand Down Expand Up @@ -353,7 +353,7 @@ func (sm *SnapshotMeta) updateTableInfo(
stats objectio.ObjectStats,
createTS types.TS, deleteTS types.TS,
) {
if !isMoTable(tid) {
if !IsMoTable(tid) {
return
}
if !stats.GetAppendable() {
Expand Down Expand Up @@ -546,7 +546,10 @@ func (sm *SnapshotMeta) updateTableInfo(

for pk, tables := range sm.tablePKIndex {
if len(tables) > 1 {
panic(fmt.Sprintf("table %v has more than one entry, tables len %d", pk, len(tables)))
logutil.Warn("UpdateSnapTable-Error",
zap.String("table", pk),
zap.Int("len", len(tables)),
)
}
if len(tables) == 0 {
continue
Expand Down Expand Up @@ -1140,7 +1143,9 @@ func (sm *SnapshotMeta) RebuildTableInfo(ins *containers.Batch) {
continue
}
if len(sm.tablePKIndex[pk]) > 0 {
panic(fmt.Sprintf("pk %s already exists, table: %d", pk, tid))
logutil.Warn("RebuildTableInfo-PK-Exists",
zap.String("pk", pk),
zap.Uint64("table", tid))
}
sm.tablePKIndex[pk] = make([]*tableInfo, 1)
sm.tablePKIndex[pk][0] = table
Expand Down Expand Up @@ -1197,7 +1202,7 @@ func (sm *SnapshotMeta) RebuildAObjectDel(ins *containers.Batch) {
for i := 0; i < ins.Length(); i++ {
commitTs := commitTsVec[i]
if _, ok := sm.aobjDelTsMap[commitTs]; ok {
panic(fmt.Sprintf("commitTs %v already exists", commitTs.ToString()))
logutil.Warn("RebuildAObjectDel-Exists", zap.Any("commitTs", commitTs))
}
sm.aobjDelTsMap[commitTs] = struct{}{}
}
Expand Down
4 changes: 2 additions & 2 deletions pkg/vm/engine/tae/logtail/storage_usage.go
Original file line number Diff line number Diff line change
Expand Up @@ -1176,13 +1176,13 @@ func FillUsageBatOfCompacted(
meta *SnapshotMeta,
accountSnapshots map[uint32][]types.TS,
pitrs *PitrInfo,
gcFileCount int,
) {
now := time.Now()
var memoryUsed float64
usage.EnterProcessing()
defer func() {
v2.TaskStorageUsageCacheMemUsedGauge.Set(memoryUsed)
v2.TaskCompactedCollectUsageDurationHistogram.Observe(time.Since(now).Seconds())
v2.TaskCompactedCollectUsageDurationHistogram.Observe(float64(gcFileCount))
usage.LeaveProcessing()
}()
objects := data.GetObjectBatchs()
Expand Down
Loading