Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aptend committed Sep 11, 2024
1 parent 7f9b069 commit a455ff1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/vm/engine/tae/logtail/mgr.go
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ func (mgr *Manager) GCByTS(ctx context.Context, ts types.TS) {
}
mgr.truncated = ts
cnt := mgr.table.TruncateByTimeStamp(ts)
logutil.Info("[logtail] GC", zap.String("ts", ts.ToString()), zap.Int("deleted", cnt))
logutil.Info("[logtail] GC", zap.String("ts", ts.ToString()), zap.Int("deleted-blk", cnt), zap.Int("remaining-row", mgr.table.BlockCount()))
}

func (mgr *Manager) TryCompactTable() {
Expand Down

0 comments on commit a455ff1

Please sign in to comment.