flyte 2.0.0b14__py3-none-any.whl → 2.0.0b15__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of flyte might be problematic. Click here for more details.
- flyte/_internal/controllers/remote/_action.py +3 -3
- flyte/_internal/controllers/remote/_controller.py +34 -34
- flyte/_protos/workflow/queue_service_pb2.py +24 -22
- flyte/_protos/workflow/queue_service_pb2.pyi +4 -2
- flyte/_protos/workflow/run_definition_pb2.py +38 -36
- flyte/_protos/workflow/run_definition_pb2.pyi +21 -6
- flyte/_protos/workflow/task_definition_pb2.py +16 -13
- flyte/_protos/workflow/task_definition_pb2.pyi +7 -0
- flyte/_version.py +3 -3
- flyte/remote/_action.py +5 -2
- {flyte-2.0.0b14.dist-info → flyte-2.0.0b15.dist-info}/METADATA +1 -1
- {flyte-2.0.0b14.dist-info → flyte-2.0.0b15.dist-info}/RECORD +18 -18
- {flyte-2.0.0b14.data → flyte-2.0.0b15.data}/scripts/debug.py +0 -0
- {flyte-2.0.0b14.data → flyte-2.0.0b15.data}/scripts/runtime.py +0 -0
- {flyte-2.0.0b14.dist-info → flyte-2.0.0b15.dist-info}/WHEEL +0 -0
- {flyte-2.0.0b14.dist-info → flyte-2.0.0b15.dist-info}/entry_points.txt +0 -0
- {flyte-2.0.0b14.dist-info → flyte-2.0.0b15.dist-info}/licenses/LICENSE +0 -0
- {flyte-2.0.0b14.dist-info → flyte-2.0.0b15.dist-info}/top_level.txt +0 -0
|
@@ -183,8 +183,8 @@ class Action:
|
|
|
183
183
|
et.FromSeconds(int(end_time))
|
|
184
184
|
et.nanos = int((end_time % 1) * 1e9)
|
|
185
185
|
|
|
186
|
-
|
|
187
|
-
task_definition_pb2.
|
|
186
|
+
spec = (
|
|
187
|
+
task_definition_pb2.TraceSpec(interface=typed_interface)
|
|
188
188
|
if typed_interface
|
|
189
189
|
else None
|
|
190
190
|
)
|
|
@@ -208,6 +208,6 @@ class Action:
|
|
|
208
208
|
output_uri=outputs_uri,
|
|
209
209
|
report_uri=report_uri,
|
|
210
210
|
),
|
|
211
|
-
|
|
211
|
+
spec=spec,
|
|
212
212
|
),
|
|
213
213
|
)
|
|
@@ -436,9 +436,9 @@ class RemoteController(Controller):
|
|
|
436
436
|
|
|
437
437
|
current_action_id = tctx.action
|
|
438
438
|
sub_run_output_path = storage.join(tctx.run_base_dir, info.action.name)
|
|
439
|
+
outputs_file_path: str = ""
|
|
439
440
|
|
|
440
441
|
if info.interface.has_outputs():
|
|
441
|
-
outputs_file_path: str = ""
|
|
442
442
|
if info.output:
|
|
443
443
|
outputs = await convert.convert_from_native_to_outputs(info.output, info.interface)
|
|
444
444
|
outputs_file_path = io.outputs_path(sub_run_output_path)
|
|
@@ -449,41 +449,41 @@ class RemoteController(Controller):
|
|
|
449
449
|
else:
|
|
450
450
|
raise flyte.errors.RuntimeSystemError("BadTraceInfo", "Trace info does not have output or error")
|
|
451
451
|
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
),
|
|
452
|
+
typed_interface = transform_native_to_typed_interface(info.interface)
|
|
453
|
+
|
|
454
|
+
trace_action = Action.from_trace(
|
|
455
|
+
parent_action_name=current_action_id.name,
|
|
456
|
+
action_id=identifier_pb2.ActionIdentifier(
|
|
457
|
+
name=info.action.name,
|
|
458
|
+
run=identifier_pb2.RunIdentifier(
|
|
459
|
+
name=current_action_id.run_name,
|
|
460
|
+
project=current_action_id.project,
|
|
461
|
+
domain=current_action_id.domain,
|
|
462
|
+
org=current_action_id.org,
|
|
464
463
|
),
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
464
|
+
),
|
|
465
|
+
inputs_uri=info.inputs_path,
|
|
466
|
+
outputs_uri=outputs_file_path,
|
|
467
|
+
friendly_name=info.name,
|
|
468
|
+
group_data=tctx.group_data,
|
|
469
|
+
run_output_base=tctx.run_base_dir,
|
|
470
|
+
start_time=info.start_time,
|
|
471
|
+
end_time=info.end_time,
|
|
472
|
+
typed_interface=typed_interface if typed_interface else None,
|
|
473
|
+
)
|
|
474
474
|
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
475
|
+
async with self._parent_action_semaphore[unique_action_name(current_action_id)]:
|
|
476
|
+
try:
|
|
477
|
+
logger.info(
|
|
478
|
+
f"Submitting Trace action Run:[{trace_action.run_name},"
|
|
479
|
+
f" Parent:[{trace_action.parent_action_name}],"
|
|
480
|
+
f" Trace fn:[{info.name}], action:[{info.action.name}]"
|
|
481
|
+
)
|
|
482
|
+
await self.submit_action(trace_action)
|
|
483
|
+
logger.info(f"Trace Action for [{info.name}] action id: {info.action.name}, completed!")
|
|
484
|
+
except asyncio.CancelledError:
|
|
485
|
+
# If the action is cancelled, we need to cancel the action on the server as well
|
|
486
|
+
raise
|
|
487
487
|
|
|
488
488
|
async def _submit_task_ref(
|
|
489
489
|
self, invoke_seq_num: int, _task: task_definition_pb2.TaskDetails, max_inline_io_bytes: int, *args, **kwargs
|
|
@@ -20,7 +20,7 @@ from flyte._protos.workflow import run_definition_pb2 as workflow_dot_run__defin
|
|
|
20
20
|
from flyte._protos.workflow import task_definition_pb2 as workflow_dot_task__definition__pb2
|
|
21
21
|
|
|
22
22
|
|
|
23
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1cworkflow/queue_service.proto\x12\x11\x63loudidl.workflow\x1a\x17\x63ommon/identifier.proto\x1a\x19\x66lyteidl/core/types.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/wrappers.proto\x1a\x17validate/validate.proto\x1a\x1dworkflow/run_definition.proto\x1a\x1eworkflow/task_definition.proto\"\x7f\n\x10WorkerIdentifier\x12+\n\x0corganization\x18\x01 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x0corganization\x12!\n\x07\x63luster\x18\x02 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x07\x63luster\x12\x1b\n\x04name\x18\x03 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x04name\"\xbf\x04\n\x14\x45nqueueActionRequest\x12H\n\taction_id\x18\x01 \x01(\x0b\x32!.cloudidl.common.ActionIdentifierB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x08\x61\x63tionId\x12\x31\n\x12parent_action_name\x18\x02 \x01(\tH\x01R\x10parentActionName\x88\x01\x01\x12\x35\n\x08run_spec\x18\x03 \x01(\x0b\x32\x1a.cloudidl.workflow.RunSpecR\x07runSpec\x12$\n\tinput_uri\x18\x06 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x08inputUri\x12/\n\x0frun_output_base\x18\x07 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\rrunOutputBase\x12\x14\n\x05group\x18\x08 \x01(\tR\x05group\x12\x18\n\x07subject\x18\t \x01(\tR\x07subject\x12=\n\x04task\x18\n \x01(\x0b\x32\x1d.cloudidl.workflow.TaskActionB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01H\x00R\x04task\x12@\n\x05trace\x18\x0b \x01(\x0b\x32\x1e.cloudidl.workflow.TraceActionB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01H\x00R\x05trace\x12L\n\tcondition\x18\x0c \x01(\x0b\x32\".cloudidl.workflow.ConditionActionB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01H\x00R\tconditionB\x06\n\x04specB\x15\n\x13_parent_action_name\"\xcf\x01\n\nTaskAction\x12\x31\n\x02id\x18\x01 \x01(\x0b\x32!.cloudidl.workflow.TaskIdentifierR\x02id\x12\x39\n\x04spec\x18\x02 \x01(\x0b\x32\x1b.cloudidl.workflow.TaskSpecB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x04spec\x12\x39\n\tcache_key\x18\x03 \x01(\x0b\x32\x1c.google.protobuf.StringValueR\x08\x63\x61\x63heKey\x12\x18\n\x07\x63luster\x18\x04 \x01(\tR\x07\x63luster\"\
|
|
23
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1cworkflow/queue_service.proto\x12\x11\x63loudidl.workflow\x1a\x17\x63ommon/identifier.proto\x1a\x19\x66lyteidl/core/types.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/wrappers.proto\x1a\x17validate/validate.proto\x1a\x1dworkflow/run_definition.proto\x1a\x1eworkflow/task_definition.proto\"\x7f\n\x10WorkerIdentifier\x12+\n\x0corganization\x18\x01 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x0corganization\x12!\n\x07\x63luster\x18\x02 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x07\x63luster\x12\x1b\n\x04name\x18\x03 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x04name\"\xbf\x04\n\x14\x45nqueueActionRequest\x12H\n\taction_id\x18\x01 \x01(\x0b\x32!.cloudidl.common.ActionIdentifierB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x08\x61\x63tionId\x12\x31\n\x12parent_action_name\x18\x02 \x01(\tH\x01R\x10parentActionName\x88\x01\x01\x12\x35\n\x08run_spec\x18\x03 \x01(\x0b\x32\x1a.cloudidl.workflow.RunSpecR\x07runSpec\x12$\n\tinput_uri\x18\x06 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x08inputUri\x12/\n\x0frun_output_base\x18\x07 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\rrunOutputBase\x12\x14\n\x05group\x18\x08 \x01(\tR\x05group\x12\x18\n\x07subject\x18\t \x01(\tR\x07subject\x12=\n\x04task\x18\n \x01(\x0b\x32\x1d.cloudidl.workflow.TaskActionB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01H\x00R\x04task\x12@\n\x05trace\x18\x0b \x01(\x0b\x32\x1e.cloudidl.workflow.TraceActionB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01H\x00R\x05trace\x12L\n\tcondition\x18\x0c \x01(\x0b\x32\".cloudidl.workflow.ConditionActionB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01H\x00R\tconditionB\x06\n\x04specB\x15\n\x13_parent_action_name\"\xcf\x01\n\nTaskAction\x12\x31\n\x02id\x18\x01 \x01(\x0b\x32!.cloudidl.workflow.TaskIdentifierR\x02id\x12\x39\n\x04spec\x18\x02 \x01(\x0b\x32\x1b.cloudidl.workflow.TaskSpecB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x04spec\x12\x39\n\tcache_key\x18\x03 \x01(\x0b\x32\x1c.google.protobuf.StringValueR\x08\x63\x61\x63heKey\x12\x18\n\x07\x63luster\x18\x04 \x01(\tR\x07\x63luster\"\xd9\x02\n\x0bTraceAction\x12\x1b\n\x04name\x18\x01 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x04name\x12.\n\x05phase\x18\x02 \x01(\x0e\x32\x18.cloudidl.workflow.PhaseR\x05phase\x12\x39\n\nstart_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tstartTime\x12:\n\x08\x65nd_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00R\x07\x65ndTime\x88\x01\x01\x12=\n\x07outputs\x18\x05 \x01(\x0b\x32#.cloudidl.workflow.OutputReferencesR\x07outputs\x12:\n\x04spec\x18\x06 \x01(\x0b\x32\x1c.cloudidl.workflow.TraceSpecB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x04specB\x0b\n\t_end_time\"\x8a\x02\n\x0f\x43onditionAction\x12\x1b\n\x04name\x18\x01 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x04name\x12 \n\x06run_id\x18\x02 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01H\x00R\x05runId\x12&\n\taction_id\x18\x03 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01H\x00R\x08\x61\x63tionId\x12\x18\n\x06global\x18\x04 \x01(\x08H\x00R\x06global\x12.\n\x04type\x18\x06 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeR\x04type\x12\x16\n\x06prompt\x18\x07 \x01(\tR\x06prompt\x12 \n\x0b\x64\x65scription\x18\x08 \x01(\tR\x0b\x64\x65scriptionB\x0c\n\x05scope\x12\x03\xf8\x42\x01\"\x17\n\x15\x45nqueueActionResponse\"X\n\x15\x41\x62ortQueuedRunRequest\x12?\n\x06run_id\x18\x01 \x01(\x0b\x32\x1e.cloudidl.common.RunIdentifierB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x05runId\"\x18\n\x16\x41\x62ortQueuedRunResponse\"\x80\x03\n\x10HeartbeatRequest\x12J\n\tworker_id\x18\x01 \x01(\x0b\x32#.cloudidl.workflow.WorkerIdentifierB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x08workerId\x12M\n\x11\x61\x63tive_action_ids\x18\x02 \x03(\x0b\x32!.cloudidl.common.ActionIdentifierR\x0f\x61\x63tiveActionIds\x12Q\n\x13terminal_action_ids\x18\x03 \x03(\x0b\x32!.cloudidl.common.ActionIdentifierR\x11terminalActionIds\x12O\n\x12\x61\x62orted_action_ids\x18\x04 \x03(\x0b\x32!.cloudidl.common.ActionIdentifierR\x10\x61\x62ortedActionIds\x12-\n\x12\x61vailable_capacity\x18\x05 \x01(\x05R\x11\x61vailableCapacity\"\xe2\x01\n\x11HeartbeatResponse\x12\x37\n\nnew_leases\x18\x01 \x03(\x0b\x32\x18.cloudidl.workflow.LeaseR\tnewLeases\x12?\n\x0e\x61\x62orted_leases\x18\x02 \x03(\x0b\x32\x18.cloudidl.workflow.LeaseR\rabortedLeases\x12S\n\x14\x66inalized_action_ids\x18\x03 \x03(\x0b\x32!.cloudidl.common.ActionIdentifierR\x12\x66inalizedActionIds\"a\n\x13StreamLeasesRequest\x12J\n\tworker_id\x18\x01 \x01(\x0b\x32#.cloudidl.workflow.WorkerIdentifierB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x08workerId\"H\n\x14StreamLeasesResponse\x12\x30\n\x06leases\x18\x01 \x03(\x0b\x32\x18.cloudidl.workflow.LeaseR\x06leases\"\xc9\x04\n\x05Lease\x12H\n\taction_id\x18\x01 \x01(\x0b\x32!.cloudidl.common.ActionIdentifierB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x08\x61\x63tionId\x12\x31\n\x12parent_action_name\x18\x02 \x01(\tH\x01R\x10parentActionName\x88\x01\x01\x12\x35\n\x08run_spec\x18\x03 \x01(\x0b\x32\x1a.cloudidl.workflow.RunSpecR\x07runSpec\x12$\n\tinput_uri\x18\x04 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x08inputUri\x12/\n\x0frun_output_base\x18\x05 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\rrunOutputBase\x12=\n\x04task\x18\x06 \x01(\x0b\x32\x1d.cloudidl.workflow.TaskActionB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01H\x00R\x04task\x12L\n\tcondition\x18\x07 \x01(\x0b\x32\".cloudidl.workflow.ConditionActionB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01H\x00R\tcondition\x12@\n\x05trace\x18\n \x01(\x0b\x32\x1e.cloudidl.workflow.TraceActionB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01H\x00R\x05trace\x12\x14\n\x05group\x18\x08 \x01(\tR\x05group\x12\x18\n\x07subject\x18\t \x01(\tR\x07subject\x12\x12\n\x04host\x18\x0b \x01(\tR\x04hostB\x0b\n\x04spec\x12\x03\xf8\x42\x01\x42\x15\n\x13_parent_action_name2\xa0\x03\n\x0cQueueService\x12\x64\n\rEnqueueAction\x12\'.cloudidl.workflow.EnqueueActionRequest\x1a(.cloudidl.workflow.EnqueueActionResponse\"\x00\x12g\n\x0e\x41\x62ortQueuedRun\x12(.cloudidl.workflow.AbortQueuedRunRequest\x1a).cloudidl.workflow.AbortQueuedRunResponse\"\x00\x12\\\n\tHeartbeat\x12#.cloudidl.workflow.HeartbeatRequest\x1a$.cloudidl.workflow.HeartbeatResponse\"\x00(\x01\x30\x01\x12\x63\n\x0cStreamLeases\x12&.cloudidl.workflow.StreamLeasesRequest\x1a\'.cloudidl.workflow.StreamLeasesResponse\"\x00\x30\x01\x42\xbe\x01\n\x15\x63om.cloudidl.workflowB\x11QueueServiceProtoH\x02P\x01Z+github.com/unionai/cloud/gen/pb-go/workflow\xa2\x02\x03\x43WX\xaa\x02\x11\x43loudidl.Workflow\xca\x02\x11\x43loudidl\\Workflow\xe2\x02\x1d\x43loudidl\\Workflow\\GPBMetadata\xea\x02\x12\x43loudidl::Workflowb\x06proto3')
|
|
24
24
|
|
|
25
25
|
_globals = globals()
|
|
26
26
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
@@ -50,6 +50,8 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
50
50
|
_TASKACTION.fields_by_name['spec']._serialized_options = b'\372B\005\212\001\002\020\001'
|
|
51
51
|
_TRACEACTION.fields_by_name['name']._options = None
|
|
52
52
|
_TRACEACTION.fields_by_name['name']._serialized_options = b'\372B\004r\002\020\001'
|
|
53
|
+
_TRACEACTION.fields_by_name['spec']._options = None
|
|
54
|
+
_TRACEACTION.fields_by_name['spec']._serialized_options = b'\372B\005\212\001\002\020\001'
|
|
53
55
|
_CONDITIONACTION.oneofs_by_name['scope']._options = None
|
|
54
56
|
_CONDITIONACTION.oneofs_by_name['scope']._serialized_options = b'\370B\001'
|
|
55
57
|
_CONDITIONACTION.fields_by_name['name']._options = None
|
|
@@ -85,25 +87,25 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
85
87
|
_globals['_TASKACTION']._serialized_start=964
|
|
86
88
|
_globals['_TASKACTION']._serialized_end=1171
|
|
87
89
|
_globals['_TRACEACTION']._serialized_start=1174
|
|
88
|
-
_globals['_TRACEACTION']._serialized_end=
|
|
89
|
-
_globals['_CONDITIONACTION']._serialized_start=
|
|
90
|
-
_globals['_CONDITIONACTION']._serialized_end=
|
|
91
|
-
_globals['_ENQUEUEACTIONRESPONSE']._serialized_start=
|
|
92
|
-
_globals['_ENQUEUEACTIONRESPONSE']._serialized_end=
|
|
93
|
-
_globals['_ABORTQUEUEDRUNREQUEST']._serialized_start=
|
|
94
|
-
_globals['_ABORTQUEUEDRUNREQUEST']._serialized_end=
|
|
95
|
-
_globals['_ABORTQUEUEDRUNRESPONSE']._serialized_start=
|
|
96
|
-
_globals['_ABORTQUEUEDRUNRESPONSE']._serialized_end=
|
|
97
|
-
_globals['_HEARTBEATREQUEST']._serialized_start=
|
|
98
|
-
_globals['_HEARTBEATREQUEST']._serialized_end=
|
|
99
|
-
_globals['_HEARTBEATRESPONSE']._serialized_start=
|
|
100
|
-
_globals['_HEARTBEATRESPONSE']._serialized_end=
|
|
101
|
-
_globals['_STREAMLEASESREQUEST']._serialized_start=
|
|
102
|
-
_globals['_STREAMLEASESREQUEST']._serialized_end=
|
|
103
|
-
_globals['_STREAMLEASESRESPONSE']._serialized_start=
|
|
104
|
-
_globals['_STREAMLEASESRESPONSE']._serialized_end=
|
|
105
|
-
_globals['_LEASE']._serialized_start=
|
|
106
|
-
_globals['_LEASE']._serialized_end=
|
|
107
|
-
_globals['_QUEUESERVICE']._serialized_start=
|
|
108
|
-
_globals['_QUEUESERVICE']._serialized_end=
|
|
90
|
+
_globals['_TRACEACTION']._serialized_end=1519
|
|
91
|
+
_globals['_CONDITIONACTION']._serialized_start=1522
|
|
92
|
+
_globals['_CONDITIONACTION']._serialized_end=1788
|
|
93
|
+
_globals['_ENQUEUEACTIONRESPONSE']._serialized_start=1790
|
|
94
|
+
_globals['_ENQUEUEACTIONRESPONSE']._serialized_end=1813
|
|
95
|
+
_globals['_ABORTQUEUEDRUNREQUEST']._serialized_start=1815
|
|
96
|
+
_globals['_ABORTQUEUEDRUNREQUEST']._serialized_end=1903
|
|
97
|
+
_globals['_ABORTQUEUEDRUNRESPONSE']._serialized_start=1905
|
|
98
|
+
_globals['_ABORTQUEUEDRUNRESPONSE']._serialized_end=1929
|
|
99
|
+
_globals['_HEARTBEATREQUEST']._serialized_start=1932
|
|
100
|
+
_globals['_HEARTBEATREQUEST']._serialized_end=2316
|
|
101
|
+
_globals['_HEARTBEATRESPONSE']._serialized_start=2319
|
|
102
|
+
_globals['_HEARTBEATRESPONSE']._serialized_end=2545
|
|
103
|
+
_globals['_STREAMLEASESREQUEST']._serialized_start=2547
|
|
104
|
+
_globals['_STREAMLEASESREQUEST']._serialized_end=2644
|
|
105
|
+
_globals['_STREAMLEASESRESPONSE']._serialized_start=2646
|
|
106
|
+
_globals['_STREAMLEASESRESPONSE']._serialized_end=2718
|
|
107
|
+
_globals['_LEASE']._serialized_start=2721
|
|
108
|
+
_globals['_LEASE']._serialized_end=3306
|
|
109
|
+
_globals['_QUEUESERVICE']._serialized_start=3309
|
|
110
|
+
_globals['_QUEUESERVICE']._serialized_end=3725
|
|
109
111
|
# @@protoc_insertion_point(module_scope)
|
|
@@ -59,18 +59,20 @@ class TaskAction(_message.Message):
|
|
|
59
59
|
def __init__(self, id: _Optional[_Union[_task_definition_pb2.TaskIdentifier, _Mapping]] = ..., spec: _Optional[_Union[_task_definition_pb2.TaskSpec, _Mapping]] = ..., cache_key: _Optional[_Union[_wrappers_pb2.StringValue, _Mapping]] = ..., cluster: _Optional[str] = ...) -> None: ...
|
|
60
60
|
|
|
61
61
|
class TraceAction(_message.Message):
|
|
62
|
-
__slots__ = ["name", "phase", "start_time", "end_time", "outputs"]
|
|
62
|
+
__slots__ = ["name", "phase", "start_time", "end_time", "outputs", "spec"]
|
|
63
63
|
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
64
64
|
PHASE_FIELD_NUMBER: _ClassVar[int]
|
|
65
65
|
START_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
66
66
|
END_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
67
67
|
OUTPUTS_FIELD_NUMBER: _ClassVar[int]
|
|
68
|
+
SPEC_FIELD_NUMBER: _ClassVar[int]
|
|
68
69
|
name: str
|
|
69
70
|
phase: _run_definition_pb2.Phase
|
|
70
71
|
start_time: _timestamp_pb2.Timestamp
|
|
71
72
|
end_time: _timestamp_pb2.Timestamp
|
|
72
73
|
outputs: _run_definition_pb2.OutputReferences
|
|
73
|
-
|
|
74
|
+
spec: _task_definition_pb2.TraceSpec
|
|
75
|
+
def __init__(self, name: _Optional[str] = ..., phase: _Optional[_Union[_run_definition_pb2.Phase, str]] = ..., start_time: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]] = ..., end_time: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]] = ..., outputs: _Optional[_Union[_run_definition_pb2.OutputReferences, _Mapping]] = ..., spec: _Optional[_Union[_task_definition_pb2.TraceSpec, _Mapping]] = ...) -> None: ...
|
|
74
76
|
|
|
75
77
|
class ConditionAction(_message.Message):
|
|
76
78
|
__slots__ = ["name", "run_id", "action_id", "type", "prompt", "description"]
|
|
@@ -22,7 +22,7 @@ from flyte._protos.validate.validate import validate_pb2 as validate_dot_validat
|
|
|
22
22
|
from flyte._protos.workflow import task_definition_pb2 as workflow_dot_task__definition__pb2
|
|
23
23
|
|
|
24
24
|
|
|
25
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1dworkflow/run_definition.proto\x12\x11\x63loudidl.workflow\x1a\x17\x63ommon/identifier.proto\x1a\x15\x63ommon/identity.proto\x1a\x1b\x66lyteidl/core/catalog.proto\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/wrappers.proto\x1a\x17validate/validate.proto\x1a\x1eworkflow/task_definition.proto\"\x82\x01\n\x06Labels\x12=\n\x06values\x18\x01 \x03(\x0b\x32%.cloudidl.workflow.Labels.ValuesEntryR\x06values\x1a\x39\n\x0bValuesEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"\x8c\x01\n\x0b\x41nnotations\x12\x42\n\x06values\x18\x01 \x03(\x0b\x32*.cloudidl.workflow.Annotations.ValuesEntryR\x06values\x1a\x39\n\x0bValuesEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\";\n\x04\x45nvs\x12\x33\n\x06values\x18\x01 \x03(\x0b\x32\x1b.flyteidl.core.KeyValuePairR\x06values\"\xb0\x02\n\x07RunSpec\x12\x31\n\x06labels\x18\x01 \x01(\x0b\x32\x19.cloudidl.workflow.LabelsR\x06labels\x12@\n\x0b\x61nnotations\x18\x02 \x01(\x0b\x32\x1e.cloudidl.workflow.AnnotationsR\x0b\x61nnotations\x12+\n\x04\x65nvs\x18\x03 \x01(\x0b\x32\x17.cloudidl.workflow.EnvsR\x04\x65nvs\x12@\n\rinterruptible\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.BoolValueR\rinterruptible\x12\'\n\x0foverwrite_cache\x18\x05 \x01(\x08R\x0eoverwriteCache\x12\x18\n\x07\x63luster\x18\x06 \x01(\tR\x07\x63luster\"8\n\x03Run\x12\x31\n\x06\x61\x63tion\x18\x01 \x01(\x0b\x32\x19.cloudidl.workflow.ActionR\x06\x61\x63tion\"}\n\nRunDetails\x12\x35\n\x08run_spec\x18\x01 \x01(\x0b\x32\x1a.cloudidl.workflow.RunSpecR\x07runSpec\x12\x38\n\x06\x61\x63tion\x18\x02 \x01(\x0b\x32 .cloudidl.workflow.ActionDetailsR\x06\x61\x63tion\"\x83\x01\n\x12TaskActionMetadata\x12\x31\n\x02id\x18\x01 \x01(\x0b\x32!.cloudidl.workflow.TaskIdentifierR\x02id\x12\x1b\n\ttask_type\x18\x02 \x01(\tR\x08taskType\x12\x1d\n\nshort_name\x18\x03 \x01(\tR\tshortName\")\n\x13TraceActionMetadata\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\"\x9f\x01\n\x17\x43onditionActionMetadata\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12 \n\x06run_id\x18\x02 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01H\x00R\x05runId\x12&\n\taction_id\x18\x03 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01H\x00R\x08\x61\x63tionId\x12\x18\n\x06global\x18\x04 \x01(\x08H\x00R\x06globalB\x0c\n\x05scope\x12\x03\xf8\x42\x01\"\xf1\x02\n\x0e\x41\x63tionMetadata\x12\x16\n\x06parent\x18\x03 \x01(\tR\x06parent\x12\x14\n\x05group\x18\x05 \x01(\tR\x05group\x12\x42\n\x0b\x65xecuted_by\x18\x06 \x01(\x0b\x32!.cloudidl.common.EnrichedIdentityR\nexecutedBy\x12\x45\n\x04task\x18\x07 \x01(\x0b\x32%.cloudidl.workflow.TaskActionMetadataB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01H\x00R\x04task\x12H\n\x05trace\x18\x08 \x01(\x0b\x32&.cloudidl.workflow.TraceActionMetadataB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01H\x00R\x05trace\x12T\n\tcondition\x18\t \x01(\x0b\x32*.cloudidl.workflow.ConditionActionMetadataB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01H\x00R\tconditionB\x06\n\x04spec\"\xad\x02\n\x0c\x41\x63tionStatus\x12.\n\x05phase\x18\x01 \x01(\x0e\x32\x18.cloudidl.workflow.PhaseR\x05phase\x12\x39\n\nstart_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tstartTime\x12:\n\x08\x65nd_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00R\x07\x65ndTime\x88\x01\x01\x12#\n\x08\x61ttempts\x18\x04 \x01(\rB\x07\xfa\x42\x04*\x02 \x00R\x08\x61ttempts\x12\x44\n\x0c\x63\x61\x63he_status\x18\x05 \x01(\x0e\x32!.flyteidl.core.CatalogCacheStatusR\x0b\x63\x61\x63heStatusB\x0b\n\t_end_time\"\xb3\x01\n\x06\x41\x63tion\x12\x31\n\x02id\x18\x01 \x01(\x0b\x32!.cloudidl.common.ActionIdentifierR\x02id\x12=\n\x08metadata\x18\x02 \x01(\x0b\x32!.cloudidl.workflow.ActionMetadataR\x08metadata\x12\x37\n\x06status\x18\x03 \x01(\x0b\x32\x1f.cloudidl.workflow.ActionStatusR\x06status\"\x9e\x02\n\x0e\x45nrichedAction\x12\x31\n\x06\x61\x63tion\x18\x01 \x01(\x0b\x32\x19.cloudidl.workflow.ActionR\x06\x61\x63tion\x12!\n\x0cmeets_filter\x18\x02 \x01(\x08R\x0bmeetsFilter\x12n\n\x15\x63hildren_phase_counts\x18\x03 \x03(\x0b\x32:.cloudidl.workflow.EnrichedAction.ChildrenPhaseCountsEntryR\x13\x63hildrenPhaseCounts\x1a\x46\n\x18\x43hildrenPhaseCountsEntry\x12\x10\n\x03key\x18\x01 \x01(\x05R\x03key\x12\x14\n\x05value\x18\x02 \x01(\x05R\x05value:\x02\x38\x01\"\x9a\x01\n\tErrorInfo\x12\x18\n\x07message\x18\x01 \x01(\tR\x07message\x12\x35\n\x04kind\x18\x02 \x01(\x0e\x32!.cloudidl.workflow.ErrorInfo.KindR\x04kind\"<\n\x04Kind\x12\x14\n\x10KIND_UNSPECIFIED\x10\x00\x12\r\n\tKIND_USER\x10\x01\x12\x0f\n\x0bKIND_SYSTEM\x10\x02\"e\n\tAbortInfo\x12\x16\n\x06reason\x18\x01 \x01(\tR\x06reason\x12@\n\naborted_by\x18\x02 \x01(\x0b\x32!.cloudidl.common.EnrichedIdentityR\tabortedBy\"\xcb\x03\n\rActionDetails\x12\x31\n\x02id\x18\x01 \x01(\x0b\x32!.cloudidl.common.ActionIdentifierR\x02id\x12=\n\x08metadata\x18\x02 \x01(\x0b\x32!.cloudidl.workflow.ActionMetadataR\x08metadata\x12\x37\n\x06status\x18\x03 \x01(\x0b\x32\x1f.cloudidl.workflow.ActionStatusR\x06status\x12=\n\nerror_info\x18\x04 \x01(\x0b\x32\x1c.cloudidl.workflow.ErrorInfoH\x00R\terrorInfo\x12=\n\nabort_info\x18\x05 \x01(\x0b\x32\x1c.cloudidl.workflow.AbortInfoH\x00R\tabortInfo\x12I\n\x12resolved_task_spec\x18\x06 \x01(\x0b\x32\x1b.cloudidl.workflow.TaskSpecR\x10resolvedTaskSpec\x12<\n\x08\x61ttempts\x18\x07 \x03(\x0b\x32 .cloudidl.workflow.ActionAttemptR\x08\x61ttemptsB\x08\n\x06result\"\x85\x06\n\rActionAttempt\x12.\n\x05phase\x18\x01 \x01(\x0e\x32\x18.cloudidl.workflow.PhaseR\x05phase\x12\x39\n\nstart_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tstartTime\x12:\n\x08\x65nd_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00R\x07\x65ndTime\x88\x01\x01\x12@\n\nerror_info\x18\x04 \x01(\x0b\x32\x1c.cloudidl.workflow.ErrorInfoH\x01R\terrorInfo\x88\x01\x01\x12!\n\x07\x61ttempt\x18\x05 \x01(\rB\x07\xfa\x42\x04*\x02 \x00R\x07\x61ttempt\x12\x31\n\x08log_info\x18\x06 \x03(\x0b\x32\x16.flyteidl.core.TaskLogR\x07logInfo\x12=\n\x07outputs\x18\x07 \x01(\x0b\x32#.cloudidl.workflow.OutputReferencesR\x07outputs\x12%\n\x0elogs_available\x18\x08 \x01(\x08R\rlogsAvailable\x12\x44\n\x0c\x63\x61\x63he_status\x18\t \x01(\x0e\x32!.flyteidl.core.CatalogCacheStatusR\x0b\x63\x61\x63heStatus\x12\x46\n\x0e\x63luster_events\x18\n \x03(\x0b\x32\x1f.cloudidl.workflow.ClusterEventR\rclusterEvents\x12O\n\x11phase_transitions\x18\x0b \x03(\x0b\x32\".cloudidl.workflow.PhaseTransitionR\x10phaseTransitions\x12\x18\n\x07\x63luster\x18\x0c \x01(\tR\x07\x63luster\x12:\n\x0blog_context\x18\r \x01(\x0b\x32\x19.flyteidl.core.LogContextR\nlogContextB\x0b\n\t_end_timeB\r\n\x0b_error_info\"e\n\x0c\x43lusterEvent\x12;\n\x0boccurred_at\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\x12\x18\n\x07message\x18\x02 \x01(\tR\x07message\"\xc5\x01\n\x0fPhaseTransition\x12.\n\x05phase\x18\x01 \x01(\x0e\x32\x18.cloudidl.workflow.PhaseR\x05phase\x12\x39\n\nstart_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tstartTime\x12:\n\x08\x65nd_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00R\x07\x65ndTime\x88\x01\x01\x42\x0b\n\t_end_time\"\xea\x06\n\x0b\x41\x63tionEvent\x12;\n\x02id\x18\x01 \x01(\x0b\x32!.cloudidl.common.ActionIdentifierB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x02id\x12!\n\x07\x61ttempt\x18\x02 \x01(\rB\x07\xfa\x42\x04*\x02 \x00R\x07\x61ttempt\x12.\n\x05phase\x18\x03 \x01(\x0e\x32\x18.cloudidl.workflow.PhaseR\x05phase\x12\x18\n\x07version\x18\x04 \x01(\rR\x07version\x12=\n\nstart_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x02\x18\x01R\tstartTime\x12=\n\x0cupdated_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x0bupdatedTime\x12>\n\x08\x65nd_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x02\x18\x01H\x00R\x07\x65ndTime\x88\x01\x01\x12@\n\nerror_info\x18\x08 \x01(\x0b\x32\x1c.cloudidl.workflow.ErrorInfoH\x01R\terrorInfo\x88\x01\x01\x12\x31\n\x08log_info\x18\t \x03(\x0b\x32\x16.flyteidl.core.TaskLogR\x07logInfo\x12:\n\x0blog_context\x18\n \x01(\x0b\x32\x19.flyteidl.core.LogContextR\nlogContext\x12\x18\n\x07\x63luster\x18\x0b \x01(\tR\x07\x63luster\x12=\n\x07outputs\x18\x0c \x01(\x0b\x32#.cloudidl.workflow.OutputReferencesR\x07outputs\x12\x44\n\x0c\x63\x61\x63he_status\x18\r \x01(\x0e\x32!.flyteidl.core.CatalogCacheStatusR\x0b\x63\x61\x63heStatus\x12\x46\n\x0e\x63luster_events\x18\x0e \x03(\x0b\x32\x1f.cloudidl.workflow.ClusterEventR\rclusterEvents\x12?\n\rreported_time\x18\x0f \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x0creportedTimeB\x0b\n\t_end_timeB\r\n\x0b_error_info\"P\n\x0cNamedLiteral\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x16.flyteidl.core.LiteralR\x05value\"P\n\x10OutputReferences\x12\x1d\n\noutput_uri\x18\x01 \x01(\tR\toutputUri\x12\x1d\n\nreport_uri\x18\x02 \x01(\tR\treportUri\"|\n\x06Inputs\x12;\n\x08literals\x18\x01 \x03(\x0b\x32\x1f.cloudidl.workflow.NamedLiteralR\x08literals\x12\x35\n\x07\x63ontext\x18\x02 \x03(\x0b\x32\x1b.flyteidl.core.KeyValuePairR\x07\x63ontext\"F\n\x07Outputs\x12;\n\x08literals\x18\x01 \x03(\x0b\x32\x1f.cloudidl.workflow.NamedLiteralR\x08literals*\xcb\x01\n\x05Phase\x12\x15\n\x11PHASE_UNSPECIFIED\x10\x00\x12\x10\n\x0cPHASE_QUEUED\x10\x01\x12\x1f\n\x1bPHASE_WAITING_FOR_RESOURCES\x10\x02\x12\x16\n\x12PHASE_INITIALIZING\x10\x03\x12\x11\n\rPHASE_RUNNING\x10\x04\x12\x13\n\x0fPHASE_SUCCEEDED\x10\x05\x12\x10\n\x0cPHASE_FAILED\x10\x06\x12\x11\n\rPHASE_ABORTED\x10\x07\x12\x13\n\x0fPHASE_TIMED_OUT\x10\x08\x42\xbf\x01\n\x15\x63om.cloudidl.workflowB\x12RunDefinitionProtoH\x02P\x01Z+github.com/unionai/cloud/gen/pb-go/workflow\xa2\x02\x03\x43WX\xaa\x02\x11\x43loudidl.Workflow\xca\x02\x11\x43loudidl\\Workflow\xe2\x02\x1d\x43loudidl\\Workflow\\GPBMetadata\xea\x02\x12\x43loudidl::Workflowb\x06proto3')
|
|
25
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1dworkflow/run_definition.proto\x12\x11\x63loudidl.workflow\x1a\x17\x63ommon/identifier.proto\x1a\x15\x63ommon/identity.proto\x1a\x1b\x66lyteidl/core/catalog.proto\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/wrappers.proto\x1a\x17validate/validate.proto\x1a\x1eworkflow/task_definition.proto\"\x82\x01\n\x06Labels\x12=\n\x06values\x18\x01 \x03(\x0b\x32%.cloudidl.workflow.Labels.ValuesEntryR\x06values\x1a\x39\n\x0bValuesEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"\x8c\x01\n\x0b\x41nnotations\x12\x42\n\x06values\x18\x01 \x03(\x0b\x32*.cloudidl.workflow.Annotations.ValuesEntryR\x06values\x1a\x39\n\x0bValuesEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\";\n\x04\x45nvs\x12\x33\n\x06values\x18\x01 \x03(\x0b\x32\x1b.flyteidl.core.KeyValuePairR\x06values\"\xb0\x02\n\x07RunSpec\x12\x31\n\x06labels\x18\x01 \x01(\x0b\x32\x19.cloudidl.workflow.LabelsR\x06labels\x12@\n\x0b\x61nnotations\x18\x02 \x01(\x0b\x32\x1e.cloudidl.workflow.AnnotationsR\x0b\x61nnotations\x12+\n\x04\x65nvs\x18\x03 \x01(\x0b\x32\x17.cloudidl.workflow.EnvsR\x04\x65nvs\x12@\n\rinterruptible\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.BoolValueR\rinterruptible\x12\'\n\x0foverwrite_cache\x18\x05 \x01(\x08R\x0eoverwriteCache\x12\x18\n\x07\x63luster\x18\x06 \x01(\tR\x07\x63luster\"8\n\x03Run\x12\x31\n\x06\x61\x63tion\x18\x01 \x01(\x0b\x32\x19.cloudidl.workflow.ActionR\x06\x61\x63tion\"}\n\nRunDetails\x12\x35\n\x08run_spec\x18\x01 \x01(\x0b\x32\x1a.cloudidl.workflow.RunSpecR\x07runSpec\x12\x38\n\x06\x61\x63tion\x18\x02 \x01(\x0b\x32 .cloudidl.workflow.ActionDetailsR\x06\x61\x63tion\"\x83\x01\n\x12TaskActionMetadata\x12\x31\n\x02id\x18\x01 \x01(\x0b\x32!.cloudidl.workflow.TaskIdentifierR\x02id\x12\x1b\n\ttask_type\x18\x02 \x01(\tR\x08taskType\x12\x1d\n\nshort_name\x18\x03 \x01(\tR\tshortName\")\n\x13TraceActionMetadata\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\"\x9f\x01\n\x17\x43onditionActionMetadata\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12 \n\x06run_id\x18\x02 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01H\x00R\x05runId\x12&\n\taction_id\x18\x03 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01H\x00R\x08\x61\x63tionId\x12\x18\n\x06global\x18\x04 \x01(\x08H\x00R\x06globalB\x0c\n\x05scope\x12\x03\xf8\x42\x01\"\xb1\x03\n\x0e\x41\x63tionMetadata\x12\x16\n\x06parent\x18\x03 \x01(\tR\x06parent\x12\x14\n\x05group\x18\x05 \x01(\tR\x05group\x12\x42\n\x0b\x65xecuted_by\x18\x06 \x01(\x0b\x32!.cloudidl.common.EnrichedIdentityR\nexecutedBy\x12\x45\n\x04task\x18\x07 \x01(\x0b\x32%.cloudidl.workflow.TaskActionMetadataB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01H\x00R\x04task\x12H\n\x05trace\x18\x08 \x01(\x0b\x32&.cloudidl.workflow.TraceActionMetadataB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01H\x00R\x05trace\x12T\n\tcondition\x18\t \x01(\x0b\x32*.cloudidl.workflow.ConditionActionMetadataB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01H\x00R\tcondition\x12>\n\x0b\x61\x63tion_type\x18\n \x01(\x0e\x32\x1d.cloudidl.workflow.ActionTypeR\nactionTypeB\x06\n\x04spec\"\xad\x02\n\x0c\x41\x63tionStatus\x12.\n\x05phase\x18\x01 \x01(\x0e\x32\x18.cloudidl.workflow.PhaseR\x05phase\x12\x39\n\nstart_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tstartTime\x12:\n\x08\x65nd_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00R\x07\x65ndTime\x88\x01\x01\x12#\n\x08\x61ttempts\x18\x04 \x01(\rB\x07\xfa\x42\x04*\x02 \x00R\x08\x61ttempts\x12\x44\n\x0c\x63\x61\x63he_status\x18\x05 \x01(\x0e\x32!.flyteidl.core.CatalogCacheStatusR\x0b\x63\x61\x63heStatusB\x0b\n\t_end_time\"\xb3\x01\n\x06\x41\x63tion\x12\x31\n\x02id\x18\x01 \x01(\x0b\x32!.cloudidl.common.ActionIdentifierR\x02id\x12=\n\x08metadata\x18\x02 \x01(\x0b\x32!.cloudidl.workflow.ActionMetadataR\x08metadata\x12\x37\n\x06status\x18\x03 \x01(\x0b\x32\x1f.cloudidl.workflow.ActionStatusR\x06status\"\x9e\x02\n\x0e\x45nrichedAction\x12\x31\n\x06\x61\x63tion\x18\x01 \x01(\x0b\x32\x19.cloudidl.workflow.ActionR\x06\x61\x63tion\x12!\n\x0cmeets_filter\x18\x02 \x01(\x08R\x0bmeetsFilter\x12n\n\x15\x63hildren_phase_counts\x18\x03 \x03(\x0b\x32:.cloudidl.workflow.EnrichedAction.ChildrenPhaseCountsEntryR\x13\x63hildrenPhaseCounts\x1a\x46\n\x18\x43hildrenPhaseCountsEntry\x12\x10\n\x03key\x18\x01 \x01(\x05R\x03key\x12\x14\n\x05value\x18\x02 \x01(\x05R\x05value:\x02\x38\x01\"\x9a\x01\n\tErrorInfo\x12\x18\n\x07message\x18\x01 \x01(\tR\x07message\x12\x35\n\x04kind\x18\x02 \x01(\x0e\x32!.cloudidl.workflow.ErrorInfo.KindR\x04kind\"<\n\x04Kind\x12\x14\n\x10KIND_UNSPECIFIED\x10\x00\x12\r\n\tKIND_USER\x10\x01\x12\x0f\n\x0bKIND_SYSTEM\x10\x02\"e\n\tAbortInfo\x12\x16\n\x06reason\x18\x01 \x01(\tR\x06reason\x12@\n\naborted_by\x18\x02 \x01(\x0b\x32!.cloudidl.common.EnrichedIdentityR\tabortedBy\"\xf1\x03\n\rActionDetails\x12\x31\n\x02id\x18\x01 \x01(\x0b\x32!.cloudidl.common.ActionIdentifierR\x02id\x12=\n\x08metadata\x18\x02 \x01(\x0b\x32!.cloudidl.workflow.ActionMetadataR\x08metadata\x12\x37\n\x06status\x18\x03 \x01(\x0b\x32\x1f.cloudidl.workflow.ActionStatusR\x06status\x12=\n\nerror_info\x18\x04 \x01(\x0b\x32\x1c.cloudidl.workflow.ErrorInfoH\x00R\terrorInfo\x12=\n\nabort_info\x18\x05 \x01(\x0b\x32\x1c.cloudidl.workflow.AbortInfoH\x00R\tabortInfo\x12\x31\n\x04task\x18\x06 \x01(\x0b\x32\x1b.cloudidl.workflow.TaskSpecH\x01R\x04task\x12\x34\n\x05trace\x18\x08 \x01(\x0b\x32\x1c.cloudidl.workflow.TraceSpecH\x01R\x05trace\x12<\n\x08\x61ttempts\x18\x07 \x03(\x0b\x32 .cloudidl.workflow.ActionAttemptR\x08\x61ttemptsB\x08\n\x06resultB\x06\n\x04spec\"\x85\x06\n\rActionAttempt\x12.\n\x05phase\x18\x01 \x01(\x0e\x32\x18.cloudidl.workflow.PhaseR\x05phase\x12\x39\n\nstart_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tstartTime\x12:\n\x08\x65nd_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00R\x07\x65ndTime\x88\x01\x01\x12@\n\nerror_info\x18\x04 \x01(\x0b\x32\x1c.cloudidl.workflow.ErrorInfoH\x01R\terrorInfo\x88\x01\x01\x12!\n\x07\x61ttempt\x18\x05 \x01(\rB\x07\xfa\x42\x04*\x02 \x00R\x07\x61ttempt\x12\x31\n\x08log_info\x18\x06 \x03(\x0b\x32\x16.flyteidl.core.TaskLogR\x07logInfo\x12=\n\x07outputs\x18\x07 \x01(\x0b\x32#.cloudidl.workflow.OutputReferencesR\x07outputs\x12%\n\x0elogs_available\x18\x08 \x01(\x08R\rlogsAvailable\x12\x44\n\x0c\x63\x61\x63he_status\x18\t \x01(\x0e\x32!.flyteidl.core.CatalogCacheStatusR\x0b\x63\x61\x63heStatus\x12\x46\n\x0e\x63luster_events\x18\n \x03(\x0b\x32\x1f.cloudidl.workflow.ClusterEventR\rclusterEvents\x12O\n\x11phase_transitions\x18\x0b \x03(\x0b\x32\".cloudidl.workflow.PhaseTransitionR\x10phaseTransitions\x12\x18\n\x07\x63luster\x18\x0c \x01(\tR\x07\x63luster\x12:\n\x0blog_context\x18\r \x01(\x0b\x32\x19.flyteidl.core.LogContextR\nlogContextB\x0b\n\t_end_timeB\r\n\x0b_error_info\"e\n\x0c\x43lusterEvent\x12;\n\x0boccurred_at\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\x12\x18\n\x07message\x18\x02 \x01(\tR\x07message\"\xc5\x01\n\x0fPhaseTransition\x12.\n\x05phase\x18\x01 \x01(\x0e\x32\x18.cloudidl.workflow.PhaseR\x05phase\x12\x39\n\nstart_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tstartTime\x12:\n\x08\x65nd_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00R\x07\x65ndTime\x88\x01\x01\x42\x0b\n\t_end_time\"\xea\x06\n\x0b\x41\x63tionEvent\x12;\n\x02id\x18\x01 \x01(\x0b\x32!.cloudidl.common.ActionIdentifierB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x02id\x12!\n\x07\x61ttempt\x18\x02 \x01(\rB\x07\xfa\x42\x04*\x02 \x00R\x07\x61ttempt\x12.\n\x05phase\x18\x03 \x01(\x0e\x32\x18.cloudidl.workflow.PhaseR\x05phase\x12\x18\n\x07version\x18\x04 \x01(\rR\x07version\x12=\n\nstart_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x02\x18\x01R\tstartTime\x12=\n\x0cupdated_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x0bupdatedTime\x12>\n\x08\x65nd_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x02\x18\x01H\x00R\x07\x65ndTime\x88\x01\x01\x12@\n\nerror_info\x18\x08 \x01(\x0b\x32\x1c.cloudidl.workflow.ErrorInfoH\x01R\terrorInfo\x88\x01\x01\x12\x31\n\x08log_info\x18\t \x03(\x0b\x32\x16.flyteidl.core.TaskLogR\x07logInfo\x12:\n\x0blog_context\x18\n \x01(\x0b\x32\x19.flyteidl.core.LogContextR\nlogContext\x12\x18\n\x07\x63luster\x18\x0b \x01(\tR\x07\x63luster\x12=\n\x07outputs\x18\x0c \x01(\x0b\x32#.cloudidl.workflow.OutputReferencesR\x07outputs\x12\x44\n\x0c\x63\x61\x63he_status\x18\r \x01(\x0e\x32!.flyteidl.core.CatalogCacheStatusR\x0b\x63\x61\x63heStatus\x12\x46\n\x0e\x63luster_events\x18\x0e \x03(\x0b\x32\x1f.cloudidl.workflow.ClusterEventR\rclusterEvents\x12?\n\rreported_time\x18\x0f \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x0creportedTimeB\x0b\n\t_end_timeB\r\n\x0b_error_info\"P\n\x0cNamedLiteral\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x16.flyteidl.core.LiteralR\x05value\"P\n\x10OutputReferences\x12\x1d\n\noutput_uri\x18\x01 \x01(\tR\toutputUri\x12\x1d\n\nreport_uri\x18\x02 \x01(\tR\treportUri\"|\n\x06Inputs\x12;\n\x08literals\x18\x01 \x03(\x0b\x32\x1f.cloudidl.workflow.NamedLiteralR\x08literals\x12\x35\n\x07\x63ontext\x18\x02 \x03(\x0b\x32\x1b.flyteidl.core.KeyValuePairR\x07\x63ontext\"F\n\x07Outputs\x12;\n\x08literals\x18\x01 \x03(\x0b\x32\x1f.cloudidl.workflow.NamedLiteralR\x08literals*\xcb\x01\n\x05Phase\x12\x15\n\x11PHASE_UNSPECIFIED\x10\x00\x12\x10\n\x0cPHASE_QUEUED\x10\x01\x12\x1f\n\x1bPHASE_WAITING_FOR_RESOURCES\x10\x02\x12\x16\n\x12PHASE_INITIALIZING\x10\x03\x12\x11\n\rPHASE_RUNNING\x10\x04\x12\x13\n\x0fPHASE_SUCCEEDED\x10\x05\x12\x10\n\x0cPHASE_FAILED\x10\x06\x12\x11\n\rPHASE_ABORTED\x10\x07\x12\x13\n\x0fPHASE_TIMED_OUT\x10\x08*q\n\nActionType\x12\x1b\n\x17\x41\x43TION_TYPE_UNSPECIFIED\x10\x00\x12\x14\n\x10\x41\x43TION_TYPE_TASK\x10\x01\x12\x15\n\x11\x41\x43TION_TYPE_TRACE\x10\x02\x12\x19\n\x15\x41\x43TION_TYPE_CONDITION\x10\x03\x42\xbf\x01\n\x15\x63om.cloudidl.workflowB\x12RunDefinitionProtoH\x02P\x01Z+github.com/unionai/cloud/gen/pb-go/workflow\xa2\x02\x03\x43WX\xaa\x02\x11\x43loudidl.Workflow\xca\x02\x11\x43loudidl\\Workflow\xe2\x02\x1d\x43loudidl\\Workflow\\GPBMetadata\xea\x02\x12\x43loudidl::Workflowb\x06proto3')
|
|
26
26
|
|
|
27
27
|
_globals = globals()
|
|
28
28
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
@@ -60,8 +60,10 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
60
60
|
_ACTIONEVENT.fields_by_name['start_time']._serialized_options = b'\030\001'
|
|
61
61
|
_ACTIONEVENT.fields_by_name['end_time']._options = None
|
|
62
62
|
_ACTIONEVENT.fields_by_name['end_time']._serialized_options = b'\030\001'
|
|
63
|
-
_globals['_PHASE']._serialized_start=
|
|
64
|
-
_globals['_PHASE']._serialized_end=
|
|
63
|
+
_globals['_PHASE']._serialized_start=5770
|
|
64
|
+
_globals['_PHASE']._serialized_end=5973
|
|
65
|
+
_globals['_ACTIONTYPE']._serialized_start=5975
|
|
66
|
+
_globals['_ACTIONTYPE']._serialized_end=6088
|
|
65
67
|
_globals['_LABELS']._serialized_start=313
|
|
66
68
|
_globals['_LABELS']._serialized_end=443
|
|
67
69
|
_globals['_LABELS_VALUESENTRY']._serialized_start=386
|
|
@@ -85,37 +87,37 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
85
87
|
_globals['_CONDITIONACTIONMETADATA']._serialized_start=1319
|
|
86
88
|
_globals['_CONDITIONACTIONMETADATA']._serialized_end=1478
|
|
87
89
|
_globals['_ACTIONMETADATA']._serialized_start=1481
|
|
88
|
-
_globals['_ACTIONMETADATA']._serialized_end=
|
|
89
|
-
_globals['_ACTIONSTATUS']._serialized_start=
|
|
90
|
-
_globals['_ACTIONSTATUS']._serialized_end=
|
|
91
|
-
_globals['_ACTION']._serialized_start=
|
|
92
|
-
_globals['_ACTION']._serialized_end=
|
|
93
|
-
_globals['_ENRICHEDACTION']._serialized_start=
|
|
94
|
-
_globals['_ENRICHEDACTION']._serialized_end=
|
|
95
|
-
_globals['_ENRICHEDACTION_CHILDRENPHASECOUNTSENTRY']._serialized_start=
|
|
96
|
-
_globals['_ENRICHEDACTION_CHILDRENPHASECOUNTSENTRY']._serialized_end=
|
|
97
|
-
_globals['_ERRORINFO']._serialized_start=
|
|
98
|
-
_globals['_ERRORINFO']._serialized_end=
|
|
99
|
-
_globals['_ERRORINFO_KIND']._serialized_start=
|
|
100
|
-
_globals['_ERRORINFO_KIND']._serialized_end=
|
|
101
|
-
_globals['_ABORTINFO']._serialized_start=
|
|
102
|
-
_globals['_ABORTINFO']._serialized_end=
|
|
103
|
-
_globals['_ACTIONDETAILS']._serialized_start=
|
|
104
|
-
_globals['_ACTIONDETAILS']._serialized_end=
|
|
105
|
-
_globals['_ACTIONATTEMPT']._serialized_start=
|
|
106
|
-
_globals['_ACTIONATTEMPT']._serialized_end=
|
|
107
|
-
_globals['_CLUSTEREVENT']._serialized_start=
|
|
108
|
-
_globals['_CLUSTEREVENT']._serialized_end=
|
|
109
|
-
_globals['_PHASETRANSITION']._serialized_start=
|
|
110
|
-
_globals['_PHASETRANSITION']._serialized_end=
|
|
111
|
-
_globals['_ACTIONEVENT']._serialized_start=
|
|
112
|
-
_globals['_ACTIONEVENT']._serialized_end=
|
|
113
|
-
_globals['_NAMEDLITERAL']._serialized_start=
|
|
114
|
-
_globals['_NAMEDLITERAL']._serialized_end=
|
|
115
|
-
_globals['_OUTPUTREFERENCES']._serialized_start=
|
|
116
|
-
_globals['_OUTPUTREFERENCES']._serialized_end=
|
|
117
|
-
_globals['_INPUTS']._serialized_start=
|
|
118
|
-
_globals['_INPUTS']._serialized_end=
|
|
119
|
-
_globals['_OUTPUTS']._serialized_start=
|
|
120
|
-
_globals['_OUTPUTS']._serialized_end=
|
|
90
|
+
_globals['_ACTIONMETADATA']._serialized_end=1914
|
|
91
|
+
_globals['_ACTIONSTATUS']._serialized_start=1917
|
|
92
|
+
_globals['_ACTIONSTATUS']._serialized_end=2218
|
|
93
|
+
_globals['_ACTION']._serialized_start=2221
|
|
94
|
+
_globals['_ACTION']._serialized_end=2400
|
|
95
|
+
_globals['_ENRICHEDACTION']._serialized_start=2403
|
|
96
|
+
_globals['_ENRICHEDACTION']._serialized_end=2689
|
|
97
|
+
_globals['_ENRICHEDACTION_CHILDRENPHASECOUNTSENTRY']._serialized_start=2619
|
|
98
|
+
_globals['_ENRICHEDACTION_CHILDRENPHASECOUNTSENTRY']._serialized_end=2689
|
|
99
|
+
_globals['_ERRORINFO']._serialized_start=2692
|
|
100
|
+
_globals['_ERRORINFO']._serialized_end=2846
|
|
101
|
+
_globals['_ERRORINFO_KIND']._serialized_start=2786
|
|
102
|
+
_globals['_ERRORINFO_KIND']._serialized_end=2846
|
|
103
|
+
_globals['_ABORTINFO']._serialized_start=2848
|
|
104
|
+
_globals['_ABORTINFO']._serialized_end=2949
|
|
105
|
+
_globals['_ACTIONDETAILS']._serialized_start=2952
|
|
106
|
+
_globals['_ACTIONDETAILS']._serialized_end=3449
|
|
107
|
+
_globals['_ACTIONATTEMPT']._serialized_start=3452
|
|
108
|
+
_globals['_ACTIONATTEMPT']._serialized_end=4225
|
|
109
|
+
_globals['_CLUSTEREVENT']._serialized_start=4227
|
|
110
|
+
_globals['_CLUSTEREVENT']._serialized_end=4328
|
|
111
|
+
_globals['_PHASETRANSITION']._serialized_start=4331
|
|
112
|
+
_globals['_PHASETRANSITION']._serialized_end=4528
|
|
113
|
+
_globals['_ACTIONEVENT']._serialized_start=4531
|
|
114
|
+
_globals['_ACTIONEVENT']._serialized_end=5405
|
|
115
|
+
_globals['_NAMEDLITERAL']._serialized_start=5407
|
|
116
|
+
_globals['_NAMEDLITERAL']._serialized_end=5487
|
|
117
|
+
_globals['_OUTPUTREFERENCES']._serialized_start=5489
|
|
118
|
+
_globals['_OUTPUTREFERENCES']._serialized_end=5569
|
|
119
|
+
_globals['_INPUTS']._serialized_start=5571
|
|
120
|
+
_globals['_INPUTS']._serialized_end=5695
|
|
121
|
+
_globals['_OUTPUTS']._serialized_start=5697
|
|
122
|
+
_globals['_OUTPUTS']._serialized_end=5767
|
|
121
123
|
# @@protoc_insertion_point(module_scope)
|
|
@@ -26,6 +26,13 @@ class Phase(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
|
26
26
|
PHASE_FAILED: _ClassVar[Phase]
|
|
27
27
|
PHASE_ABORTED: _ClassVar[Phase]
|
|
28
28
|
PHASE_TIMED_OUT: _ClassVar[Phase]
|
|
29
|
+
|
|
30
|
+
class ActionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
31
|
+
__slots__ = []
|
|
32
|
+
ACTION_TYPE_UNSPECIFIED: _ClassVar[ActionType]
|
|
33
|
+
ACTION_TYPE_TASK: _ClassVar[ActionType]
|
|
34
|
+
ACTION_TYPE_TRACE: _ClassVar[ActionType]
|
|
35
|
+
ACTION_TYPE_CONDITION: _ClassVar[ActionType]
|
|
29
36
|
PHASE_UNSPECIFIED: Phase
|
|
30
37
|
PHASE_QUEUED: Phase
|
|
31
38
|
PHASE_WAITING_FOR_RESOURCES: Phase
|
|
@@ -35,6 +42,10 @@ PHASE_SUCCEEDED: Phase
|
|
|
35
42
|
PHASE_FAILED: Phase
|
|
36
43
|
PHASE_ABORTED: Phase
|
|
37
44
|
PHASE_TIMED_OUT: Phase
|
|
45
|
+
ACTION_TYPE_UNSPECIFIED: ActionType
|
|
46
|
+
ACTION_TYPE_TASK: ActionType
|
|
47
|
+
ACTION_TYPE_TRACE: ActionType
|
|
48
|
+
ACTION_TYPE_CONDITION: ActionType
|
|
38
49
|
|
|
39
50
|
class Labels(_message.Message):
|
|
40
51
|
__slots__ = ["values"]
|
|
@@ -126,20 +137,22 @@ class ConditionActionMetadata(_message.Message):
|
|
|
126
137
|
def __init__(self, name: _Optional[str] = ..., run_id: _Optional[str] = ..., action_id: _Optional[str] = ..., **kwargs) -> None: ...
|
|
127
138
|
|
|
128
139
|
class ActionMetadata(_message.Message):
|
|
129
|
-
__slots__ = ["parent", "group", "executed_by", "task", "trace", "condition"]
|
|
140
|
+
__slots__ = ["parent", "group", "executed_by", "task", "trace", "condition", "action_type"]
|
|
130
141
|
PARENT_FIELD_NUMBER: _ClassVar[int]
|
|
131
142
|
GROUP_FIELD_NUMBER: _ClassVar[int]
|
|
132
143
|
EXECUTED_BY_FIELD_NUMBER: _ClassVar[int]
|
|
133
144
|
TASK_FIELD_NUMBER: _ClassVar[int]
|
|
134
145
|
TRACE_FIELD_NUMBER: _ClassVar[int]
|
|
135
146
|
CONDITION_FIELD_NUMBER: _ClassVar[int]
|
|
147
|
+
ACTION_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
136
148
|
parent: str
|
|
137
149
|
group: str
|
|
138
150
|
executed_by: _identity_pb2.EnrichedIdentity
|
|
139
151
|
task: TaskActionMetadata
|
|
140
152
|
trace: TraceActionMetadata
|
|
141
153
|
condition: ConditionActionMetadata
|
|
142
|
-
|
|
154
|
+
action_type: ActionType
|
|
155
|
+
def __init__(self, parent: _Optional[str] = ..., group: _Optional[str] = ..., executed_by: _Optional[_Union[_identity_pb2.EnrichedIdentity, _Mapping]] = ..., task: _Optional[_Union[TaskActionMetadata, _Mapping]] = ..., trace: _Optional[_Union[TraceActionMetadata, _Mapping]] = ..., condition: _Optional[_Union[ConditionActionMetadata, _Mapping]] = ..., action_type: _Optional[_Union[ActionType, str]] = ...) -> None: ...
|
|
143
156
|
|
|
144
157
|
class ActionStatus(_message.Message):
|
|
145
158
|
__slots__ = ["phase", "start_time", "end_time", "attempts", "cache_status"]
|
|
@@ -207,22 +220,24 @@ class AbortInfo(_message.Message):
|
|
|
207
220
|
def __init__(self, reason: _Optional[str] = ..., aborted_by: _Optional[_Union[_identity_pb2.EnrichedIdentity, _Mapping]] = ...) -> None: ...
|
|
208
221
|
|
|
209
222
|
class ActionDetails(_message.Message):
|
|
210
|
-
__slots__ = ["id", "metadata", "status", "error_info", "abort_info", "
|
|
223
|
+
__slots__ = ["id", "metadata", "status", "error_info", "abort_info", "task", "trace", "attempts"]
|
|
211
224
|
ID_FIELD_NUMBER: _ClassVar[int]
|
|
212
225
|
METADATA_FIELD_NUMBER: _ClassVar[int]
|
|
213
226
|
STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
214
227
|
ERROR_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
215
228
|
ABORT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
216
|
-
|
|
229
|
+
TASK_FIELD_NUMBER: _ClassVar[int]
|
|
230
|
+
TRACE_FIELD_NUMBER: _ClassVar[int]
|
|
217
231
|
ATTEMPTS_FIELD_NUMBER: _ClassVar[int]
|
|
218
232
|
id: _identifier_pb2.ActionIdentifier
|
|
219
233
|
metadata: ActionMetadata
|
|
220
234
|
status: ActionStatus
|
|
221
235
|
error_info: ErrorInfo
|
|
222
236
|
abort_info: AbortInfo
|
|
223
|
-
|
|
237
|
+
task: _task_definition_pb2.TaskSpec
|
|
238
|
+
trace: _task_definition_pb2.TraceSpec
|
|
224
239
|
attempts: _containers.RepeatedCompositeFieldContainer[ActionAttempt]
|
|
225
|
-
def __init__(self, id: _Optional[_Union[_identifier_pb2.ActionIdentifier, _Mapping]] = ..., metadata: _Optional[_Union[ActionMetadata, _Mapping]] = ..., status: _Optional[_Union[ActionStatus, _Mapping]] = ..., error_info: _Optional[_Union[ErrorInfo, _Mapping]] = ..., abort_info: _Optional[_Union[AbortInfo, _Mapping]] = ...,
|
|
240
|
+
def __init__(self, id: _Optional[_Union[_identifier_pb2.ActionIdentifier, _Mapping]] = ..., metadata: _Optional[_Union[ActionMetadata, _Mapping]] = ..., status: _Optional[_Union[ActionStatus, _Mapping]] = ..., error_info: _Optional[_Union[ErrorInfo, _Mapping]] = ..., abort_info: _Optional[_Union[AbortInfo, _Mapping]] = ..., task: _Optional[_Union[_task_definition_pb2.TaskSpec, _Mapping]] = ..., trace: _Optional[_Union[_task_definition_pb2.TraceSpec, _Mapping]] = ..., attempts: _Optional[_Iterable[_Union[ActionAttempt, _Mapping]]] = ...) -> None: ...
|
|
226
241
|
|
|
227
242
|
class ActionAttempt(_message.Message):
|
|
228
243
|
__slots__ = ["phase", "start_time", "end_time", "error_info", "attempt", "log_info", "outputs", "logs_available", "cache_status", "cluster_events", "phase_transitions", "cluster", "log_context"]
|
|
@@ -13,6 +13,7 @@ _sym_db = _symbol_database.Default()
|
|
|
13
13
|
|
|
14
14
|
from flyte._protos.common import identifier_pb2 as common_dot_identifier__pb2
|
|
15
15
|
from flyte._protos.common import identity_pb2 as common_dot_identity__pb2
|
|
16
|
+
from flyteidl.core import interface_pb2 as flyteidl_dot_core_dot_interface__pb2
|
|
16
17
|
from flyteidl.core import tasks_pb2 as flyteidl_dot_core_dot_tasks__pb2
|
|
17
18
|
from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
|
|
18
19
|
from flyte._protos.validate.validate import validate_pb2 as validate_dot_validate__pb2
|
|
@@ -20,7 +21,7 @@ from flyte._protos.workflow import common_pb2 as workflow_dot_common__pb2
|
|
|
20
21
|
from flyte._protos.workflow import environment_pb2 as workflow_dot_environment__pb2
|
|
21
22
|
|
|
22
23
|
|
|
23
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1eworkflow/task_definition.proto\x12\x11\x63loudidl.workflow\x1a\x17\x63ommon/identifier.proto\x1a\x15\x63ommon/identity.proto\x1a\x19\x66lyteidl/core/tasks.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x17validate/validate.proto\x1a\x15workflow/common.proto\x1a\x1aworkflow/environment.proto\"\x8f\x01\n\x08TaskName\x12\x1b\n\x03org\x18\x01 \x01(\tB\t\xfa\x42\x06r\x04\x10\x01\x18?R\x03org\x12#\n\x07project\x18\x02 \x01(\tB\t\xfa\x42\x06r\x04\x10\x01\x18?R\x07project\x12!\n\x06\x64omain\x18\x03 \x01(\tB\t\xfa\x42\x06r\x04\x10\x01\x18?R\x06\x64omain\x12\x1e\n\x04name\x18\x04 \x01(\tB\n\xfa\x42\x07r\x05\x10\x01\x18\xff\x01R\x04name\"\xba\x01\n\x0eTaskIdentifier\x12\x1b\n\x03org\x18\x01 \x01(\tB\t\xfa\x42\x06r\x04\x10\x01\x18?R\x03org\x12#\n\x07project\x18\x02 \x01(\tB\t\xfa\x42\x06r\x04\x10\x01\x18?R\x07project\x12!\n\x06\x64omain\x18\x03 \x01(\tB\t\xfa\x42\x06r\x04\x10\x01\x18?R\x06\x64omain\x12\x1e\n\x04name\x18\x04 \x01(\tB\n\xfa\x42\x07r\x05\x10\x01\x18\xff\x01R\x04name\x12#\n\x07version\x18\x05 \x01(\tB\t\xfa\x42\x06r\x04\x10\x01\x18?R\x07version\"\xed\x01\n\x0cTaskMetadata\x12L\n\x0b\x64\x65ployed_by\x18\x01 \x01(\x0b\x32!.cloudidl.common.EnrichedIdentityB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\ndeployedBy\x12\x1d\n\nshort_name\x18\x02 \x01(\tR\tshortName\x12\x45\n\x0b\x64\x65ployed_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x08\xfa\x42\x05\xb2\x01\x02\x08\x01R\ndeployedAt\x12)\n\x10\x65nvironment_name\x18\x04 \x01(\tR\x0f\x65nvironmentName\"\x93\x01\n\x04Task\x12\x44\n\x07task_id\x18\x01 \x01(\x0b\x32!.cloudidl.workflow.TaskIdentifierB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x06taskId\x12\x45\n\x08metadata\x18\x02 \x01(\x0b\x32\x1f.cloudidl.workflow.TaskMetadataB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x08metadata\"\x8a\x02\n\x08TaskSpec\x12J\n\rtask_template\x18\x01 \x01(\x0b\x32\x1b.flyteidl.core.TaskTemplateB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x0ctaskTemplate\x12H\n\x0e\x64\x65\x66\x61ult_inputs\x18\x02 \x03(\x0b\x32!.cloudidl.workflow.NamedParameterR\rdefaultInputs\x12&\n\nshort_name\x18\x03 \x01(\tB\x07\xfa\x42\x04r\x02\x18?R\tshortName\x12@\n\x0b\x65nvironment\x18\x04 \x01(\x0b\x32\x1e.cloudidl.workflow.EnvironmentR\x0b\x65nvironment\"\xd5\x01\n\x0bTaskDetails\x12\x44\n\x07task_id\x18\x01 \x01(\x0b\x32!.cloudidl.workflow.TaskIdentifierB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x06taskId\x12\x45\n\x08metadata\x18\x02 \x01(\x0b\x32\x1f.cloudidl.workflow.TaskMetadataB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x08metadata\x12\x39\n\x04spec\x18\x03 \x01(\x0b\x32\x1b.cloudidl.workflow.TaskSpecB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x04specB\xc0\x01\n\x15\x63om.cloudidl.workflowB\x13TaskDefinitionProtoH\x02P\x01Z+github.com/unionai/cloud/gen/pb-go/workflow\xa2\x02\x03\x43WX\xaa\x02\x11\x43loudidl.Workflow\xca\x02\x11\x43loudidl\\Workflow\xe2\x02\x1d\x43loudidl\\Workflow\\GPBMetadata\xea\x02\x12\x43loudidl::Workflowb\x06proto3')
|
|
24
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1eworkflow/task_definition.proto\x12\x11\x63loudidl.workflow\x1a\x17\x63ommon/identifier.proto\x1a\x15\x63ommon/identity.proto\x1a\x1d\x66lyteidl/core/interface.proto\x1a\x19\x66lyteidl/core/tasks.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x17validate/validate.proto\x1a\x15workflow/common.proto\x1a\x1aworkflow/environment.proto\"\x8f\x01\n\x08TaskName\x12\x1b\n\x03org\x18\x01 \x01(\tB\t\xfa\x42\x06r\x04\x10\x01\x18?R\x03org\x12#\n\x07project\x18\x02 \x01(\tB\t\xfa\x42\x06r\x04\x10\x01\x18?R\x07project\x12!\n\x06\x64omain\x18\x03 \x01(\tB\t\xfa\x42\x06r\x04\x10\x01\x18?R\x06\x64omain\x12\x1e\n\x04name\x18\x04 \x01(\tB\n\xfa\x42\x07r\x05\x10\x01\x18\xff\x01R\x04name\"\xba\x01\n\x0eTaskIdentifier\x12\x1b\n\x03org\x18\x01 \x01(\tB\t\xfa\x42\x06r\x04\x10\x01\x18?R\x03org\x12#\n\x07project\x18\x02 \x01(\tB\t\xfa\x42\x06r\x04\x10\x01\x18?R\x07project\x12!\n\x06\x64omain\x18\x03 \x01(\tB\t\xfa\x42\x06r\x04\x10\x01\x18?R\x06\x64omain\x12\x1e\n\x04name\x18\x04 \x01(\tB\n\xfa\x42\x07r\x05\x10\x01\x18\xff\x01R\x04name\x12#\n\x07version\x18\x05 \x01(\tB\t\xfa\x42\x06r\x04\x10\x01\x18?R\x07version\"\xed\x01\n\x0cTaskMetadata\x12L\n\x0b\x64\x65ployed_by\x18\x01 \x01(\x0b\x32!.cloudidl.common.EnrichedIdentityB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\ndeployedBy\x12\x1d\n\nshort_name\x18\x02 \x01(\tR\tshortName\x12\x45\n\x0b\x64\x65ployed_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x08\xfa\x42\x05\xb2\x01\x02\x08\x01R\ndeployedAt\x12)\n\x10\x65nvironment_name\x18\x04 \x01(\tR\x0f\x65nvironmentName\"\x93\x01\n\x04Task\x12\x44\n\x07task_id\x18\x01 \x01(\x0b\x32!.cloudidl.workflow.TaskIdentifierB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x06taskId\x12\x45\n\x08metadata\x18\x02 \x01(\x0b\x32\x1f.cloudidl.workflow.TaskMetadataB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x08metadata\"\x8a\x02\n\x08TaskSpec\x12J\n\rtask_template\x18\x01 \x01(\x0b\x32\x1b.flyteidl.core.TaskTemplateB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x0ctaskTemplate\x12H\n\x0e\x64\x65\x66\x61ult_inputs\x18\x02 \x03(\x0b\x32!.cloudidl.workflow.NamedParameterR\rdefaultInputs\x12&\n\nshort_name\x18\x03 \x01(\tB\x07\xfa\x42\x04r\x02\x18?R\tshortName\x12@\n\x0b\x65nvironment\x18\x04 \x01(\x0b\x32\x1e.cloudidl.workflow.EnvironmentR\x0b\x65nvironment\"H\n\tTraceSpec\x12;\n\tinterface\x18\x01 \x01(\x0b\x32\x1d.flyteidl.core.TypedInterfaceR\tinterface\"\xd5\x01\n\x0bTaskDetails\x12\x44\n\x07task_id\x18\x01 \x01(\x0b\x32!.cloudidl.workflow.TaskIdentifierB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x06taskId\x12\x45\n\x08metadata\x18\x02 \x01(\x0b\x32\x1f.cloudidl.workflow.TaskMetadataB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x08metadata\x12\x39\n\x04spec\x18\x03 \x01(\x0b\x32\x1b.cloudidl.workflow.TaskSpecB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x04specB\xc0\x01\n\x15\x63om.cloudidl.workflowB\x13TaskDefinitionProtoH\x02P\x01Z+github.com/unionai/cloud/gen/pb-go/workflow\xa2\x02\x03\x43WX\xaa\x02\x11\x43loudidl.Workflow\xca\x02\x11\x43loudidl\\Workflow\xe2\x02\x1d\x43loudidl\\Workflow\\GPBMetadata\xea\x02\x12\x43loudidl::Workflowb\x06proto3')
|
|
24
25
|
|
|
25
26
|
_globals = globals()
|
|
26
27
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
@@ -64,16 +65,18 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
64
65
|
_TASKDETAILS.fields_by_name['metadata']._serialized_options = b'\372B\005\212\001\002\020\001'
|
|
65
66
|
_TASKDETAILS.fields_by_name['spec']._options = None
|
|
66
67
|
_TASKDETAILS.fields_by_name['spec']._serialized_options = b'\372B\005\212\001\002\020\001'
|
|
67
|
-
_globals['_TASKNAME']._serialized_start=
|
|
68
|
-
_globals['_TASKNAME']._serialized_end=
|
|
69
|
-
_globals['_TASKIDENTIFIER']._serialized_start=
|
|
70
|
-
_globals['_TASKIDENTIFIER']._serialized_end=
|
|
71
|
-
_globals['_TASKMETADATA']._serialized_start=
|
|
72
|
-
_globals['_TASKMETADATA']._serialized_end=
|
|
73
|
-
_globals['_TASK']._serialized_start=
|
|
74
|
-
_globals['_TASK']._serialized_end=
|
|
75
|
-
_globals['_TASKSPEC']._serialized_start=
|
|
76
|
-
_globals['_TASKSPEC']._serialized_end=
|
|
77
|
-
_globals['
|
|
78
|
-
_globals['
|
|
68
|
+
_globals['_TASKNAME']._serialized_start=269
|
|
69
|
+
_globals['_TASKNAME']._serialized_end=412
|
|
70
|
+
_globals['_TASKIDENTIFIER']._serialized_start=415
|
|
71
|
+
_globals['_TASKIDENTIFIER']._serialized_end=601
|
|
72
|
+
_globals['_TASKMETADATA']._serialized_start=604
|
|
73
|
+
_globals['_TASKMETADATA']._serialized_end=841
|
|
74
|
+
_globals['_TASK']._serialized_start=844
|
|
75
|
+
_globals['_TASK']._serialized_end=991
|
|
76
|
+
_globals['_TASKSPEC']._serialized_start=994
|
|
77
|
+
_globals['_TASKSPEC']._serialized_end=1260
|
|
78
|
+
_globals['_TRACESPEC']._serialized_start=1262
|
|
79
|
+
_globals['_TRACESPEC']._serialized_end=1334
|
|
80
|
+
_globals['_TASKDETAILS']._serialized_start=1337
|
|
81
|
+
_globals['_TASKDETAILS']._serialized_end=1550
|
|
79
82
|
# @@protoc_insertion_point(module_scope)
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from flyte._protos.common import identifier_pb2 as _identifier_pb2
|
|
2
2
|
from flyte._protos.common import identity_pb2 as _identity_pb2
|
|
3
|
+
from flyteidl.core import interface_pb2 as _interface_pb2
|
|
3
4
|
from flyteidl.core import tasks_pb2 as _tasks_pb2
|
|
4
5
|
from google.protobuf import timestamp_pb2 as _timestamp_pb2
|
|
5
6
|
from flyte._protos.validate.validate import validate_pb2 as _validate_pb2
|
|
@@ -70,6 +71,12 @@ class TaskSpec(_message.Message):
|
|
|
70
71
|
environment: _environment_pb2.Environment
|
|
71
72
|
def __init__(self, task_template: _Optional[_Union[_tasks_pb2.TaskTemplate, _Mapping]] = ..., default_inputs: _Optional[_Iterable[_Union[_common_pb2.NamedParameter, _Mapping]]] = ..., short_name: _Optional[str] = ..., environment: _Optional[_Union[_environment_pb2.Environment, _Mapping]] = ...) -> None: ...
|
|
72
73
|
|
|
74
|
+
class TraceSpec(_message.Message):
|
|
75
|
+
__slots__ = ["interface"]
|
|
76
|
+
INTERFACE_FIELD_NUMBER: _ClassVar[int]
|
|
77
|
+
interface: _interface_pb2.TypedInterface
|
|
78
|
+
def __init__(self, interface: _Optional[_Union[_interface_pb2.TypedInterface, _Mapping]] = ...) -> None: ...
|
|
79
|
+
|
|
73
80
|
class TaskDetails(_message.Message):
|
|
74
81
|
__slots__ = ["task_id", "metadata", "spec"]
|
|
75
82
|
TASK_ID_FIELD_NUMBER: _ClassVar[int]
|
flyte/_version.py
CHANGED
|
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
|
28
28
|
commit_id: COMMIT_ID
|
|
29
29
|
__commit_id__: COMMIT_ID
|
|
30
30
|
|
|
31
|
-
__version__ = version = '2.0.
|
|
32
|
-
__version_tuple__ = version_tuple = (2, 0, 0, '
|
|
31
|
+
__version__ = version = '2.0.0b15'
|
|
32
|
+
__version_tuple__ = version_tuple = (2, 0, 0, 'b15')
|
|
33
33
|
|
|
34
|
-
__commit_id__ = commit_id = '
|
|
34
|
+
__commit_id__ = commit_id = 'gaa61639b5'
|
flyte/remote/_action.py
CHANGED
|
@@ -627,8 +627,11 @@ class ActionDetails(ToJSONMixin):
|
|
|
627
627
|
)
|
|
628
628
|
)
|
|
629
629
|
native_iface = None
|
|
630
|
-
if self.pb2.
|
|
631
|
-
iface = self.pb2.
|
|
630
|
+
if self.pb2.HasField('task'):
|
|
631
|
+
iface = self.pb2.task.task_template.interface
|
|
632
|
+
native_iface = types.guess_interface(iface)
|
|
633
|
+
elif self.pb2.HasField('trace'):
|
|
634
|
+
iface = self.pb2.trace.interface
|
|
632
635
|
native_iface = types.guess_interface(iface)
|
|
633
636
|
|
|
634
637
|
if resp.inputs:
|
|
@@ -25,7 +25,7 @@ flyte/_task_plugins.py,sha256=9MH3nFPOH_e8_92BT4sFk4oyAnj6GJFvaPYWaraX7yE,1037
|
|
|
25
25
|
flyte/_timeout.py,sha256=zx5sFcbYmjJAJbZWSGzzX-BpC9HC7Jfs35T7vVhKwkk,1571
|
|
26
26
|
flyte/_tools.py,sha256=lB3OiJSAhxzSMCYjLUF6nZjlFsmNpaRXtr3_Fefcxbg,747
|
|
27
27
|
flyte/_trace.py,sha256=SSE1nzUgmVTS2xFNtchEOjEjlRavMOIInasXzY8i9lU,4911
|
|
28
|
-
flyte/_version.py,sha256=
|
|
28
|
+
flyte/_version.py,sha256=5Om5qxuzafY_en185yCfboJMSTWksWKO340DB0UHX5o,722
|
|
29
29
|
flyte/errors.py,sha256=z28rhbNmJF5Ie7quQWtoSL4K5p_tC3QjZDIZTupNQFw,6395
|
|
30
30
|
flyte/extend.py,sha256=GB4ZedGzKa30vYWRVPOdxEeK62xnUVFY4z2tD6H9eEw,376
|
|
31
31
|
flyte/models.py,sha256=MSXGZjjrozofCIvHowC88WIOmCS6u_rXHxB2nhhzDQA,15907
|
|
@@ -51,9 +51,9 @@ flyte/_internal/controllers/__init__.py,sha256=TVAc4ydsldcIFmN3PW9-IX5UkKeD8oOmu
|
|
|
51
51
|
flyte/_internal/controllers/_local_controller.py,sha256=__-eEira0k18DsBu1LBXeEjhFGFcp1Uai9K0YEBbwKM,7300
|
|
52
52
|
flyte/_internal/controllers/_trace.py,sha256=ywFg_M2nGrCKYLbh4iVdsVlRtPT1K2S-XZMvDJU8AKU,1499
|
|
53
53
|
flyte/_internal/controllers/remote/__init__.py,sha256=9_azH1eHLqY6VULpDugXi7Kf1kK1ODqEnsQ_3wM6IqU,1919
|
|
54
|
-
flyte/_internal/controllers/remote/_action.py,sha256=
|
|
54
|
+
flyte/_internal/controllers/remote/_action.py,sha256=s_NS3ES0kcs8N1FmrU_P03rz2b5djZXa5fpMKnyWxFE,7360
|
|
55
55
|
flyte/_internal/controllers/remote/_client.py,sha256=HPbzbfaWZVv5wpOvKNtFXR6COiZDwd1cUJQqi60A7oU,1421
|
|
56
|
-
flyte/_internal/controllers/remote/_controller.py,sha256=
|
|
56
|
+
flyte/_internal/controllers/remote/_controller.py,sha256=la0HzPOVF4BcYsUt9wxyDglCECbYEipHoGG8AuLNBos,25693
|
|
57
57
|
flyte/_internal/controllers/remote/_core.py,sha256=R-gm0tFzsdvyCbrPs0zikXCnzyaTeCQ9qz6iE05nBls,19043
|
|
58
58
|
flyte/_internal/controllers/remote/_informer.py,sha256=w4p29_dzS_ns762eNBljvnbJLgCm36d1Ogo2ZkgV1yg,14418
|
|
59
59
|
flyte/_internal/controllers/remote/_service_protocol.py,sha256=B9qbIg6DiGeac-iSccLmX_AL2xUgX4ezNUOiAbSy4V0,1357
|
|
@@ -130,11 +130,11 @@ flyte/_protos/workflow/environment_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDC
|
|
|
130
130
|
flyte/_protos/workflow/node_execution_service_pb2.py,sha256=IOLg3tNikY7n00kLOVsC69yyXc5Ttnx-_-xUuc0q05Q,1654
|
|
131
131
|
flyte/_protos/workflow/node_execution_service_pb2.pyi,sha256=C7VVuw_bnxp68qemD3SLoGIL-Hmno6qkIoq3l6W2qb8,135
|
|
132
132
|
flyte/_protos/workflow/node_execution_service_pb2_grpc.py,sha256=2JJDS3Aww3FFDW-qYdTaxC75gRpsgnn4an6LPZmF9uA,947
|
|
133
|
-
flyte/_protos/workflow/queue_service_pb2.py,sha256=
|
|
134
|
-
flyte/_protos/workflow/queue_service_pb2.pyi,sha256=
|
|
133
|
+
flyte/_protos/workflow/queue_service_pb2.py,sha256=4GiAmAFRBNUYIfS4ZDMUrlCQ-0JU51_J0BWmr_8pz8A,13614
|
|
134
|
+
flyte/_protos/workflow/queue_service_pb2.pyi,sha256=G5RVZOiLLmPN1yPkNZDgDKfys9-X9AMJkLZLG8ShQJ4,9601
|
|
135
135
|
flyte/_protos/workflow/queue_service_pb2_grpc.py,sha256=6KK87jYXrmK0jacf4AKhHp21QU9JFJPOiEBjbDRkBm0,7839
|
|
136
|
-
flyte/_protos/workflow/run_definition_pb2.py,sha256=
|
|
137
|
-
flyte/_protos/workflow/run_definition_pb2.pyi,sha256=
|
|
136
|
+
flyte/_protos/workflow/run_definition_pb2.py,sha256=COzn4ylPSLJjgytT09ddmzh_t6fBXyo20k_b_AYLqRY,17113
|
|
137
|
+
flyte/_protos/workflow/run_definition_pb2.pyi,sha256=4b49IRnJgA-RWFRQiKwfdY5CB95vpXJ0k-OZdzGaXbM,18459
|
|
138
138
|
flyte/_protos/workflow/run_definition_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
139
139
|
flyte/_protos/workflow/run_logs_service_pb2.py,sha256=VXuiAXyB-R7LLHpllCSXXcDpaeUMStJNHUJOadudwfY,3333
|
|
140
140
|
flyte/_protos/workflow/run_logs_service_pb2.pyi,sha256=AeCw_SXrtbRtF-_hBBjHxF64WO2k_41xk-lG6tIXaHo,1516
|
|
@@ -145,8 +145,8 @@ flyte/_protos/workflow/run_service_pb2_grpc.py,sha256=i9X6zPqze8nfEu9VQXJ-xaCjhF
|
|
|
145
145
|
flyte/_protos/workflow/state_service_pb2.py,sha256=TlrvkZrLmCA0bm9NYPE4CETRiVM_wnTE8zh-l_klWdg,6812
|
|
146
146
|
flyte/_protos/workflow/state_service_pb2.pyi,sha256=Bq21Gr7EFCT9nFrt9p2bdU5Mq4hVNZ8SjxaSaxnor8Q,3900
|
|
147
147
|
flyte/_protos/workflow/state_service_pb2_grpc.py,sha256=nCRIosO0pGM66H-i3hP_KFQKSMCFHmnspGgyxchaxQA,5825
|
|
148
|
-
flyte/_protos/workflow/task_definition_pb2.py,sha256=
|
|
149
|
-
flyte/_protos/workflow/task_definition_pb2.pyi,sha256=
|
|
148
|
+
flyte/_protos/workflow/task_definition_pb2.py,sha256=CbF_exAOkTbg7CX_yB9IYJoq6l6jKkTuw5Z8XM87Vts,8148
|
|
149
|
+
flyte/_protos/workflow/task_definition_pb2.pyi,sha256=zxEc5LzG_NxNAiVzd-NFAI9t10RwXOOxZtDu8458hPg,4488
|
|
150
150
|
flyte/_protos/workflow/task_definition_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
151
151
|
flyte/_protos/workflow/task_service_pb2.py,sha256=7kCVgR8Is9MzlbdoGd1kVCwz1ot39r2qyY3oZzE_Xuo,5781
|
|
152
152
|
flyte/_protos/workflow/task_service_pb2.pyi,sha256=W0OZWui3TbQANi0GL7lCVmbpJKRwJ0X-8vjXj1qNP5k,3100
|
|
@@ -188,7 +188,7 @@ flyte/io/_dataframe/__init__.py,sha256=SDgNw45uf7m3cHhbUCOA3V3-5A2zSKgPcsWriRLwd
|
|
|
188
188
|
flyte/io/_dataframe/basic_dfs.py,sha256=weQ8EfzdU-LcKi8Eebq1AiATVS1fGdfcbqtCDOrVLos,7728
|
|
189
189
|
flyte/io/_dataframe/dataframe.py,sha256=uecLLjaAuLyYta2d4Tkk-DjxuHkzZjFUBbvMapPM7R8,51554
|
|
190
190
|
flyte/remote/__init__.py,sha256=y9eke9JzEJkygk8eKZjSj44fJGlyepuW4i-j6lbCAPY,617
|
|
191
|
-
flyte/remote/_action.py,sha256=
|
|
191
|
+
flyte/remote/_action.py,sha256=BT_bqNM-HP2oYSM1EoBdLArg9M8ASqwVYtmNfjt5qO4,24075
|
|
192
192
|
flyte/remote/_common.py,sha256=2XLLxWL1NjwfdPQUhOfYn3zMrg-yGNfi6NYIaqHutUA,862
|
|
193
193
|
flyte/remote/_console.py,sha256=avmELJPx8nQMAVPrHlh6jEIRPjrMwFpdZjJsWOOa9rE,660
|
|
194
194
|
flyte/remote/_data.py,sha256=zYXXlqEvPdsC44Gm7rP_hQjRgVe3EFfhZNEWKF0p4MQ,6163
|
|
@@ -235,11 +235,11 @@ flyte/types/_renderer.py,sha256=ygcCo5l60lHufyQISFddZfWwLlQ8kJAKxUT_XnR_6dY,4818
|
|
|
235
235
|
flyte/types/_string_literals.py,sha256=NlG1xV8RSA-sZ-n-IFQCAsdB6jXJOAKkHWtnopxVVDk,4231
|
|
236
236
|
flyte/types/_type_engine.py,sha256=_JMBMiwHM5qWWn2n4MVNsbadgTOuU1GJVlYvj8HcV9k,96773
|
|
237
237
|
flyte/types/_utils.py,sha256=pbts9E1_2LTdLygAY0UYTLYJ8AsN3BZyviSXvrtcutc,2626
|
|
238
|
-
flyte-2.0.
|
|
239
|
-
flyte-2.0.
|
|
240
|
-
flyte-2.0.
|
|
241
|
-
flyte-2.0.
|
|
242
|
-
flyte-2.0.
|
|
243
|
-
flyte-2.0.
|
|
244
|
-
flyte-2.0.
|
|
245
|
-
flyte-2.0.
|
|
238
|
+
flyte-2.0.0b15.data/scripts/debug.py,sha256=hnX2tlv9QbqckoT5CJ3c3apJj3tGDpsrdV7ZAsE7j34,911
|
|
239
|
+
flyte-2.0.0b15.data/scripts/runtime.py,sha256=6q6eo-ePkymafHElmkOUOLt2QZWCxLRHOk365OKzpJM,6014
|
|
240
|
+
flyte-2.0.0b15.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
241
|
+
flyte-2.0.0b15.dist-info/METADATA,sha256=F5J6yeu38zLQy0heG9_FUVh87mbCwH23a8na4uCapws,10005
|
|
242
|
+
flyte-2.0.0b15.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
243
|
+
flyte-2.0.0b15.dist-info/entry_points.txt,sha256=MIq2z5dBurdCJfpXfMKzgBv7sJOakKRYxr8G0cMiTrg,75
|
|
244
|
+
flyte-2.0.0b15.dist-info/top_level.txt,sha256=7dkyFbikvA12LEZEqawx8oDG1CMod6hTliPj7iWzgYo,6
|
|
245
|
+
flyte-2.0.0b15.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|