This repository has been archived by the owner on Oct 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 63
/
single_task_execution.go
228 lines (210 loc) · 7.85 KB
/
single_task_execution.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
package util
import (
"context"
"fmt"
"strings"
"time"
"unicode"
"github.com/flyteorg/flyteadmin/pkg/errors"
"github.com/flyteorg/flyteadmin/pkg/manager/impl/validation"
"github.com/flyteorg/flyteadmin/pkg/manager/interfaces"
"github.com/flyteorg/flyteadmin/pkg/repositories"
repositoryInterfaces "github.com/flyteorg/flyteadmin/pkg/repositories/interfaces"
"github.com/flyteorg/flyteadmin/pkg/repositories/models"
"github.com/flyteorg/flyteadmin/pkg/repositories/transformers"
runtimeInterfaces "github.com/flyteorg/flyteadmin/pkg/runtime/interfaces"
"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"
"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
"github.com/flyteorg/flytestdlib/logger"
"github.com/golang/protobuf/ptypes"
"google.golang.org/grpc/codes"
)
const maxNodeIDLength = 63
var defaultRetryStrategy = core.RetryStrategy{
Retries: 3,
}
var defaultTimeout = ptypes.DurationProto(24 * time.Hour)
const systemNamePrefix = ".flytegen.%s"
const noInputNodeID = ""
func generateNodeNameFromTask(taskName string) string {
if len(taskName) >= maxNodeIDLength {
taskName = taskName[len(taskName)-maxNodeIDLength:]
}
nodeNameBuilder := strings.Builder{}
for _, i := range taskName {
if i == '-' || unicode.IsLetter(i) || unicode.IsNumber(i) {
nodeNameBuilder.WriteRune(i)
}
}
return nodeNameBuilder.String()
}
func generateWorkflowNameFromTask(taskName string) string {
return fmt.Sprintf(systemNamePrefix, taskName)
}
func generateBindings(outputs core.VariableMap, nodeID string) []*core.Binding {
bindings := make([]*core.Binding, 0, len(outputs.Variables))
for key := range outputs.Variables {
binding := &core.Binding{
Var: key,
Binding: &core.BindingData{
Value: &core.BindingData_Promise{
Promise: &core.OutputReference{
NodeId: nodeID,
Var: key,
},
},
},
}
bindings = append(bindings, binding)
}
return bindings
}
func CreateOrGetWorkflowModel(
ctx context.Context, request admin.ExecutionCreateRequest, db repositories.RepositoryInterface,
workflowManager interfaces.WorkflowInterface, namedEntityManager interfaces.NamedEntityInterface, taskIdentifier *core.Identifier,
task *admin.Task) (*models.Workflow, error) {
workflowIdentifier := core.Identifier{
ResourceType: core.ResourceType_WORKFLOW,
Project: taskIdentifier.Project,
Domain: taskIdentifier.Domain,
Name: generateWorkflowNameFromTask(taskIdentifier.Name),
Version: taskIdentifier.Version,
}
workflowModel, err := db.WorkflowRepo().Get(ctx, repositoryInterfaces.Identifier{
Project: workflowIdentifier.Project,
Domain: workflowIdentifier.Domain,
Name: workflowIdentifier.Name,
Version: workflowIdentifier.Version,
})
if err != nil {
if ferr, ok := err.(errors.FlyteAdminError); !ok || ferr.Code() != codes.NotFound {
return nil, err
}
// If we got this far, there is no existing workflow. Create a skeleton one now.
workflowSpec := admin.WorkflowSpec{
Template: &core.WorkflowTemplate{
Id: &workflowIdentifier,
Interface: task.Closure.CompiledTask.Template.Interface,
Nodes: []*core.Node{
{
Id: generateNodeNameFromTask(taskIdentifier.Name),
Metadata: &core.NodeMetadata{
Name: generateNodeNameFromTask(taskIdentifier.Name),
Retries: &defaultRetryStrategy,
Timeout: defaultTimeout,
},
Inputs: generateBindings(*task.Closure.CompiledTask.Template.Interface.Inputs, noInputNodeID),
Target: &core.Node_TaskNode{
TaskNode: &core.TaskNode{
Reference: &core.TaskNode_ReferenceId{
ReferenceId: taskIdentifier,
},
},
},
},
},
Outputs: generateBindings(*task.Closure.CompiledTask.Template.Interface.Outputs, generateNodeNameFromTask(taskIdentifier.Name)),
},
}
_, err = workflowManager.CreateWorkflow(ctx, admin.WorkflowCreateRequest{
Id: &workflowIdentifier,
Spec: &workflowSpec,
})
if err != nil {
// In the case of race conditions, if the workflow already exists we can safely ignore the corresponding
// error.
if ferr, ok := err.(errors.FlyteAdminError); !ok || ferr.Code() != codes.AlreadyExists {
return nil, err
}
}
// Now, set the newly created skeleton workflow to 'SYSTEM_GENERATED'.
_, err = namedEntityManager.UpdateNamedEntity(ctx, admin.NamedEntityUpdateRequest{
ResourceType: core.ResourceType_WORKFLOW,
Id: &admin.NamedEntityIdentifier{
Project: workflowIdentifier.Project,
Domain: workflowIdentifier.Domain,
Name: workflowIdentifier.Name,
},
Metadata: &admin.NamedEntityMetadata{State: admin.NamedEntityState_SYSTEM_GENERATED},
})
if err != nil {
logger.Warningf(ctx, "Failed to set skeleton workflow state to system-generated: %v", err)
return nil, err
}
workflowModel, err = db.WorkflowRepo().Get(ctx, repositoryInterfaces.Identifier{
Project: workflowIdentifier.Project,
Domain: workflowIdentifier.Domain,
Name: workflowIdentifier.Name,
Version: workflowIdentifier.Version,
})
if err != nil {
// This is unexpected - at this point we've successfully just created the skeleton workflow.
logger.Warningf(ctx, "Failed to fetch newly created workflow model from db store: %v", err)
return nil, err
}
}
return &workflowModel, nil
}
func CreateOrGetLaunchPlan(ctx context.Context,
db repositories.RepositoryInterface, config runtimeInterfaces.Configuration, taskIdentifier *core.Identifier,
workflowInterface *core.TypedInterface, workflowID uint, spec *admin.ExecutionSpec) (*admin.LaunchPlan, error) {
var launchPlan *admin.LaunchPlan
var err error
launchPlanIdentifier := core.Identifier{
ResourceType: core.ResourceType_LAUNCH_PLAN,
Project: taskIdentifier.Project,
Domain: taskIdentifier.Domain,
Name: generateWorkflowNameFromTask(taskIdentifier.Name),
Version: taskIdentifier.Version,
}
launchPlan, err = GetLaunchPlan(ctx, db, launchPlanIdentifier)
if err != nil {
if ferr, ok := err.(errors.FlyteAdminError); !ok || ferr.Code() != codes.NotFound {
return nil, err
}
// Create launch plan.
generatedCreateLaunchPlanReq := admin.LaunchPlanCreateRequest{
Id: &launchPlanIdentifier,
Spec: &admin.LaunchPlanSpec{
WorkflowId: &core.Identifier{
ResourceType: core.ResourceType_WORKFLOW,
Project: taskIdentifier.Project,
Domain: taskIdentifier.Domain,
Name: taskIdentifier.Name,
Version: taskIdentifier.Version,
},
EntityMetadata: &admin.LaunchPlanMetadata{},
DefaultInputs: &core.ParameterMap{},
FixedInputs: &core.LiteralMap{},
Labels: &admin.Labels{},
Annotations: &admin.Annotations{},
AuthRole: spec.AuthRole,
},
}
if err := validation.ValidateLaunchPlan(ctx, generatedCreateLaunchPlanReq, db, config.ApplicationConfiguration(), workflowInterface); err != nil {
logger.Debugf(ctx, "could not create launch plan: %+v, request failed validation with err: %v", taskIdentifier, err)
return nil, err
}
transformedLaunchPlan := transformers.CreateLaunchPlan(generatedCreateLaunchPlanReq, workflowInterface.Outputs)
launchPlan = &transformedLaunchPlan
launchPlanDigest, err := GetLaunchPlanDigest(ctx, launchPlan)
if err != nil {
logger.Errorf(ctx, "failed to compute launch plan digest for [%+v] with err: %v", launchPlan.Id, err)
return nil, err
}
launchPlanModel, err :=
transformers.CreateLaunchPlanModel(*launchPlan, workflowID, launchPlanDigest, admin.LaunchPlanState_INACTIVE)
if err != nil {
logger.Errorf(ctx,
"Failed to transform launch plan model [%+v], and workflow outputs [%+v] with err: %v",
taskIdentifier, workflowInterface.Outputs, err)
return nil, err
}
err = db.LaunchPlanRepo().Create(ctx, launchPlanModel)
if err != nil {
logger.Errorf(ctx, "Failed to save launch plan model [%+v] with err: %v", launchPlanIdentifier, err)
return nil, err
}
}
return launchPlan, nil
}