Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support success policy for TFJob #26

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ help: ## Display this help.

.PHONY: manifests
manifests: controller-gen ## Generate CustomResourceDefinition, RBAC and WebhookConfiguration manifests.
ANNOTATIONS=" git-repo: $(GIT_REPO)\n git-branch: $(GIT_BRANCH)\n git-commit: $(GIT_SHORT_COMMIT_ID)"; \
GO111MODULE=off $(CONTROLLER_GEN) crd:generateEmbeddedObjectMeta=true rbac:roleName=manager-role webhook paths="./pkg/apis/tensorflow/v1" output:crd:artifacts:config=manifests/base/crds; \
for crd in $(shell ls manifests/base/crds); do \
sed -i '' "[email protected]/version:\(.*\)@controller-gen.kubebuilder.io/version:\1\n$$ANNOTATIONS@g" manifests/base/crds/$$crd; \
done
GO111MODULE=off $(CONTROLLER_GEN) crd:generateEmbeddedObjectMeta=true rbac:roleName=manager-role webhook paths="./pkg/apis/tensorflow/v1" output:crd:artifacts:config=manifests/base/crds

.PHONY: generate
generate: controller-gen ## Generate code containing DeepCopy, DeepCopyInto, and DeepCopyObject method implementations.
GOPATH=$(shell go env GOPATH) GO111MODULE=off hack/update-codegen.sh

##@ Build

Expand Down
4,357 changes: 4,357 additions & 0 deletions manifests/base/crds/kubeflow.org_tfjobs.yaml

Large diffs are not rendered by default.

23 changes: 23 additions & 0 deletions pkg/apis/tensorflow/v1/common.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// Copyright 2020 The Kubeflow Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package v1

// SuccessPolicy is the success policy.
type SuccessPolicy string

const (
SuccessPolicyDefault SuccessPolicy = ""
SuccessPolicyAllWorkers SuccessPolicy = "AllWorkers"
)
5 changes: 5 additions & 0 deletions pkg/apis/tensorflow/v1/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,11 @@ func SetDefaults_TFJob(tfjob *TFJob) {
running := common.CleanPodPolicyRunning
tfjob.Spec.CleanPodPolicy = &running
}
// Set default success policy to "".
if tfjob.Spec.SuccessPolicy == nil {
defaultPolicy := SuccessPolicyDefault
tfjob.Spec.SuccessPolicy = &defaultPolicy
}

// Update the key of TFReplicaSpecs to camel case.
setTypeNamesToCamelCase(tfjob)
Expand Down
3 changes: 3 additions & 0 deletions pkg/apis/tensorflow/v1/defaults_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,11 @@ func expectedTFJob(cleanPodPolicy common.CleanPodPolicy, restartPolicy common.Re
)
}

defaultSuccessPolicy := SuccessPolicyDefault

return &TFJob{
Spec: TFJobSpec{
SuccessPolicy: &defaultSuccessPolicy,
CleanPodPolicy: &cleanPodPolicy,
TFReplicaSpecs: map[TFReplicaType]*common.ReplicaSpec{
TFReplicaTypeWorker: &common.ReplicaSpec{
Expand Down
7 changes: 7 additions & 0 deletions pkg/apis/tensorflow/v1/openapi_generated.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions pkg/apis/tensorflow/v1/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,12 @@ type TFJobSpec struct {
// +optional
BackoffLimit *int32 `json:"backoffLimit,omitempty"`

// SuccessPolicy defines the policy to mark the TFJob as succeeded.
// Default to "", using the default rules.
// +optional
// +kubebuilder:validation:Enum="";AllWorkers
SuccessPolicy *SuccessPolicy `json:"successPolicy,omitempty"`
ChenYi015 marked this conversation as resolved.
Show resolved Hide resolved

// Defines the policy for cleaning up pods after the TFJob completes.
// Defaults to Running.
CleanPodPolicy *common.CleanPodPolicy `json:"cleanPodPolicy,omitempty"`
Expand Down
5 changes: 5 additions & 0 deletions pkg/apis/tensorflow/v1/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions pkg/common/util/v1/testutil/tfjob.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,12 @@ func NewTFJobWithEvaluator(worker, ps, evaluator int) *tfv1.TFJob {
return tfJob
}

func NewTFJobWithSuccessPolicy(worker, ps int, successPolicy tfv1.SuccessPolicy) *tfv1.TFJob {
tfJob := NewTFJob(worker, ps)
tfJob.Spec.SuccessPolicy = &successPolicy
return tfJob
}

func NewTFJob(worker, ps int) *tfv1.TFJob {
tfJob := &tfv1.TFJob{
TypeMeta: metav1.TypeMeta{
Expand Down
6 changes: 4 additions & 2 deletions pkg/controller.v1/tensorflow/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,10 @@ func (tc *TFController) updateStatusSingle(tfjob *tfv1.TFJob, rtype tfv1.TFRepli
}
} else {
if rtype == tfv1.TFReplicaTypeWorker {
// All workers are succeeded or worker 0 completed, leave a succeeded condition.
if expected == 0 || worker0Completed {
// Leave a succeeded condition for the following two cases:
// 1. If default success policy is used and worker 0 has completed.
// 2. If `SuccessPolicyAllWorkers` success policy is used and all workers are succeeded.
if expected == 0 || (worker0Completed && tfjob.Spec.SuccessPolicy != nil && *tfjob.Spec.SuccessPolicy != tfv1.SuccessPolicyAllWorkers) {
msg := fmt.Sprintf("TFJob %s successfully completed.", tfjob.Name)
tc.Recorder.Event(tfjob, v1.EventTypeNormal, tfJobSucceededReason, msg)
if tfjob.Status.CompletionTime == nil {
Expand Down
48 changes: 48 additions & 0 deletions pkg/controller.v1/tensorflow/status_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,54 @@ func TestStatus(t *testing.T) {
worker0Completed: true,
expectedType: common.JobSucceeded,
},
testCase{
description: "(No chief worker, successPolicy: AllWorkers) worker-0 are succeeded, 3 workers are active",
tfJob: testutil.NewTFJobWithSuccessPolicy(4, 0, tfv1.SuccessPolicyAllWorkers),
expectedFailedPS: 0,
expectedSucceededPS: 0,
expectedActivePS: 0,
expectedFailedWorker: 0,
expectedSucceededWorker: 1,
expectedActiveWorker: 3,
expectedFailedChief: 0,
expectedSucceededChief: 0,
expectedActiveChief: 0,
restart: false,
worker0Completed: true,
expectedType: common.JobRunning,
},
testCase{
description: "(No chief worker, successPolicy: AllWorkers) 4 workers are succeeded",
tfJob: testutil.NewTFJobWithSuccessPolicy(4, 0, tfv1.SuccessPolicyAllWorkers),
expectedFailedPS: 0,
expectedSucceededPS: 0,
expectedActivePS: 0,
expectedFailedWorker: 0,
expectedSucceededWorker: 4,
expectedActiveWorker: 0,
expectedFailedChief: 0,
expectedSucceededChief: 0,
expectedActiveChief: 0,
restart: false,
worker0Completed: true,
expectedType: common.JobSucceeded,
},
testCase{
description: "(No chief worker, successPolicy: AllWorkers) worker-0 is succeeded, 2 workers are running, 1 worker is failed",
tfJob: testutil.NewTFJobWithSuccessPolicy(4, 0, tfv1.SuccessPolicyAllWorkers),
expectedFailedPS: 0,
expectedSucceededPS: 0,
expectedActivePS: 0,
expectedFailedWorker: 1,
expectedSucceededWorker: 1,
expectedActiveWorker: 2,
expectedFailedChief: 0,
expectedSucceededChief: 0,
expectedActiveChief: 0,
restart: false,
worker0Completed: true,
expectedType: common.JobFailed,
},
testCase{
description: "Chief is running, workers are failed",
tfJob: testutil.NewTFJobWithChief(4, 2),
Expand Down