-
Notifications
You must be signed in to change notification settings - Fork 657
/
plugin.go
287 lines (246 loc) · 11.7 KB
/
plugin.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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
package pod
import (
"context"
v1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"sigs.k8s.io/controller-runtime/pkg/client"
pluginserrors "github.com/flyteorg/flyte/flyteplugins/go/tasks/errors"
"github.com/flyteorg/flyte/flyteplugins/go/tasks/logs"
"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery"
pluginsCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/flytek8s"
"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/k8s"
"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/tasklog"
"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/utils"
"github.com/flyteorg/flyte/flytestdlib/logger"
)
const (
ContainerTaskType = "container"
podTaskType = "pod"
pythonTaskType = "python-task"
rawContainerTaskType = "raw-container"
SidecarTaskType = "sidecar"
)
// Why, you might wonder do we recreate the generated go struct generated from the plugins.SidecarJob proto? Because
// although we unmarshal the task custom json, the PodSpec itself is not generated from a proto definition,
// but a proper go struct defined in k8s libraries. Therefore we only unmarshal the sidecar as a json, rather than jsonpb.
type sidecarJob struct {
PodSpec *v1.PodSpec
PrimaryContainerName string
Annotations map[string]string
Labels map[string]string
}
var DefaultPodPlugin = plugin{}
type plugin struct {
}
func (plugin) BuildIdentityResource(_ context.Context, _ pluginsCore.TaskExecutionMetadata) (client.Object, error) {
return flytek8s.BuildIdentityPod(), nil
}
func (p plugin) BuildResource(ctx context.Context, taskCtx pluginsCore.TaskExecutionContext) (client.Object, error) {
taskTemplate, err := taskCtx.TaskReader().Read(ctx)
if err != nil {
logger.Warnf(ctx, "failed to read task information when trying to construct Pod, err: %s", err.Error())
return nil, err
}
var podSpec *v1.PodSpec
objectMeta := &metav1.ObjectMeta{
Annotations: make(map[string]string),
Labels: make(map[string]string),
}
primaryContainerName := ""
if taskTemplate.Type == SidecarTaskType && taskTemplate.TaskTypeVersion == 0 {
// handles pod tasks when they are defined as Sidecar tasks and marshal the podspec using k8s proto.
sidecarJob := sidecarJob{}
err := utils.UnmarshalStructToObj(taskTemplate.GetCustom(), &sidecarJob)
if err != nil {
return nil, pluginserrors.Errorf(pluginserrors.BadTaskSpecification, "invalid TaskSpecification [%v], Err: [%v]", taskTemplate.GetCustom(), err.Error())
}
if sidecarJob.PodSpec == nil {
return nil, pluginserrors.Errorf(pluginserrors.BadTaskSpecification, "invalid TaskSpecification, nil PodSpec [%v]", taskTemplate.GetCustom())
}
podSpec = sidecarJob.PodSpec
// get primary container name
primaryContainerName = sidecarJob.PrimaryContainerName
// update annotations and labels
objectMeta.Annotations = utils.UnionMaps(objectMeta.Annotations, sidecarJob.Annotations)
objectMeta.Labels = utils.UnionMaps(objectMeta.Labels, sidecarJob.Labels)
} else if taskTemplate.Type == SidecarTaskType && taskTemplate.TaskTypeVersion == 1 {
// handles pod tasks that marshal the pod spec to the task custom.
err := utils.UnmarshalStructToObj(taskTemplate.GetCustom(), &podSpec)
if err != nil {
return nil, pluginserrors.Errorf(pluginserrors.BadTaskSpecification,
"Unable to unmarshal task custom [%v], Err: [%v]", taskTemplate.GetCustom(), err.Error())
}
// get primary container name
if len(taskTemplate.GetConfig()) == 0 {
return nil, pluginserrors.Errorf(pluginserrors.BadTaskSpecification,
"invalid TaskSpecification, config needs to be non-empty and include missing [%s] key", flytek8s.PrimaryContainerKey)
}
var ok bool
if primaryContainerName, ok = taskTemplate.GetConfig()[flytek8s.PrimaryContainerKey]; !ok {
return nil, pluginserrors.Errorf(pluginserrors.BadTaskSpecification,
"invalid TaskSpecification, config missing [%s] key in [%v]", flytek8s.PrimaryContainerKey, taskTemplate.GetConfig())
}
// update annotations and labels
if taskTemplate.GetK8SPod() != nil && taskTemplate.GetK8SPod().Metadata != nil {
objectMeta.Annotations = utils.UnionMaps(objectMeta.Annotations, taskTemplate.GetK8SPod().Metadata.Annotations)
objectMeta.Labels = utils.UnionMaps(objectMeta.Labels, taskTemplate.GetK8SPod().Metadata.Labels)
}
} else {
// handles both container / pod tasks that use the TaskTemplate Container and K8sPod fields
var err error
podSpec, objectMeta, primaryContainerName, err = flytek8s.BuildRawPod(ctx, taskCtx)
if err != nil {
return nil, err
}
}
// update podSpec and objectMeta with Flyte customizations
podSpec, objectMeta, err = flytek8s.ApplyFlytePodConfiguration(ctx, taskCtx, podSpec, objectMeta, primaryContainerName)
if err != nil {
return nil, err
}
// set primaryContainerKey annotation if this is a Sidecar task or, as an optimization, if there is only a single
// container. this plugin marks the task complete if the primary Container is complete, so if there is only one
// container we can mark the task as complete before the Pod has been marked complete.
if taskTemplate.Type == SidecarTaskType || len(podSpec.Containers) == 1 {
objectMeta.Annotations[flytek8s.PrimaryContainerKey] = primaryContainerName
}
if len(podSpec.ServiceAccountName) == 0 {
podSpec.ServiceAccountName = flytek8s.GetServiceAccountNameFromTaskExecutionMetadata(taskCtx.TaskExecutionMetadata())
}
pod := flytek8s.BuildIdentityPod()
pod.ObjectMeta = *objectMeta
pod.Spec = *podSpec
return pod, nil
}
func (p plugin) GetTaskPhase(ctx context.Context, pluginContext k8s.PluginContext, r client.Object) (pluginsCore.PhaseInfo, error) {
logPlugin, err := logs.InitializeLogPlugins(logs.GetLogConfig())
if err != nil {
return pluginsCore.PhaseInfoUndefined, err
}
return p.GetTaskPhaseWithLogs(ctx, pluginContext, r, logPlugin, " (User)", nil)
}
func (plugin) GetTaskPhaseWithLogs(ctx context.Context, pluginContext k8s.PluginContext, r client.Object, logPlugin tasklog.Plugin, logSuffix string, extraLogTemplateVarsByScheme []tasklog.TemplateVar) (pluginsCore.PhaseInfo, error) {
pluginState := k8s.PluginState{}
_, err := pluginContext.PluginStateReader().Get(&pluginState)
if err != nil {
return pluginsCore.PhaseInfoUndefined, err
}
taskTemplate, err := pluginContext.TaskReader().Read(ctx)
if err != nil {
return pluginsCore.PhaseInfoUndefined, err
}
pod := r.(*v1.Pod)
transitionOccurredAt := flytek8s.GetLastTransitionOccurredAt(pod).Time
reportedAt := flytek8s.GetReportedAt(pod).Time
if reportedAt.IsZero() {
reportedAt = transitionOccurredAt
}
info := pluginsCore.TaskInfo{
OccurredAt: &transitionOccurredAt,
ReportedAt: &reportedAt,
}
taskExecID := pluginContext.TaskExecutionMetadata().GetTaskExecutionID()
if pod.Status.Phase != v1.PodPending && pod.Status.Phase != v1.PodUnknown {
taskLogs, err := logs.GetLogsForContainerInPod(ctx, logPlugin, taskExecID, pod, 0, logSuffix, extraLogTemplateVarsByScheme, taskTemplate)
if err != nil {
return pluginsCore.PhaseInfoUndefined, err
}
info.Logs = taskLogs
}
phaseInfo := pluginsCore.PhaseInfoUndefined
switch pod.Status.Phase {
case v1.PodSucceeded:
phaseInfo, err = flytek8s.DemystifySuccess(pod.Status, info)
case v1.PodFailed:
phaseInfo, err = flytek8s.DemystifyFailure(pod.Status, info)
case v1.PodPending:
phaseInfo, err = flytek8s.DemystifyPending(pod.Status)
case v1.PodReasonUnschedulable:
phaseInfo = pluginsCore.PhaseInfoQueued(transitionOccurredAt, pluginsCore.DefaultPhaseVersion, "pod unschedulable")
case v1.PodUnknown:
// DO NOTHING
default:
primaryContainerName, exists := r.GetAnnotations()[flytek8s.PrimaryContainerKey]
if !exists {
// if all of the containers in the Pod are complete, as an optimization, we can declare the task as
// succeeded rather than waiting for the Pod to be marked completed.
allSuccessfullyTerminated := len(pod.Status.ContainerStatuses) > 0
for _, s := range pod.Status.ContainerStatuses {
if s.State.Waiting != nil || s.State.Running != nil || (s.State.Terminated != nil && s.State.Terminated.ExitCode != 0) {
allSuccessfullyTerminated = false
}
}
if allSuccessfullyTerminated {
return flytek8s.DemystifySuccess(pod.Status, info)
}
// if the primary container annotation does not exist, then the task requires all containers
// to succeed to declare success. therefore, if the pod is not in one of the above states we
// fallback to declaring the task as 'running'.
phaseInfo = pluginsCore.PhaseInfoRunning(pluginsCore.DefaultPhaseVersion, &info)
if len(info.Logs) > 0 {
phaseInfo = phaseInfo.WithVersion(pluginsCore.DefaultPhaseVersion + 1)
}
} else {
// if the primary container annotation exists, we use the status of the specified container
phaseInfo = flytek8s.DeterminePrimaryContainerPhase(primaryContainerName, pod.Status.ContainerStatuses, &info)
if phaseInfo.Phase() == pluginsCore.PhasePermanentFailure && phaseInfo.Err() != nil &&
phaseInfo.Err().GetCode() == flytek8s.PrimaryContainerNotFound {
// if the primary container status is not found ensure that the primary container exists.
// note: it should be impossible for the primary container to not exist at this point.
for _, container := range pod.Spec.Containers {
if container.Name == primaryContainerName {
phaseInfo = pluginsCore.PhaseInfoRunning(pluginsCore.DefaultPhaseVersion, &info)
break
}
}
} else if phaseInfo.Phase() == pluginsCore.PhaseRunning && len(info.Logs) > 0 {
phaseInfo = phaseInfo.WithVersion(pluginsCore.DefaultPhaseVersion + 1)
}
}
}
if err != nil {
return pluginsCore.PhaseInfoUndefined, err
} else if phaseInfo.Phase() != pluginsCore.PhaseRunning && phaseInfo.Phase() == pluginState.Phase &&
phaseInfo.Version() <= pluginState.PhaseVersion && phaseInfo.Reason() != pluginState.Reason {
// if we have the same Phase as the previous evaluation and updated the Reason but not the PhaseVersion we must
// update the PhaseVersion so an event is sent to reflect the Reason update. this does not handle the Running
// Phase because the legacy used `DefaultPhaseVersion + 1` which will only increment to 1.
phaseInfo = phaseInfo.WithVersion(pluginState.PhaseVersion + 1)
}
return phaseInfo, err
}
func (plugin) GetProperties() k8s.PluginProperties {
return k8s.PluginProperties{}
}
func init() {
// Register ContainerTaskType and SidecarTaskType plugin entries. These separate task types
// still exist within the system, only now both are evaluated using the same internal pod plugin
// instance. This simplifies migration as users may keep the same configuration but are
// seamlessly transitioned from separate container and sidecar plugins to a single pod plugin.
pluginmachinery.PluginRegistry().RegisterK8sPlugin(
k8s.PluginEntry{
ID: ContainerTaskType,
RegisteredTaskTypes: []pluginsCore.TaskType{ContainerTaskType, pythonTaskType, rawContainerTaskType},
ResourceToWatch: &v1.Pod{},
Plugin: DefaultPodPlugin,
IsDefault: true,
})
pluginmachinery.PluginRegistry().RegisterK8sPlugin(
k8s.PluginEntry{
ID: SidecarTaskType,
RegisteredTaskTypes: []pluginsCore.TaskType{SidecarTaskType},
ResourceToWatch: &v1.Pod{},
Plugin: DefaultPodPlugin,
IsDefault: false,
})
// register podTaskType plugin entry
pluginmachinery.PluginRegistry().RegisterK8sPlugin(
k8s.PluginEntry{
ID: podTaskType,
RegisteredTaskTypes: []pluginsCore.TaskType{ContainerTaskType, pythonTaskType, rawContainerTaskType, SidecarTaskType},
ResourceToWatch: &v1.Pod{},
Plugin: DefaultPodPlugin,
IsDefault: true,
})
}