2021-12-17 15:49:22 +01:00
|
|
|
package schema
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2022-01-07 09:39:00 +01:00
|
|
|
// Common subset of Job and JobMeta. Use one of those, not
|
|
|
|
// this type directly.
|
2021-12-17 15:49:22 +01:00
|
|
|
type BaseJob struct {
|
|
|
|
JobID int64 `json:"jobId" db:"job_id"`
|
|
|
|
User string `json:"user" db:"user"`
|
|
|
|
Project string `json:"project" db:"project"`
|
|
|
|
Cluster string `json:"cluster" db:"cluster"`
|
|
|
|
Partition string `json:"partition" db:"partition"`
|
|
|
|
ArrayJobId int32 `json:"arrayJobId" db:"array_job_id"`
|
|
|
|
NumNodes int32 `json:"numNodes" db:"num_nodes"`
|
|
|
|
NumHWThreads int32 `json:"numHwthreads" db:"num_hwthreads"`
|
|
|
|
NumAcc int32 `json:"numAcc" db:"num_acc"`
|
|
|
|
Exclusive int32 `json:"exclusive" db:"exclusive"`
|
|
|
|
MonitoringStatus int32 `json:"monitoringStatus" db:"monitoring_status"`
|
|
|
|
SMT int32 `json:"smt" db:"smt"`
|
|
|
|
State JobState `json:"jobState" db:"job_state"`
|
|
|
|
Duration int32 `json:"duration" db:"duration"`
|
|
|
|
Tags []*Tag `json:"tags"`
|
2022-01-10 16:13:40 +01:00
|
|
|
RawResources []byte `json:"-" db:"resources"`
|
2022-01-07 09:39:00 +01:00
|
|
|
Resources []*Resource `json:"resources"`
|
2021-12-17 15:49:22 +01:00
|
|
|
MetaData interface{} `json:"metaData" db:"meta_data"`
|
2022-01-07 09:39:00 +01:00
|
|
|
}
|
2021-12-17 15:49:22 +01:00
|
|
|
|
2022-01-07 09:39:00 +01:00
|
|
|
// This type is used as the GraphQL interface and using sqlx as a table row.
|
|
|
|
type Job struct {
|
2022-01-10 16:13:40 +01:00
|
|
|
ID int64 `json:"id" db:"id"`
|
2022-01-07 09:39:00 +01:00
|
|
|
BaseJob
|
2022-01-20 10:00:55 +01:00
|
|
|
StartTimeUnix int64 `json:"-" db:"start_time"`
|
|
|
|
StartTime time.Time `json:"startTime"`
|
2022-01-07 09:39:00 +01:00
|
|
|
MemUsedMax float64 `json:"-" db:"mem_used_max"`
|
|
|
|
FlopsAnyAvg float64 `json:"-" db:"flops_any_avg"`
|
|
|
|
MemBwAvg float64 `json:"-" db:"mem_bw_avg"`
|
|
|
|
LoadAvg float64 `json:"-" db:"load_avg"`
|
|
|
|
NetBwAvg float64 `json:"-" db:"net_bw_avg"`
|
|
|
|
NetDataVolTotal float64 `json:"-" db:"net_data_vol_total"`
|
|
|
|
FileBwAvg float64 `json:"-" db:"file_bw_avg"`
|
|
|
|
FileDataVolTotal float64 `json:"-" db:"file_data_vol_total"`
|
2021-12-17 15:49:22 +01:00
|
|
|
}
|
|
|
|
|
2022-01-07 09:39:00 +01:00
|
|
|
// When reading from the database or sending data via GraphQL, the start time can be in the much more
|
|
|
|
// convenient time.Time type. In the `meta.json` files, the start time is encoded as a unix epoch timestamp.
|
|
|
|
// This is why there is this struct, which contains all fields from the regular job struct, but "overwrites"
|
|
|
|
// the StartTime field with one of type int64.
|
2021-12-17 15:49:22 +01:00
|
|
|
type JobMeta struct {
|
2022-02-22 09:25:41 +01:00
|
|
|
ID *int64 `json:"id,omitempty"` // never used in the job-archive, only available via REST-API
|
2021-12-17 15:49:22 +01:00
|
|
|
BaseJob
|
2022-01-10 16:13:40 +01:00
|
|
|
StartTime int64 `json:"startTime" db:"start_time"`
|
2021-12-17 15:49:22 +01:00
|
|
|
Statistics map[string]JobStatistics `json:"statistics,omitempty"`
|
|
|
|
}
|
|
|
|
|
2022-02-15 14:25:39 +01:00
|
|
|
const (
|
|
|
|
MonitoringStatusDisabled int32 = 0
|
|
|
|
MonitoringStatusRunningOrArchiving int32 = 1
|
|
|
|
MonitoringStatusArchivingFailed int32 = 2
|
|
|
|
MonitoringStatusArchivingSuccessful int32 = 3
|
|
|
|
)
|
|
|
|
|
2021-12-17 15:49:22 +01:00
|
|
|
var JobDefaults BaseJob = BaseJob{
|
|
|
|
Exclusive: 1,
|
2022-02-15 14:25:39 +01:00
|
|
|
MonitoringStatus: MonitoringStatusRunningOrArchiving,
|
2021-12-17 15:49:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type JobStatistics struct {
|
|
|
|
Unit string `json:"unit"`
|
|
|
|
Avg float64 `json:"avg"`
|
|
|
|
Min float64 `json:"min"`
|
|
|
|
Max float64 `json:"max"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Tag struct {
|
|
|
|
ID int64 `json:"id" db:"id"`
|
|
|
|
Type string `json:"type" db:"tag_type"`
|
|
|
|
Name string `json:"name" db:"tag_name"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Resource struct {
|
|
|
|
Hostname string `json:"hostname"`
|
|
|
|
HWThreads []int `json:"hwthreads,omitempty"`
|
|
|
|
Accelerators []int `json:"accelerators,omitempty"`
|
|
|
|
Configuration string `json:"configuration,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type JobState string
|
|
|
|
|
|
|
|
const (
|
2022-02-17 08:56:37 +01:00
|
|
|
JobStateRunning JobState = "running"
|
|
|
|
JobStateCompleted JobState = "completed"
|
|
|
|
JobStateFailed JobState = "failed"
|
|
|
|
JobStateCancelled JobState = "cancelled"
|
|
|
|
JobStateStopped JobState = "stopped"
|
|
|
|
JobStateTimeout JobState = "timeout"
|
|
|
|
JobStatePreempted JobState = "preempted"
|
|
|
|
JobStateOutOfMemory JobState = "out_of_memory"
|
2021-12-17 15:49:22 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func (e *JobState) UnmarshalGQL(v interface{}) error {
|
|
|
|
str, ok := v.(string)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("enums must be strings")
|
|
|
|
}
|
|
|
|
|
|
|
|
*e = JobState(str)
|
|
|
|
if !e.Valid() {
|
|
|
|
return errors.New("invalid job state")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e JobState) MarshalGQL(w io.Writer) {
|
|
|
|
fmt.Fprintf(w, "\"%s\"", e)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e JobState) Valid() bool {
|
|
|
|
return e == JobStateRunning ||
|
|
|
|
e == JobStateCompleted ||
|
|
|
|
e == JobStateFailed ||
|
2022-02-17 08:56:37 +01:00
|
|
|
e == JobStateCancelled ||
|
2021-12-17 15:49:22 +01:00
|
|
|
e == JobStateStopped ||
|
2022-02-17 09:22:43 +01:00
|
|
|
e == JobStateTimeout ||
|
|
|
|
e == JobStatePreempted ||
|
|
|
|
e == JobStateOutOfMemory
|
2021-12-17 15:49:22 +01:00
|
|
|
}
|