Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BatchServiceJobScheduler ¶ added in v1.1.0
type BatchServiceJobScheduler struct {
// contains filtered or unexported fields
}
BatchServiceJobScheduler is a scheduler for: - batch jobs that run until completion on N number of nodes - service jobs than run until stopped on N number of nodes
func NewBatchServiceJobScheduler ¶ added in v1.1.0
func NewBatchServiceJobScheduler(params BatchServiceJobSchedulerParams) *BatchServiceJobScheduler
func (*BatchServiceJobScheduler) Process ¶ added in v1.1.0
func (b *BatchServiceJobScheduler) Process(ctx context.Context, evaluation *models.Evaluation) error
type BatchServiceJobSchedulerParams ¶ added in v1.1.0
type BatchServiceJobSchedulerParams struct { JobStore jobstore.Store Planner orchestrator.Planner NodeSelector orchestrator.NodeSelector RetryStrategy orchestrator.RetryStrategy }
type DaemonJobScheduler ¶ added in v1.1.0
type DaemonJobScheduler struct {
// contains filtered or unexported fields
}
DaemonJobScheduler is a scheduler for batch jobs that run until completion
func NewDaemonJobScheduler ¶ added in v1.1.0
func NewDaemonJobScheduler(params DaemonJobSchedulerParams) *DaemonJobScheduler
func (*DaemonJobScheduler) Process ¶ added in v1.1.0
func (b *DaemonJobScheduler) Process(ctx context.Context, evaluation *models.Evaluation) error
type DaemonJobSchedulerParams ¶ added in v1.1.0
type DaemonJobSchedulerParams struct { JobStore jobstore.Store Planner orchestrator.Planner NodeSelector orchestrator.NodeSelector }
type OpsJobScheduler ¶
type OpsJobScheduler struct {
// contains filtered or unexported fields
}
OpsJobScheduler is a scheduler for batch jobs that run until completion
func NewOpsJobScheduler ¶
func NewOpsJobScheduler(params OpsJobSchedulerParams) *OpsJobScheduler
func (*OpsJobScheduler) Process ¶
func (b *OpsJobScheduler) Process(ctx context.Context, evaluation *models.Evaluation) error
type OpsJobSchedulerParams ¶
type OpsJobSchedulerParams struct { JobStore jobstore.Store Planner orchestrator.Planner NodeSelector orchestrator.NodeSelector }
Click to show internal directories.
Click to hide internal directories.