Documentation ¶
Index ¶
- type ClusterJobContext
- func (c *ClusterJobContext) AddAnnotation(jobs []*RunningJob, annotations map[string]string)
- func (c *ClusterJobContext) DeleteJobWithCondition(job *RunningJob, condition func(pod *v1.Pod) bool) error
- func (c *ClusterJobContext) DeleteJobs(jobs []*RunningJob)
- func (c *ClusterJobContext) GetJobs() ([]*RunningJob, error)
- func (c *ClusterJobContext) MarkIssueReported(issue *PodIssue)
- func (c *ClusterJobContext) MarkIssuesResolved(job *RunningJob)
- type FailedSubmissionDetails
- type IssueType
- type JobContext
- type JobRunStateStore
- func (stateStore *JobRunStateStore) Delete(runId string)
- func (stateStore *JobRunStateStore) Get(runId string) *RunState
- func (stateStore *JobRunStateStore) GetAll() []*RunState
- func (stateStore *JobRunStateStore) GetByKubernetesId(kubernetesId string) *RunState
- func (stateStore *JobRunStateStore) ReportFailedSubmission(runMeta *RunMeta)
- func (stateStore *JobRunStateStore) ReportRunLeased(runMeta *RunMeta)
- type PodIssue
- type RunMeta
- type RunPhase
- type RunState
- type RunningJob
- type SubmitJob
- func CreateSubmitJobFromApiJob(apiJob *api.Job, podDefaults *configuration.PodDefaults) *SubmitJob
- func CreateSubmitJobFromExecutorApiJobRunLease(jobRunLease *executorapi.JobRunLease, podDefaults *configuration.PodDefaults) (*SubmitJob, error)
- func CreateSubmitJobsFromApiJobs(apiJobs []*api.Job, podDefaults *configuration.PodDefaults) []*SubmitJob
- type SubmitJobMeta
- type SubmitService
- type Submitter
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ClusterJobContext ¶
type ClusterJobContext struct {
// contains filtered or unexported fields
}
func NewClusterJobContext ¶
func NewClusterJobContext( clusterContext executorContext.ClusterContext, pendingPodChecker podchecks.PodChecker, stuckTerminatingPodExpiry time.Duration, updateThreadCount int, ) *ClusterJobContext
func (*ClusterJobContext) AddAnnotation ¶
func (c *ClusterJobContext) AddAnnotation(jobs []*RunningJob, annotations map[string]string)
func (*ClusterJobContext) DeleteJobWithCondition ¶ added in v0.3.47
func (c *ClusterJobContext) DeleteJobWithCondition(job *RunningJob, condition func(pod *v1.Pod) bool) error
func (*ClusterJobContext) DeleteJobs ¶
func (c *ClusterJobContext) DeleteJobs(jobs []*RunningJob)
func (*ClusterJobContext) GetJobs ¶
func (c *ClusterJobContext) GetJobs() ([]*RunningJob, error)
func (*ClusterJobContext) MarkIssueReported ¶
func (c *ClusterJobContext) MarkIssueReported(issue *PodIssue)
func (*ClusterJobContext) MarkIssuesResolved ¶
func (c *ClusterJobContext) MarkIssuesResolved(job *RunningJob)
type FailedSubmissionDetails ¶
type JobContext ¶
type JobContext interface { GetJobs() ([]*RunningJob, error) MarkIssueReported(issue *PodIssue) MarkIssuesResolved(job *RunningJob) DeleteJobWithCondition(job *RunningJob, condition func(pod *v1.Pod) bool) error DeleteJobs(jobs []*RunningJob) AddAnnotation(jobs []*RunningJob, annotations map[string]string) }
type JobRunStateStore ¶ added in v0.3.50
type JobRunStateStore struct {
// contains filtered or unexported fields
}
func NewJobRunStateStore ¶ added in v0.3.50
func NewJobRunStateStore(clusterContext context.ClusterContext) *JobRunStateStore
func (*JobRunStateStore) Delete ¶ added in v0.3.50
func (stateStore *JobRunStateStore) Delete(runId string)
func (*JobRunStateStore) Get ¶ added in v0.3.50
func (stateStore *JobRunStateStore) Get(runId string) *RunState
func (*JobRunStateStore) GetAll ¶ added in v0.3.50
func (stateStore *JobRunStateStore) GetAll() []*RunState
func (*JobRunStateStore) GetByKubernetesId ¶ added in v0.3.50
func (stateStore *JobRunStateStore) GetByKubernetesId(kubernetesId string) *RunState
func (*JobRunStateStore) ReportFailedSubmission ¶ added in v0.3.50
func (stateStore *JobRunStateStore) ReportFailedSubmission(runMeta *RunMeta)
func (*JobRunStateStore) ReportRunLeased ¶ added in v0.3.50
func (stateStore *JobRunStateStore) ReportRunLeased(runMeta *RunMeta)
type RunPhase ¶ added in v0.3.50
type RunPhase int
const ( // Leased is the initial state and occurs before we submit the run to kubernetes Leased RunPhase = iota // Active is any run present in Kubernetes Active // FailedSubmission is when a failed submission has been reported FailedSubmission // Missing is when we have lost track of the run // This may happen if we submit a pod to kubernetes but the pod never becomes present in kubernetes Missing )
type RunState ¶ added in v0.3.50
type SubmitJob ¶ added in v0.3.47
type SubmitJob struct { Meta SubmitJobMeta Pod *v1.Pod Ingresses []*networking.Ingress Services []*v1.Service }
func CreateSubmitJobFromApiJob ¶ added in v0.3.47
func CreateSubmitJobFromApiJob(apiJob *api.Job, podDefaults *configuration.PodDefaults) *SubmitJob
func CreateSubmitJobFromExecutorApiJobRunLease ¶ added in v0.3.47
func CreateSubmitJobFromExecutorApiJobRunLease( jobRunLease *executorapi.JobRunLease, podDefaults *configuration.PodDefaults, ) (*SubmitJob, error)
func CreateSubmitJobsFromApiJobs ¶ added in v0.3.47
func CreateSubmitJobsFromApiJobs(apiJobs []*api.Job, podDefaults *configuration.PodDefaults) []*SubmitJob
type SubmitJobMeta ¶ added in v0.3.50
type SubmitService ¶
type SubmitService struct {
// contains filtered or unexported fields
}
func NewSubmitter ¶
func NewSubmitter( clusterContext context.ClusterContext, podDefaults *configuration.PodDefaults, submissionThreadCount int, fatalPodSubmissionErrors []string, ) *SubmitService
func (*SubmitService) SubmitApiJobs ¶ added in v0.3.47
func (submitService *SubmitService) SubmitApiJobs(jobsToSubmit []*api.Job) []*FailedSubmissionDetails
func (*SubmitService) SubmitJobs ¶
func (submitService *SubmitService) SubmitJobs(jobsToSubmit []*SubmitJob) []*FailedSubmissionDetails
type Submitter ¶
type Submitter interface { SubmitApiJobs(jobsToSubmit []*api.Job) []*FailedSubmissionDetails SubmitJobs(jobsToSubmit []*SubmitJob) []*FailedSubmissionDetails }
Click to show internal directories.
Click to hide internal directories.