Initial AI service skeleton
This commit is contained in:
53
internal/config/config.go
Normal file
53
internal/config/config.go
Normal file
@@ -0,0 +1,53 @@
|
||||
package config
|
||||
|
||||
import (
|
||||
"os"
|
||||
"strconv"
|
||||
)
|
||||
|
||||
type Config struct {
|
||||
HTTPHost string
|
||||
HTTPPort int
|
||||
DatabaseURL string
|
||||
MigrateOnStart bool
|
||||
}
|
||||
|
||||
func Load() Config {
|
||||
return Config{
|
||||
HTTPHost: envString("HTTP_HOST", "0.0.0.0"),
|
||||
HTTPPort: envInt("HTTP_PORT", 8080),
|
||||
DatabaseURL: envString("DATABASE_URL", ""),
|
||||
MigrateOnStart: envBool("MIGRATE_ON_START", true),
|
||||
}
|
||||
}
|
||||
|
||||
func envString(key, fallback string) string {
|
||||
if v := os.Getenv(key); v != "" {
|
||||
return v
|
||||
}
|
||||
return fallback
|
||||
}
|
||||
|
||||
func envInt(key string, fallback int) int {
|
||||
raw := os.Getenv(key)
|
||||
if raw == "" {
|
||||
return fallback
|
||||
}
|
||||
v, err := strconv.Atoi(raw)
|
||||
if err != nil {
|
||||
return fallback
|
||||
}
|
||||
return v
|
||||
}
|
||||
|
||||
func envBool(key string, fallback bool) bool {
|
||||
raw := os.Getenv(key)
|
||||
if raw == "" {
|
||||
return fallback
|
||||
}
|
||||
v, err := strconv.ParseBool(raw)
|
||||
if err != nil {
|
||||
return fallback
|
||||
}
|
||||
return v
|
||||
}
|
||||
22
internal/httpapi/helpers.go
Normal file
22
internal/httpapi/helpers.go
Normal file
@@ -0,0 +1,22 @@
|
||||
package httpapi
|
||||
|
||||
import (
|
||||
"context"
|
||||
"encoding/json"
|
||||
"net/http"
|
||||
"time"
|
||||
)
|
||||
|
||||
func contextWithTimeout(r *http.Request, timeout time.Duration) (context.Context, context.CancelFunc) {
|
||||
return context.WithTimeout(r.Context(), timeout)
|
||||
}
|
||||
|
||||
func writeJSON(w http.ResponseWriter, status int, payload any) {
|
||||
w.Header().Set("Content-Type", "application/json; charset=utf-8")
|
||||
w.WriteHeader(status)
|
||||
_ = json.NewEncoder(w).Encode(payload)
|
||||
}
|
||||
|
||||
func writeError(w http.ResponseWriter, status int, message string) {
|
||||
writeJSON(w, status, map[string]string{"error": message})
|
||||
}
|
||||
205
internal/httpapi/server.go
Normal file
205
internal/httpapi/server.go
Normal file
@@ -0,0 +1,205 @@
|
||||
package httpapi
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"net/http"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"ai-service/internal/config"
|
||||
"ai-service/internal/model"
|
||||
"ai-service/internal/store"
|
||||
|
||||
"github.com/google/uuid"
|
||||
)
|
||||
|
||||
type Server struct {
|
||||
store *store.Store
|
||||
cfg config.Config
|
||||
}
|
||||
|
||||
func NewServer(store *store.Store, cfg config.Config) http.Handler {
|
||||
return &Server{store: store, cfg: cfg}
|
||||
}
|
||||
|
||||
func (s *Server) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||||
path := strings.TrimSuffix(r.URL.Path, "/")
|
||||
if path == "" {
|
||||
path = "/"
|
||||
}
|
||||
switch {
|
||||
case r.Method == http.MethodGet && path == "/healthz":
|
||||
writeJSON(w, http.StatusOK, map[string]string{"status": "ok"})
|
||||
case r.Method == http.MethodGet && path == "/readyz":
|
||||
s.handleReady(w, r)
|
||||
case r.Method == http.MethodGet && path == "/":
|
||||
writeJSON(w, http.StatusOK, map[string]string{"service": "ai-service"})
|
||||
case r.Method == http.MethodPost && path == "/api/v1/jobs":
|
||||
s.handleCreateJob(w, r)
|
||||
case r.Method == http.MethodPost && path == "/api/v1/jobs/batch":
|
||||
s.handleCreateBatch(w, r)
|
||||
case r.Method == http.MethodGet && strings.HasPrefix(path, "/api/v1/jobs/"):
|
||||
s.handleGetJob(w, r, path)
|
||||
case r.Method == http.MethodPost && strings.HasPrefix(path, "/api/v1/jobs/") && strings.HasSuffix(path, "/retry"):
|
||||
s.handleRetryJob(w, r, path)
|
||||
case r.Method == http.MethodGet && path == "/api/v1/stats":
|
||||
s.handleStats(w, r)
|
||||
default:
|
||||
writeError(w, http.StatusNotFound, "not found")
|
||||
}
|
||||
}
|
||||
|
||||
func (s *Server) handleReady(w http.ResponseWriter, r *http.Request) {
|
||||
ctx, cancel := contextWithTimeout(r, 3*time.Second)
|
||||
defer cancel()
|
||||
if err := s.store.Ping(ctx); err != nil {
|
||||
writeError(w, http.StatusServiceUnavailable, err.Error())
|
||||
return
|
||||
}
|
||||
writeJSON(w, http.StatusOK, map[string]string{"status": "ready"})
|
||||
}
|
||||
|
||||
func (s *Server) handleCreateJob(w http.ResponseWriter, r *http.Request) {
|
||||
var req model.CreateJob
|
||||
if err := json.NewDecoder(r.Body).Decode(&req); err != nil {
|
||||
writeError(w, http.StatusBadRequest, "bad json")
|
||||
return
|
||||
}
|
||||
ctx, cancel := contextWithTimeout(r, 8*time.Second)
|
||||
defer cancel()
|
||||
job, err := s.store.CreateJob(ctx, req)
|
||||
if err != nil {
|
||||
status := http.StatusInternalServerError
|
||||
if isValidationError(err) {
|
||||
status = http.StatusBadRequest
|
||||
}
|
||||
writeError(w, status, err.Error())
|
||||
return
|
||||
}
|
||||
writeJSON(w, http.StatusCreated, job)
|
||||
}
|
||||
|
||||
type createBatchRequest struct {
|
||||
OwnerService string `json:"owner_service"`
|
||||
TaskType string `json:"task_type"`
|
||||
ModelProfile string `json:"model_profile"`
|
||||
Priority int `json:"priority"`
|
||||
MaxAttempts int `json:"max_attempts"`
|
||||
Jobs []model.CreateJob `json:"jobs"`
|
||||
}
|
||||
|
||||
type createBatchResponse struct {
|
||||
Jobs []*model.Job `json:"jobs"`
|
||||
}
|
||||
|
||||
func (s *Server) handleCreateBatch(w http.ResponseWriter, r *http.Request) {
|
||||
var req createBatchRequest
|
||||
if err := json.NewDecoder(r.Body).Decode(&req); err != nil {
|
||||
writeError(w, http.StatusBadRequest, "bad json")
|
||||
return
|
||||
}
|
||||
if len(req.Jobs) == 0 {
|
||||
writeError(w, http.StatusBadRequest, "jobs is required")
|
||||
return
|
||||
}
|
||||
ctx, cancel := contextWithTimeout(r, 20*time.Second)
|
||||
defer cancel()
|
||||
out := createBatchResponse{Jobs: make([]*model.Job, 0, len(req.Jobs))}
|
||||
for _, item := range req.Jobs {
|
||||
if item.OwnerService == "" {
|
||||
item.OwnerService = req.OwnerService
|
||||
}
|
||||
if item.TaskType == "" {
|
||||
item.TaskType = req.TaskType
|
||||
}
|
||||
if item.ModelProfile == "" {
|
||||
item.ModelProfile = req.ModelProfile
|
||||
}
|
||||
if item.Priority == 0 {
|
||||
item.Priority = req.Priority
|
||||
}
|
||||
if item.MaxAttempts == 0 {
|
||||
item.MaxAttempts = req.MaxAttempts
|
||||
}
|
||||
job, err := s.store.CreateJob(ctx, item)
|
||||
if err != nil {
|
||||
status := http.StatusInternalServerError
|
||||
if isValidationError(err) {
|
||||
status = http.StatusBadRequest
|
||||
}
|
||||
writeError(w, status, err.Error())
|
||||
return
|
||||
}
|
||||
out.Jobs = append(out.Jobs, job)
|
||||
}
|
||||
writeJSON(w, http.StatusCreated, out)
|
||||
}
|
||||
|
||||
func (s *Server) handleGetJob(w http.ResponseWriter, r *http.Request, path string) {
|
||||
id, err := jobIDFromPath(path, false)
|
||||
if err != nil {
|
||||
writeError(w, http.StatusBadRequest, err.Error())
|
||||
return
|
||||
}
|
||||
ctx, cancel := contextWithTimeout(r, 8*time.Second)
|
||||
defer cancel()
|
||||
job, err := s.store.GetJob(ctx, id)
|
||||
if err != nil {
|
||||
writeError(w, http.StatusInternalServerError, err.Error())
|
||||
return
|
||||
}
|
||||
if job == nil {
|
||||
writeError(w, http.StatusNotFound, "job not found")
|
||||
return
|
||||
}
|
||||
writeJSON(w, http.StatusOK, job)
|
||||
}
|
||||
|
||||
func (s *Server) handleRetryJob(w http.ResponseWriter, r *http.Request, path string) {
|
||||
id, err := jobIDFromPath(path, true)
|
||||
if err != nil {
|
||||
writeError(w, http.StatusBadRequest, err.Error())
|
||||
return
|
||||
}
|
||||
ctx, cancel := contextWithTimeout(r, 8*time.Second)
|
||||
defer cancel()
|
||||
job, err := s.store.RetryJob(ctx, id)
|
||||
if err != nil {
|
||||
writeError(w, http.StatusInternalServerError, err.Error())
|
||||
return
|
||||
}
|
||||
if job == nil {
|
||||
writeError(w, http.StatusNotFound, "retryable job not found")
|
||||
return
|
||||
}
|
||||
writeJSON(w, http.StatusOK, job)
|
||||
}
|
||||
|
||||
func (s *Server) handleStats(w http.ResponseWriter, r *http.Request) {
|
||||
ctx, cancel := contextWithTimeout(r, 8*time.Second)
|
||||
defer cancel()
|
||||
stats, err := s.store.Stats(ctx)
|
||||
if err != nil {
|
||||
writeError(w, http.StatusInternalServerError, err.Error())
|
||||
return
|
||||
}
|
||||
writeJSON(w, http.StatusOK, stats)
|
||||
}
|
||||
|
||||
func jobIDFromPath(path string, retry bool) (uuid.UUID, error) {
|
||||
raw := strings.TrimPrefix(path, "/api/v1/jobs/")
|
||||
if retry {
|
||||
raw = strings.TrimSuffix(raw, "/retry")
|
||||
}
|
||||
id, err := uuid.Parse(strings.Trim(raw, "/"))
|
||||
if err != nil {
|
||||
return uuid.Nil, errors.New("bad job id")
|
||||
}
|
||||
return id, nil
|
||||
}
|
||||
|
||||
func isValidationError(err error) bool {
|
||||
msg := err.Error()
|
||||
return strings.Contains(msg, " is required")
|
||||
}
|
||||
38
internal/migrate/migrate.go
Normal file
38
internal/migrate/migrate.go
Normal file
@@ -0,0 +1,38 @@
|
||||
package migrate
|
||||
|
||||
import (
|
||||
"context"
|
||||
"embed"
|
||||
"fmt"
|
||||
"sort"
|
||||
"strings"
|
||||
|
||||
"ai-service/internal/store"
|
||||
)
|
||||
|
||||
//go:embed sql/*.up.sql
|
||||
var migrationFiles embed.FS
|
||||
|
||||
func Up(ctx context.Context, db *store.Store) error {
|
||||
entries, err := migrationFiles.ReadDir("sql")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
var names []string
|
||||
for _, entry := range entries {
|
||||
if !entry.IsDir() && strings.HasSuffix(entry.Name(), ".up.sql") {
|
||||
names = append(names, entry.Name())
|
||||
}
|
||||
}
|
||||
sort.Strings(names)
|
||||
for _, name := range names {
|
||||
body, err := migrationFiles.ReadFile("sql/" + name)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if err := db.Exec(ctx, string(body)); err != nil {
|
||||
return fmt.Errorf("%s: %w", name, err)
|
||||
}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
39
internal/migrate/sql/001_ai_jobs.up.sql
Normal file
39
internal/migrate/sql/001_ai_jobs.up.sql
Normal file
@@ -0,0 +1,39 @@
|
||||
CREATE EXTENSION IF NOT EXISTS pgcrypto;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS ai_jobs (
|
||||
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
owner_service TEXT NOT NULL,
|
||||
owner_ref TEXT NOT NULL,
|
||||
task_type TEXT NOT NULL,
|
||||
model_profile TEXT NOT NULL,
|
||||
priority INTEGER NOT NULL DEFAULT 0,
|
||||
status TEXT NOT NULL DEFAULT 'pending'
|
||||
CHECK (status IN ('pending', 'running', 'done', 'failed', 'cancelled')),
|
||||
attempts INTEGER NOT NULL DEFAULT 0,
|
||||
max_attempts INTEGER NOT NULL DEFAULT 3,
|
||||
input JSONB NOT NULL DEFAULT '{}'::jsonb,
|
||||
result JSONB,
|
||||
error_code TEXT,
|
||||
error_message TEXT,
|
||||
scheduled_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||
started_at TIMESTAMPTZ,
|
||||
completed_at TIMESTAMPTZ,
|
||||
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||
idempotency_key TEXT
|
||||
);
|
||||
|
||||
CREATE UNIQUE INDEX IF NOT EXISTS ai_jobs_idempotency_key_idx
|
||||
ON ai_jobs (idempotency_key)
|
||||
WHERE idempotency_key IS NOT NULL;
|
||||
|
||||
CREATE INDEX IF NOT EXISTS ai_jobs_queue_idx
|
||||
ON ai_jobs (status, priority DESC, scheduled_at ASC, created_at ASC)
|
||||
WHERE status IN ('pending', 'running');
|
||||
|
||||
CREATE INDEX IF NOT EXISTS ai_jobs_owner_idx
|
||||
ON ai_jobs (owner_service, owner_ref);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS ai_jobs_error_idx
|
||||
ON ai_jobs (task_type, model_profile, error_code, updated_at DESC)
|
||||
WHERE status = 'failed';
|
||||
71
internal/model/job.go
Normal file
71
internal/model/job.go
Normal file
@@ -0,0 +1,71 @@
|
||||
package model
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"time"
|
||||
|
||||
"github.com/google/uuid"
|
||||
)
|
||||
|
||||
const (
|
||||
StatusPending = "pending"
|
||||
StatusRunning = "running"
|
||||
StatusDone = "done"
|
||||
StatusFailed = "failed"
|
||||
StatusCancelled = "cancelled"
|
||||
)
|
||||
|
||||
type Job struct {
|
||||
ID uuid.UUID `json:"id"`
|
||||
OwnerService string `json:"owner_service"`
|
||||
OwnerRef string `json:"owner_ref"`
|
||||
TaskType string `json:"task_type"`
|
||||
ModelProfile string `json:"model_profile"`
|
||||
Priority int `json:"priority"`
|
||||
Status string `json:"status"`
|
||||
Attempts int `json:"attempts"`
|
||||
MaxAttempts int `json:"max_attempts"`
|
||||
Input json.RawMessage `json:"input"`
|
||||
Result json.RawMessage `json:"result,omitempty"`
|
||||
ErrorCode *string `json:"error_code,omitempty"`
|
||||
ErrorMessage *string `json:"error_message,omitempty"`
|
||||
ScheduledAt time.Time `json:"scheduled_at"`
|
||||
StartedAt *time.Time `json:"started_at,omitempty"`
|
||||
CompletedAt *time.Time `json:"completed_at,omitempty"`
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
UpdatedAt time.Time `json:"updated_at"`
|
||||
IdempotencyKey *string `json:"idempotency_key,omitempty"`
|
||||
}
|
||||
|
||||
type CreateJob struct {
|
||||
OwnerService string `json:"owner_service"`
|
||||
OwnerRef string `json:"owner_ref"`
|
||||
TaskType string `json:"task_type"`
|
||||
ModelProfile string `json:"model_profile"`
|
||||
Priority int `json:"priority"`
|
||||
MaxAttempts int `json:"max_attempts"`
|
||||
Input json.RawMessage `json:"input"`
|
||||
ScheduledAt *time.Time `json:"scheduled_at,omitempty"`
|
||||
IdempotencyKey *string `json:"idempotency_key,omitempty"`
|
||||
}
|
||||
|
||||
type QueueStat struct {
|
||||
TaskType string `json:"task_type"`
|
||||
ModelProfile string `json:"model_profile"`
|
||||
Status string `json:"status"`
|
||||
Total int64 `json:"total"`
|
||||
}
|
||||
|
||||
type ErrorStat struct {
|
||||
TaskType string `json:"task_type"`
|
||||
ModelProfile string `json:"model_profile"`
|
||||
ErrorCode string `json:"error_code"`
|
||||
Total int64 `json:"total"`
|
||||
Last24h int64 `json:"last_24h"`
|
||||
}
|
||||
|
||||
type Stats struct {
|
||||
At time.Time `json:"at"`
|
||||
Queues []QueueStat `json:"queues"`
|
||||
Errors []ErrorStat `json:"errors,omitempty"`
|
||||
}
|
||||
229
internal/store/store.go
Normal file
229
internal/store/store.go
Normal file
@@ -0,0 +1,229 @@
|
||||
package store
|
||||
|
||||
import (
|
||||
"context"
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"fmt"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"ai-service/internal/model"
|
||||
|
||||
"github.com/google/uuid"
|
||||
"github.com/jackc/pgx/v5"
|
||||
"github.com/jackc/pgx/v5/pgxpool"
|
||||
)
|
||||
|
||||
type Store struct {
|
||||
pool *pgxpool.Pool
|
||||
}
|
||||
|
||||
func Open(ctx context.Context, databaseURL string) (*Store, error) {
|
||||
if strings.TrimSpace(databaseURL) == "" {
|
||||
return nil, errors.New("DATABASE_URL is required")
|
||||
}
|
||||
cfg, err := pgxpool.ParseConfig(databaseURL)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("parse database url: %w", err)
|
||||
}
|
||||
pool, err := pgxpool.NewWithConfig(ctx, cfg)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("connect postgres: %w", err)
|
||||
}
|
||||
if err := pool.Ping(ctx); err != nil {
|
||||
pool.Close()
|
||||
return nil, fmt.Errorf("ping postgres: %w", err)
|
||||
}
|
||||
return &Store{pool: pool}, nil
|
||||
}
|
||||
|
||||
func (s *Store) Close() {
|
||||
s.pool.Close()
|
||||
}
|
||||
|
||||
func (s *Store) Ping(ctx context.Context) error {
|
||||
return s.pool.Ping(ctx)
|
||||
}
|
||||
|
||||
func (s *Store) Exec(ctx context.Context, sql string, args ...any) error {
|
||||
_, err := s.pool.Exec(ctx, sql, args...)
|
||||
return err
|
||||
}
|
||||
|
||||
func (s *Store) CreateJob(ctx context.Context, in model.CreateJob) (*model.Job, error) {
|
||||
if err := validateCreateJob(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if in.MaxAttempts <= 0 {
|
||||
in.MaxAttempts = 3
|
||||
}
|
||||
if len(in.Input) == 0 {
|
||||
in.Input = json.RawMessage(`{}`)
|
||||
}
|
||||
scheduledAt := time.Now().UTC()
|
||||
if in.ScheduledAt != nil {
|
||||
scheduledAt = in.ScheduledAt.UTC()
|
||||
}
|
||||
|
||||
const q = `
|
||||
INSERT INTO ai_jobs (
|
||||
owner_service, owner_ref, task_type, model_profile, priority, max_attempts,
|
||||
input, scheduled_at, idempotency_key
|
||||
)
|
||||
VALUES ($1,$2,$3,$4,$5,$6,$7,$8,$9)
|
||||
ON CONFLICT (idempotency_key) WHERE idempotency_key IS NOT NULL
|
||||
DO UPDATE SET updated_at = ai_jobs.updated_at
|
||||
RETURNING id, owner_service, owner_ref, task_type, model_profile, priority, status,
|
||||
attempts, max_attempts, input, result, error_code, error_message,
|
||||
scheduled_at, started_at, completed_at, created_at, updated_at, idempotency_key
|
||||
`
|
||||
row := s.pool.QueryRow(ctx, q,
|
||||
in.OwnerService,
|
||||
in.OwnerRef,
|
||||
in.TaskType,
|
||||
in.ModelProfile,
|
||||
in.Priority,
|
||||
in.MaxAttempts,
|
||||
in.Input,
|
||||
scheduledAt,
|
||||
in.IdempotencyKey,
|
||||
)
|
||||
return scanJob(row)
|
||||
}
|
||||
|
||||
func validateCreateJob(in model.CreateJob) error {
|
||||
switch {
|
||||
case strings.TrimSpace(in.OwnerService) == "":
|
||||
return errors.New("owner_service is required")
|
||||
case strings.TrimSpace(in.OwnerRef) == "":
|
||||
return errors.New("owner_ref is required")
|
||||
case strings.TrimSpace(in.TaskType) == "":
|
||||
return errors.New("task_type is required")
|
||||
case strings.TrimSpace(in.ModelProfile) == "":
|
||||
return errors.New("model_profile is required")
|
||||
default:
|
||||
return nil
|
||||
}
|
||||
}
|
||||
|
||||
func (s *Store) GetJob(ctx context.Context, id uuid.UUID) (*model.Job, error) {
|
||||
const q = `
|
||||
SELECT id, owner_service, owner_ref, task_type, model_profile, priority, status,
|
||||
attempts, max_attempts, input, result, error_code, error_message,
|
||||
scheduled_at, started_at, completed_at, created_at, updated_at, idempotency_key
|
||||
FROM ai_jobs
|
||||
WHERE id = $1
|
||||
`
|
||||
job, err := scanJob(s.pool.QueryRow(ctx, q, id))
|
||||
if errors.Is(err, pgx.ErrNoRows) {
|
||||
return nil, nil
|
||||
}
|
||||
return job, err
|
||||
}
|
||||
|
||||
func (s *Store) RetryJob(ctx context.Context, id uuid.UUID) (*model.Job, error) {
|
||||
const q = `
|
||||
UPDATE ai_jobs
|
||||
SET status = 'pending',
|
||||
attempts = 0,
|
||||
started_at = NULL,
|
||||
completed_at = NULL,
|
||||
error_code = NULL,
|
||||
error_message = NULL,
|
||||
scheduled_at = NOW(),
|
||||
updated_at = NOW()
|
||||
WHERE id = $1
|
||||
AND status IN ('failed', 'running')
|
||||
RETURNING id, owner_service, owner_ref, task_type, model_profile, priority, status,
|
||||
attempts, max_attempts, input, result, error_code, error_message,
|
||||
scheduled_at, started_at, completed_at, created_at, updated_at, idempotency_key
|
||||
`
|
||||
job, err := scanJob(s.pool.QueryRow(ctx, q, id))
|
||||
if errors.Is(err, pgx.ErrNoRows) {
|
||||
return nil, nil
|
||||
}
|
||||
return job, err
|
||||
}
|
||||
|
||||
func (s *Store) Stats(ctx context.Context) (*model.Stats, error) {
|
||||
out := &model.Stats{At: time.Now().UTC()}
|
||||
|
||||
queueRows, err := s.pool.Query(ctx, `
|
||||
SELECT task_type, model_profile, status, count(*)
|
||||
FROM ai_jobs
|
||||
GROUP BY task_type, model_profile, status
|
||||
ORDER BY task_type, model_profile, status
|
||||
`)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
defer queueRows.Close()
|
||||
for queueRows.Next() {
|
||||
var stat model.QueueStat
|
||||
if err := queueRows.Scan(&stat.TaskType, &stat.ModelProfile, &stat.Status, &stat.Total); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
out.Queues = append(out.Queues, stat)
|
||||
}
|
||||
if err := queueRows.Err(); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
errorRows, err := s.pool.Query(ctx, `
|
||||
SELECT task_type, model_profile, COALESCE(NULLIF(error_code, ''), 'unknown') AS error_code,
|
||||
count(*) AS total,
|
||||
count(*) FILTER (WHERE updated_at > NOW() - INTERVAL '24 hours') AS last_24h
|
||||
FROM ai_jobs
|
||||
WHERE status = 'failed'
|
||||
GROUP BY task_type, model_profile, COALESCE(NULLIF(error_code, ''), 'unknown')
|
||||
ORDER BY last_24h DESC, total DESC
|
||||
`)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
defer errorRows.Close()
|
||||
for errorRows.Next() {
|
||||
var stat model.ErrorStat
|
||||
if err := errorRows.Scan(&stat.TaskType, &stat.ModelProfile, &stat.ErrorCode, &stat.Total, &stat.Last24h); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
out.Errors = append(out.Errors, stat)
|
||||
}
|
||||
return out, errorRows.Err()
|
||||
}
|
||||
|
||||
func scanJob(row pgx.Row) (*model.Job, error) {
|
||||
var job model.Job
|
||||
var input []byte
|
||||
var result []byte
|
||||
err := row.Scan(
|
||||
&job.ID,
|
||||
&job.OwnerService,
|
||||
&job.OwnerRef,
|
||||
&job.TaskType,
|
||||
&job.ModelProfile,
|
||||
&job.Priority,
|
||||
&job.Status,
|
||||
&job.Attempts,
|
||||
&job.MaxAttempts,
|
||||
&input,
|
||||
&result,
|
||||
&job.ErrorCode,
|
||||
&job.ErrorMessage,
|
||||
&job.ScheduledAt,
|
||||
&job.StartedAt,
|
||||
&job.CompletedAt,
|
||||
&job.CreatedAt,
|
||||
&job.UpdatedAt,
|
||||
&job.IdempotencyKey,
|
||||
)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
job.Input = json.RawMessage(input)
|
||||
if len(result) > 0 {
|
||||
job.Result = json.RawMessage(result)
|
||||
}
|
||||
return &job, nil
|
||||
}
|
||||
Reference in New Issue
Block a user