package models

import "github.com/go-arrower/arrower/jobs/models"

Index

Types

type ArrowerGueJobsWorkerPool

type ArrowerGueJobsWorkerPool struct {
	ID        string
	Queue     string
	Workers   int16
	GitHash   string
	JobTypes  []string
	CreatedAt pgtype.Timestamptz
	UpdatedAt pgtype.Timestamptz
}

type DBTX

type DBTX interface {
	Exec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)
	Query(context.Context, string, ...interface{}) (pgx.Rows, error)
	QueryRow(context.Context, string, ...interface{}) pgx.Row
}

type InsertHistoryParams

type InsertHistoryParams struct {
	JobID    string
	Priority int16
	RunAt    pgtype.Timestamptz
	JobType  string
	Args     []byte
	RunCount int32
	Queue    string
	RunError string
}

type Queries

type Queries struct {
	// contains filtered or unexported fields
}

func New

func New(db DBTX) *Queries

func (*Queries) GetWorkerPools

func (q *Queries) GetWorkerPools(ctx context.Context) ([]ArrowerGueJobsWorkerPool, error)

func (*Queries) InsertHistory

func (q *Queries) InsertHistory(ctx context.Context, arg InsertHistoryParams) error

func (*Queries) UpdateHistory

func (q *Queries) UpdateHistory(ctx context.Context, arg UpdateHistoryParams) error

func (*Queries) UpsertSchedule

func (q *Queries) UpsertSchedule(ctx context.Context, arg UpsertScheduleParams) error

func (*Queries) UpsertWorkerToPool

func (q *Queries) UpsertWorkerToPool(ctx context.Context, arg UpsertWorkerToPoolParams) error

func (*Queries) WithTx

func (q *Queries) WithTx(tx pgx.Tx) *Queries

type UpdateHistoryParams

type UpdateHistoryParams struct {
	Success  bool
	JobID    string
	RunError string
	RunCount int32
}

type UpsertScheduleParams

type UpsertScheduleParams struct {
	Queue     string
	Spec      string
	JobType   string
	Args      []byte
	UpdatedAt pgtype.Timestamptz
}

type UpsertWorkerToPoolParams

type UpsertWorkerToPoolParams struct {
	ID        string
	Queue     string
	Workers   int16
	GitHash   string
	JobTypes  []string
	UpdatedAt pgtype.Timestamptz
}

Source Files

db.go models.go query.sql.go

Version
v0.0.0-20250311203644-ab26c1152cb4 (latest)
Published
Mar 11, 2025
Platform
linux/amd64
Imports
4 packages
Last checked
1 week ago

Tools for package owners.