Skip to content

Commit 5e52717

Browse files
committed
Update warmup function to optimize container log retrieval
1 parent a6893f3 commit 5e52717

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

pkg/schema/v1/container.go

+5-1
Original file line numberDiff line numberDiff line change
@@ -289,9 +289,13 @@ func SyncContainers(ctx context.Context, db *database.Database, g *errgroup.Grou
289289
func warmup(ctx context.Context, db *database.Database) error {
290290
g, ctx := errgroup.WithContext(ctx)
291291

292+
query := `SELECT cl.* FROM container_log cl INNER JOIN (SELECT container_id, pod_id, MAX(last_update) as last_update
293+
FROM container_log GROUP BY container_id) max_cl ON cl.container_id = max_cl.container_id AND cl.pod_id = max_cl.pod_id
294+
AND cl.last_update = max_cl.last_update`
295+
292296
entities, errs := db.YieldAll(ctx, func() (interface{}, error) {
293297
return &ContainerLog{}, nil
294-
}, db.BuildSelectStmt(ContainerLog{}, ContainerLog{}))
298+
}, query)
295299
com.ErrgroupReceive(ctx, g, errs)
296300

297301
g.Go(func() error {

0 commit comments

Comments
 (0)