mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-27 21:33:41 +02:00
121 lines
3.8 KiB
Go
121 lines
3.8 KiB
Go
package scheduler
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/jackc/pgx/v5"
|
|
"github.com/jackc/pgx/v5/pgxpool"
|
|
|
|
"github.com/multica-ai/multica/server/internal/taskusagebackfill"
|
|
)
|
|
|
|
// JobNameRollupTaskUsageHourly is the canonical name used in audit
|
|
// rows. Stable across releases — do not rename without a migration.
|
|
const JobNameRollupTaskUsageHourly = "rollup_task_usage_hourly"
|
|
|
|
// TaskUsageHourlyJob returns the JobSpec that drives the
|
|
// task_usage_hourly rollup. The handler calls the existing
|
|
// `rollup_task_usage_hourly()` SQL function, which already holds
|
|
// advisory lock 4246 internally so a concurrent legacy pg_cron tick or
|
|
// manual call is safe (RFC §11.3).
|
|
//
|
|
// The spec is the canonical settings from the RFC §11.1:
|
|
//
|
|
// cadence: 5m
|
|
// schedule_delay: 5m
|
|
// catch_up_mode: latest_only (handler watermark drives history)
|
|
// run_timeout: 25m
|
|
// stale_timeout: 30m
|
|
// heartbeat_interval: 30s
|
|
// max_attempts: 3
|
|
// retry_backoff: 1m, 5m, 15m
|
|
// allow_stale_reentry: true
|
|
func TaskUsageHourlyJob(pool *pgxpool.Pool) JobSpec {
|
|
return JobSpec{
|
|
Name: JobNameRollupTaskUsageHourly,
|
|
Cadence: 5 * time.Minute,
|
|
ScheduleDelay: 5 * time.Minute,
|
|
CatchUpMode: CatchUpLatestOnly,
|
|
CatchUpWindow: 24 * time.Hour,
|
|
RunTimeout: 25 * time.Minute,
|
|
StaleTimeout: 30 * time.Minute,
|
|
HeartbeatInterval: 30 * time.Second,
|
|
AllowStaleReentry: true,
|
|
MaxAttempts: 3,
|
|
RetryBackoff: []time.Duration{
|
|
1 * time.Minute,
|
|
5 * time.Minute,
|
|
15 * time.Minute,
|
|
},
|
|
Scopes: StaticScopes(ScopeGlobal),
|
|
Handler: makeTaskUsageHourlyHandler(pool),
|
|
}
|
|
}
|
|
|
|
// makeTaskUsageHourlyHandler reads the watermark before/after the SQL
|
|
// function so the audit row records whether business state advanced.
|
|
// The function call itself acquires advisory lock 4246 inside SQL — if
|
|
// another writer holds the lock the function returns 0 immediately and
|
|
// this attempt completes as SUCCESS with rows_affected=0, which is the
|
|
// correct "lost the inner race, no work to do" outcome.
|
|
func makeTaskUsageHourlyHandler(pool *pgxpool.Pool) Handler {
|
|
return func(ctx context.Context, in HandlerInput) (HandlerResult, error) {
|
|
watermarkBefore, err := readTaskUsageWatermark(ctx, pool)
|
|
if err != nil {
|
|
return HandlerResult{}, fmt.Errorf("read watermark before: %w", err)
|
|
}
|
|
|
|
var rows int64
|
|
if err := pool.QueryRow(ctx, `SELECT rollup_task_usage_hourly()`).Scan(&rows); err != nil {
|
|
return HandlerResult{}, fmt.Errorf("rollup_task_usage_hourly: %w", err)
|
|
}
|
|
|
|
watermarkAfter, err := readTaskUsageWatermark(ctx, pool)
|
|
if err != nil {
|
|
return HandlerResult{}, fmt.Errorf("read watermark after: %w", err)
|
|
}
|
|
|
|
// Light heartbeat at the end keeps stale_after fresh for jobs
|
|
// that ran much shorter than HeartbeatInterval.
|
|
if in.Heartbeat != nil {
|
|
_ = in.Heartbeat(ctx)
|
|
}
|
|
|
|
result := map[string]any{
|
|
"advisory_lock_id": taskusagebackfill.AdvisoryLockKey,
|
|
}
|
|
if !watermarkBefore.IsZero() {
|
|
result["watermark_before"] = watermarkBefore.UTC().Format(time.RFC3339)
|
|
}
|
|
if !watermarkAfter.IsZero() {
|
|
result["watermark_after"] = watermarkAfter.UTC().Format(time.RFC3339)
|
|
}
|
|
return HandlerResult{
|
|
RowsAffected: rows,
|
|
Result: result,
|
|
}, nil
|
|
}
|
|
}
|
|
|
|
// readTaskUsageWatermark reads the current watermark; returns zero
|
|
// time.Time if the row is missing (shouldn't happen post-101, but the
|
|
// handler should not panic in that case).
|
|
func readTaskUsageWatermark(ctx context.Context, pool *pgxpool.Pool) (time.Time, error) {
|
|
var t time.Time
|
|
err := pool.QueryRow(ctx, `
|
|
SELECT watermark_at
|
|
FROM task_usage_hourly_rollup_state
|
|
WHERE id = 1
|
|
`).Scan(&t)
|
|
if err != nil {
|
|
if errors.Is(err, pgx.ErrNoRows) {
|
|
return time.Time{}, nil
|
|
}
|
|
return time.Time{}, err
|
|
}
|
|
return t, nil
|
|
}
|