tracdap-runtime 0.6.2__py3-none-any.whl → 0.6.4__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.
Files changed (71) hide show
  1. tracdap/rt/_exec/actors.py +87 -10
  2. tracdap/rt/_exec/context.py +207 -100
  3. tracdap/rt/_exec/dev_mode.py +52 -20
  4. tracdap/rt/_exec/engine.py +79 -14
  5. tracdap/rt/_exec/functions.py +14 -17
  6. tracdap/rt/_exec/runtime.py +83 -40
  7. tracdap/rt/_exec/server.py +306 -29
  8. tracdap/rt/_impl/config_parser.py +219 -49
  9. tracdap/rt/_impl/data.py +70 -5
  10. tracdap/rt/_impl/grpc/codec.py +60 -5
  11. tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2.py +19 -19
  12. tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2.pyi +11 -9
  13. tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2_grpc.py +25 -25
  14. tracdap/rt/_impl/grpc/tracdap/metadata/data_pb2.py +18 -18
  15. tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.py +28 -16
  16. tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.pyi +37 -6
  17. tracdap/rt/_impl/grpc/tracdap/metadata/object_pb2.py +8 -3
  18. tracdap/rt/_impl/grpc/tracdap/metadata/object_pb2.pyi +13 -2
  19. tracdap/rt/_impl/guard_rails.py +21 -0
  20. tracdap/rt/_impl/models.py +25 -0
  21. tracdap/rt/_impl/static_api.py +43 -13
  22. tracdap/rt/_impl/type_system.py +17 -0
  23. tracdap/rt/_impl/validation.py +47 -4
  24. tracdap/rt/_plugins/config_local.py +49 -0
  25. tracdap/rt/_version.py +1 -1
  26. tracdap/rt/api/hook.py +6 -5
  27. tracdap/rt/api/model_api.py +50 -7
  28. tracdap/rt/api/static_api.py +81 -23
  29. tracdap/rt/config/__init__.py +4 -4
  30. tracdap/rt/config/common.py +25 -15
  31. tracdap/rt/config/job.py +2 -2
  32. tracdap/rt/config/platform.py +25 -35
  33. tracdap/rt/config/result.py +2 -2
  34. tracdap/rt/config/runtime.py +4 -2
  35. tracdap/rt/ext/config.py +34 -0
  36. tracdap/rt/ext/embed.py +1 -3
  37. tracdap/rt/ext/plugins.py +47 -6
  38. tracdap/rt/launch/cli.py +11 -4
  39. tracdap/rt/launch/launch.py +53 -12
  40. tracdap/rt/metadata/__init__.py +17 -17
  41. tracdap/rt/metadata/common.py +2 -2
  42. tracdap/rt/metadata/custom.py +3 -3
  43. tracdap/rt/metadata/data.py +12 -12
  44. tracdap/rt/metadata/file.py +6 -6
  45. tracdap/rt/metadata/flow.py +6 -6
  46. tracdap/rt/metadata/job.py +8 -8
  47. tracdap/rt/metadata/model.py +21 -11
  48. tracdap/rt/metadata/object.py +3 -0
  49. tracdap/rt/metadata/object_id.py +8 -8
  50. tracdap/rt/metadata/search.py +5 -5
  51. tracdap/rt/metadata/stoarge.py +6 -6
  52. tracdap/rt/metadata/tag.py +1 -1
  53. tracdap/rt/metadata/tag_update.py +1 -1
  54. tracdap/rt/metadata/type.py +4 -4
  55. {tracdap_runtime-0.6.2.dist-info → tracdap_runtime-0.6.4.dist-info}/METADATA +4 -4
  56. tracdap_runtime-0.6.4.dist-info/RECORD +112 -0
  57. {tracdap_runtime-0.6.2.dist-info → tracdap_runtime-0.6.4.dist-info}/WHEEL +1 -1
  58. tracdap/rt/_impl/grpc/tracdap/config/common_pb2.py +0 -55
  59. tracdap/rt/_impl/grpc/tracdap/config/common_pb2.pyi +0 -103
  60. tracdap/rt/_impl/grpc/tracdap/config/job_pb2.py +0 -42
  61. tracdap/rt/_impl/grpc/tracdap/config/job_pb2.pyi +0 -44
  62. tracdap/rt/_impl/grpc/tracdap/config/platform_pb2.py +0 -71
  63. tracdap/rt/_impl/grpc/tracdap/config/platform_pb2.pyi +0 -197
  64. tracdap/rt/_impl/grpc/tracdap/config/result_pb2.py +0 -37
  65. tracdap/rt/_impl/grpc/tracdap/config/result_pb2.pyi +0 -35
  66. tracdap/rt/_impl/grpc/tracdap/config/runtime_pb2.py +0 -42
  67. tracdap/rt/_impl/grpc/tracdap/config/runtime_pb2.pyi +0 -46
  68. tracdap/rt/ext/_guard.py +0 -37
  69. tracdap_runtime-0.6.2.dist-info/RECORD +0 -121
  70. {tracdap_runtime-0.6.2.dist-info → tracdap_runtime-0.6.4.dist-info}/LICENSE +0 -0
  71. {tracdap_runtime-0.6.2.dist-info → tracdap_runtime-0.6.4.dist-info}/top_level.txt +0 -0
@@ -1,197 +0,0 @@
1
- from tracdap.rt._impl.grpc.tracdap.metadata import common_pb2 as _common_pb2
2
- from tracdap.rt._impl.grpc.tracdap.config import common_pb2 as _common_pb2_1
3
- from google.protobuf.internal import containers as _containers
4
- from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
5
- from google.protobuf import descriptor as _descriptor
6
- from google.protobuf import message as _message
7
- from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
8
-
9
- DESCRIPTOR: _descriptor.FileDescriptor
10
-
11
- class RoutingProtocol(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
12
- __slots__ = ()
13
- PROTOCOL_NOT_SET: _ClassVar[RoutingProtocol]
14
- HTTP: _ClassVar[RoutingProtocol]
15
- GRPC: _ClassVar[RoutingProtocol]
16
- GRPC_WEB: _ClassVar[RoutingProtocol]
17
- REST: _ClassVar[RoutingProtocol]
18
-
19
- class DeploymentLayout(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
20
- __slots__ = ()
21
- LAYOUT_NOT_SET: _ClassVar[DeploymentLayout]
22
- SANDBOX: _ClassVar[DeploymentLayout]
23
- HOSTED: _ClassVar[DeploymentLayout]
24
- CUSTOM: _ClassVar[DeploymentLayout]
25
- PROTOCOL_NOT_SET: RoutingProtocol
26
- HTTP: RoutingProtocol
27
- GRPC: RoutingProtocol
28
- GRPC_WEB: RoutingProtocol
29
- REST: RoutingProtocol
30
- LAYOUT_NOT_SET: DeploymentLayout
31
- SANDBOX: DeploymentLayout
32
- HOSTED: DeploymentLayout
33
- CUSTOM: DeploymentLayout
34
-
35
- class PlatformConfig(_message.Message):
36
- __slots__ = ("config", "platformInfo", "authentication", "metadata", "storage", "repositories", "executor", "jobCache", "tenants", "webServer", "gateway", "services", "deployment")
37
- class ConfigEntry(_message.Message):
38
- __slots__ = ("key", "value")
39
- KEY_FIELD_NUMBER: _ClassVar[int]
40
- VALUE_FIELD_NUMBER: _ClassVar[int]
41
- key: str
42
- value: str
43
- def __init__(self, key: _Optional[str] = ..., value: _Optional[str] = ...) -> None: ...
44
- class RepositoriesEntry(_message.Message):
45
- __slots__ = ("key", "value")
46
- KEY_FIELD_NUMBER: _ClassVar[int]
47
- VALUE_FIELD_NUMBER: _ClassVar[int]
48
- key: str
49
- value: _common_pb2_1.PluginConfig
50
- def __init__(self, key: _Optional[str] = ..., value: _Optional[_Union[_common_pb2_1.PluginConfig, _Mapping]] = ...) -> None: ...
51
- class TenantsEntry(_message.Message):
52
- __slots__ = ("key", "value")
53
- KEY_FIELD_NUMBER: _ClassVar[int]
54
- VALUE_FIELD_NUMBER: _ClassVar[int]
55
- key: str
56
- value: TenantConfig
57
- def __init__(self, key: _Optional[str] = ..., value: _Optional[_Union[TenantConfig, _Mapping]] = ...) -> None: ...
58
- class ServicesEntry(_message.Message):
59
- __slots__ = ("key", "value")
60
- KEY_FIELD_NUMBER: _ClassVar[int]
61
- VALUE_FIELD_NUMBER: _ClassVar[int]
62
- key: str
63
- value: ServiceConfig
64
- def __init__(self, key: _Optional[str] = ..., value: _Optional[_Union[ServiceConfig, _Mapping]] = ...) -> None: ...
65
- CONFIG_FIELD_NUMBER: _ClassVar[int]
66
- PLATFORMINFO_FIELD_NUMBER: _ClassVar[int]
67
- AUTHENTICATION_FIELD_NUMBER: _ClassVar[int]
68
- METADATA_FIELD_NUMBER: _ClassVar[int]
69
- STORAGE_FIELD_NUMBER: _ClassVar[int]
70
- REPOSITORIES_FIELD_NUMBER: _ClassVar[int]
71
- EXECUTOR_FIELD_NUMBER: _ClassVar[int]
72
- JOBCACHE_FIELD_NUMBER: _ClassVar[int]
73
- TENANTS_FIELD_NUMBER: _ClassVar[int]
74
- WEBSERVER_FIELD_NUMBER: _ClassVar[int]
75
- GATEWAY_FIELD_NUMBER: _ClassVar[int]
76
- SERVICES_FIELD_NUMBER: _ClassVar[int]
77
- DEPLOYMENT_FIELD_NUMBER: _ClassVar[int]
78
- config: _containers.ScalarMap[str, str]
79
- platformInfo: _common_pb2_1.PlatformInfo
80
- authentication: _common_pb2_1.AuthenticationConfig
81
- metadata: MetadataConfig
82
- storage: _common_pb2_1.StorageConfig
83
- repositories: _containers.MessageMap[str, _common_pb2_1.PluginConfig]
84
- executor: _common_pb2_1.PluginConfig
85
- jobCache: _common_pb2_1.PluginConfig
86
- tenants: _containers.MessageMap[str, TenantConfig]
87
- webServer: WebServerConfig
88
- gateway: GatewayConfig
89
- services: _containers.MessageMap[str, ServiceConfig]
90
- deployment: DeploymentConfig
91
- def __init__(self, config: _Optional[_Mapping[str, str]] = ..., platformInfo: _Optional[_Union[_common_pb2_1.PlatformInfo, _Mapping]] = ..., authentication: _Optional[_Union[_common_pb2_1.AuthenticationConfig, _Mapping]] = ..., metadata: _Optional[_Union[MetadataConfig, _Mapping]] = ..., storage: _Optional[_Union[_common_pb2_1.StorageConfig, _Mapping]] = ..., repositories: _Optional[_Mapping[str, _common_pb2_1.PluginConfig]] = ..., executor: _Optional[_Union[_common_pb2_1.PluginConfig, _Mapping]] = ..., jobCache: _Optional[_Union[_common_pb2_1.PluginConfig, _Mapping]] = ..., tenants: _Optional[_Mapping[str, TenantConfig]] = ..., webServer: _Optional[_Union[WebServerConfig, _Mapping]] = ..., gateway: _Optional[_Union[GatewayConfig, _Mapping]] = ..., services: _Optional[_Mapping[str, ServiceConfig]] = ..., deployment: _Optional[_Union[DeploymentConfig, _Mapping]] = ...) -> None: ...
92
-
93
- class MetadataConfig(_message.Message):
94
- __slots__ = ("database", "format")
95
- DATABASE_FIELD_NUMBER: _ClassVar[int]
96
- FORMAT_FIELD_NUMBER: _ClassVar[int]
97
- database: _common_pb2_1.PluginConfig
98
- format: _common_pb2.MetadataFormat
99
- def __init__(self, database: _Optional[_Union[_common_pb2_1.PluginConfig, _Mapping]] = ..., format: _Optional[_Union[_common_pb2.MetadataFormat, str]] = ...) -> None: ...
100
-
101
- class TenantConfig(_message.Message):
102
- __slots__ = ("defaultBucket", "defaultFormat")
103
- DEFAULTBUCKET_FIELD_NUMBER: _ClassVar[int]
104
- DEFAULTFORMAT_FIELD_NUMBER: _ClassVar[int]
105
- defaultBucket: str
106
- defaultFormat: str
107
- def __init__(self, defaultBucket: _Optional[str] = ..., defaultFormat: _Optional[str] = ...) -> None: ...
108
-
109
- class WebServerConfig(_message.Message):
110
- __slots__ = ("enabled", "contentRoot", "rewriteRules", "redirects")
111
- ENABLED_FIELD_NUMBER: _ClassVar[int]
112
- CONTENTROOT_FIELD_NUMBER: _ClassVar[int]
113
- REWRITERULES_FIELD_NUMBER: _ClassVar[int]
114
- REDIRECTS_FIELD_NUMBER: _ClassVar[int]
115
- enabled: bool
116
- contentRoot: _common_pb2_1.PluginConfig
117
- rewriteRules: _containers.RepeatedCompositeFieldContainer[WebServerRewriteRule]
118
- redirects: _containers.RepeatedCompositeFieldContainer[WebServerRedirect]
119
- def __init__(self, enabled: bool = ..., contentRoot: _Optional[_Union[_common_pb2_1.PluginConfig, _Mapping]] = ..., rewriteRules: _Optional[_Iterable[_Union[WebServerRewriteRule, _Mapping]]] = ..., redirects: _Optional[_Iterable[_Union[WebServerRedirect, _Mapping]]] = ...) -> None: ...
120
-
121
- class WebServerRewriteRule(_message.Message):
122
- __slots__ = ("source", "target")
123
- SOURCE_FIELD_NUMBER: _ClassVar[int]
124
- TARGET_FIELD_NUMBER: _ClassVar[int]
125
- source: str
126
- target: str
127
- def __init__(self, source: _Optional[str] = ..., target: _Optional[str] = ...) -> None: ...
128
-
129
- class WebServerRedirect(_message.Message):
130
- __slots__ = ("source", "target", "status")
131
- SOURCE_FIELD_NUMBER: _ClassVar[int]
132
- TARGET_FIELD_NUMBER: _ClassVar[int]
133
- STATUS_FIELD_NUMBER: _ClassVar[int]
134
- source: str
135
- target: str
136
- status: int
137
- def __init__(self, source: _Optional[str] = ..., target: _Optional[str] = ..., status: _Optional[int] = ...) -> None: ...
138
-
139
- class GatewayConfig(_message.Message):
140
- __slots__ = ("idleTimeout", "routes", "redirects")
141
- IDLETIMEOUT_FIELD_NUMBER: _ClassVar[int]
142
- ROUTES_FIELD_NUMBER: _ClassVar[int]
143
- REDIRECTS_FIELD_NUMBER: _ClassVar[int]
144
- idleTimeout: int
145
- routes: _containers.RepeatedCompositeFieldContainer[RouteConfig]
146
- redirects: _containers.RepeatedCompositeFieldContainer[WebServerRedirect]
147
- def __init__(self, idleTimeout: _Optional[int] = ..., routes: _Optional[_Iterable[_Union[RouteConfig, _Mapping]]] = ..., redirects: _Optional[_Iterable[_Union[WebServerRedirect, _Mapping]]] = ...) -> None: ...
148
-
149
- class RouteConfig(_message.Message):
150
- __slots__ = ("routeName", "routeType", "protocols", "match", "target")
151
- ROUTENAME_FIELD_NUMBER: _ClassVar[int]
152
- ROUTETYPE_FIELD_NUMBER: _ClassVar[int]
153
- PROTOCOLS_FIELD_NUMBER: _ClassVar[int]
154
- MATCH_FIELD_NUMBER: _ClassVar[int]
155
- TARGET_FIELD_NUMBER: _ClassVar[int]
156
- routeName: str
157
- routeType: RoutingProtocol
158
- protocols: _containers.RepeatedScalarFieldContainer[RoutingProtocol]
159
- match: RoutingMatch
160
- target: RoutingTarget
161
- def __init__(self, routeName: _Optional[str] = ..., routeType: _Optional[_Union[RoutingProtocol, str]] = ..., protocols: _Optional[_Iterable[_Union[RoutingProtocol, str]]] = ..., match: _Optional[_Union[RoutingMatch, _Mapping]] = ..., target: _Optional[_Union[RoutingTarget, _Mapping]] = ...) -> None: ...
162
-
163
- class RoutingMatch(_message.Message):
164
- __slots__ = ("host", "path")
165
- HOST_FIELD_NUMBER: _ClassVar[int]
166
- PATH_FIELD_NUMBER: _ClassVar[int]
167
- host: str
168
- path: str
169
- def __init__(self, host: _Optional[str] = ..., path: _Optional[str] = ...) -> None: ...
170
-
171
- class RoutingTarget(_message.Message):
172
- __slots__ = ("scheme", "host", "port", "path")
173
- SCHEME_FIELD_NUMBER: _ClassVar[int]
174
- HOST_FIELD_NUMBER: _ClassVar[int]
175
- PORT_FIELD_NUMBER: _ClassVar[int]
176
- PATH_FIELD_NUMBER: _ClassVar[int]
177
- scheme: str
178
- host: str
179
- port: int
180
- path: str
181
- def __init__(self, scheme: _Optional[str] = ..., host: _Optional[str] = ..., port: _Optional[int] = ..., path: _Optional[str] = ...) -> None: ...
182
-
183
- class ServiceConfig(_message.Message):
184
- __slots__ = ("enabled", "alias", "port")
185
- ENABLED_FIELD_NUMBER: _ClassVar[int]
186
- ALIAS_FIELD_NUMBER: _ClassVar[int]
187
- PORT_FIELD_NUMBER: _ClassVar[int]
188
- enabled: bool
189
- alias: str
190
- port: int
191
- def __init__(self, enabled: bool = ..., alias: _Optional[str] = ..., port: _Optional[int] = ...) -> None: ...
192
-
193
- class DeploymentConfig(_message.Message):
194
- __slots__ = ("layout",)
195
- LAYOUT_FIELD_NUMBER: _ClassVar[int]
196
- layout: DeploymentLayout
197
- def __init__(self, layout: _Optional[_Union[DeploymentLayout, str]] = ...) -> None: ...
@@ -1,37 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- # Generated by the protocol buffer compiler. DO NOT EDIT!
3
- # source: tracdap/rt/_impl/grpc/tracdap/config/result.proto
4
- # Protobuf Python Version: 4.25.3
5
- """Generated protocol buffer code."""
6
- from google.protobuf import descriptor as _descriptor
7
- from google.protobuf import descriptor_pool as _descriptor_pool
8
- from google.protobuf import symbol_database as _symbol_database
9
- from google.protobuf.internal import builder as _builder
10
- # @@protoc_insertion_point(imports)
11
-
12
- _sym_db = _symbol_database.Default()
13
-
14
-
15
- from tracdap.rt._impl.grpc.tracdap.metadata import object_id_pb2 as tracdap_dot_rt_dot___impl_dot_grpc_dot_tracdap_dot_metadata_dot_object__id__pb2
16
- from tracdap.rt._impl.grpc.tracdap.metadata import object_pb2 as tracdap_dot_rt_dot___impl_dot_grpc_dot_tracdap_dot_metadata_dot_object__pb2
17
- from tracdap.rt._impl.grpc.tracdap.metadata import job_pb2 as tracdap_dot_rt_dot___impl_dot_grpc_dot_tracdap_dot_metadata_dot_job__pb2
18
- from tracdap.rt._impl.grpc.tracdap.metadata import tag_update_pb2 as tracdap_dot_rt_dot___impl_dot_grpc_dot_tracdap_dot_metadata_dot_tag__update__pb2
19
-
20
-
21
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n1tracdap/rt/_impl/grpc/tracdap/config/result.proto\x12\x0etracdap.config\x1a\x36tracdap/rt/_impl/grpc/tracdap/metadata/object_id.proto\x1a\x33tracdap/rt/_impl/grpc/tracdap/metadata/object.proto\x1a\x30tracdap/rt/_impl/grpc/tracdap/metadata/job.proto\x1a\x37tracdap/rt/_impl/grpc/tracdap/metadata/tag_update.proto\";\n\rTagUpdateList\x12*\n\x05\x61ttrs\x18\x01 \x03(\x0b\x32\x1b.tracdap.metadata.TagUpdate\"\x9d\x02\n\tJobResult\x12*\n\x05jobId\x18\x01 \x01(\x0b\x32\x1b.tracdap.metadata.TagHeader\x12\x33\n\nstatusCode\x18\x02 \x01(\x0e\x32\x1f.tracdap.metadata.JobStatusCode\x12\x15\n\rstatusMessage\x18\x03 \x01(\t\x12\x37\n\x07results\x18\x04 \x03(\x0b\x32&.tracdap.config.JobResult.ResultsEntry\x1aR\n\x0cResultsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\".tracdap.metadata.ObjectDefinition:\x02\x38\x01J\x04\x08\x05\x10\x06R\x05\x61ttrsB\x1c\n\x18org.finos.tracdap.configP\x01\x62\x06proto3')
22
-
23
- _globals = globals()
24
- _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
25
- _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'tracdap.rt._impl.grpc.tracdap.config.result_pb2', _globals)
26
- if _descriptor._USE_C_DESCRIPTORS == False:
27
- _globals['DESCRIPTOR']._options = None
28
- _globals['DESCRIPTOR']._serialized_options = b'\n\030org.finos.tracdap.configP\001'
29
- _globals['_JOBRESULT_RESULTSENTRY']._options = None
30
- _globals['_JOBRESULT_RESULTSENTRY']._serialized_options = b'8\001'
31
- _globals['_TAGUPDATELIST']._serialized_start=285
32
- _globals['_TAGUPDATELIST']._serialized_end=344
33
- _globals['_JOBRESULT']._serialized_start=347
34
- _globals['_JOBRESULT']._serialized_end=632
35
- _globals['_JOBRESULT_RESULTSENTRY']._serialized_start=537
36
- _globals['_JOBRESULT_RESULTSENTRY']._serialized_end=619
37
- # @@protoc_insertion_point(module_scope)
@@ -1,35 +0,0 @@
1
- from tracdap.rt._impl.grpc.tracdap.metadata import object_id_pb2 as _object_id_pb2
2
- from tracdap.rt._impl.grpc.tracdap.metadata import object_pb2 as _object_pb2
3
- from tracdap.rt._impl.grpc.tracdap.metadata import job_pb2 as _job_pb2
4
- from tracdap.rt._impl.grpc.tracdap.metadata import tag_update_pb2 as _tag_update_pb2
5
- from google.protobuf.internal import containers as _containers
6
- from google.protobuf import descriptor as _descriptor
7
- from google.protobuf import message as _message
8
- from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
9
-
10
- DESCRIPTOR: _descriptor.FileDescriptor
11
-
12
- class TagUpdateList(_message.Message):
13
- __slots__ = ("attrs",)
14
- ATTRS_FIELD_NUMBER: _ClassVar[int]
15
- attrs: _containers.RepeatedCompositeFieldContainer[_tag_update_pb2.TagUpdate]
16
- def __init__(self, attrs: _Optional[_Iterable[_Union[_tag_update_pb2.TagUpdate, _Mapping]]] = ...) -> None: ...
17
-
18
- class JobResult(_message.Message):
19
- __slots__ = ("jobId", "statusCode", "statusMessage", "results")
20
- class ResultsEntry(_message.Message):
21
- __slots__ = ("key", "value")
22
- KEY_FIELD_NUMBER: _ClassVar[int]
23
- VALUE_FIELD_NUMBER: _ClassVar[int]
24
- key: str
25
- value: _object_pb2.ObjectDefinition
26
- def __init__(self, key: _Optional[str] = ..., value: _Optional[_Union[_object_pb2.ObjectDefinition, _Mapping]] = ...) -> None: ...
27
- JOBID_FIELD_NUMBER: _ClassVar[int]
28
- STATUSCODE_FIELD_NUMBER: _ClassVar[int]
29
- STATUSMESSAGE_FIELD_NUMBER: _ClassVar[int]
30
- RESULTS_FIELD_NUMBER: _ClassVar[int]
31
- jobId: _object_id_pb2.TagHeader
32
- statusCode: _job_pb2.JobStatusCode
33
- statusMessage: str
34
- results: _containers.MessageMap[str, _object_pb2.ObjectDefinition]
35
- def __init__(self, jobId: _Optional[_Union[_object_id_pb2.TagHeader, _Mapping]] = ..., statusCode: _Optional[_Union[_job_pb2.JobStatusCode, str]] = ..., statusMessage: _Optional[str] = ..., results: _Optional[_Mapping[str, _object_pb2.ObjectDefinition]] = ...) -> None: ...
@@ -1,42 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- # Generated by the protocol buffer compiler. DO NOT EDIT!
3
- # source: tracdap/rt/_impl/grpc/tracdap/config/runtime.proto
4
- # Protobuf Python Version: 4.25.3
5
- """Generated protocol buffer code."""
6
- from google.protobuf import descriptor as _descriptor
7
- from google.protobuf import descriptor_pool as _descriptor_pool
8
- from google.protobuf import symbol_database as _symbol_database
9
- from google.protobuf.internal import builder as _builder
10
- # @@protoc_insertion_point(imports)
11
-
12
- _sym_db = _symbol_database.Default()
13
-
14
-
15
- from tracdap.rt._impl.grpc.tracdap.config import common_pb2 as tracdap_dot_rt_dot___impl_dot_grpc_dot_tracdap_dot_config_dot_common__pb2
16
-
17
-
18
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n2tracdap/rt/_impl/grpc/tracdap/config/runtime.proto\x12\x0etracdap.config\x1a\x31tracdap/rt/_impl/grpc/tracdap/config/common.proto\"\xf9\x02\n\rRuntimeConfig\x12\x39\n\x06\x63onfig\x18\x01 \x03(\x0b\x32).tracdap.config.RuntimeConfig.ConfigEntry\x12.\n\x07storage\x18\x02 \x01(\x0b\x32\x1d.tracdap.config.StorageConfig\x12\x45\n\x0crepositories\x18\x03 \x03(\x0b\x32/.tracdap.config.RuntimeConfig.RepositoriesEntry\x12\x34\n\rsparkSettings\x18\x05 \x01(\x0b\x32\x1d.tracdap.config.SparkSettings\x1a-\n\x0b\x43onfigEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1aQ\n\x11RepositoriesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12+\n\x05value\x18\x02 \x01(\x0b\x32\x1c.tracdap.config.PluginConfig:\x02\x38\x01\"\x85\x01\n\rSparkSettings\x12\x41\n\nsparkProps\x18\x01 \x03(\x0b\x32-.tracdap.config.SparkSettings.SparkPropsEntry\x1a\x31\n\x0fSparkPropsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x42\x1c\n\x18org.finos.tracdap.configP\x01\x62\x06proto3')
19
-
20
- _globals = globals()
21
- _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
22
- _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'tracdap.rt._impl.grpc.tracdap.config.runtime_pb2', _globals)
23
- if _descriptor._USE_C_DESCRIPTORS == False:
24
- _globals['DESCRIPTOR']._options = None
25
- _globals['DESCRIPTOR']._serialized_options = b'\n\030org.finos.tracdap.configP\001'
26
- _globals['_RUNTIMECONFIG_CONFIGENTRY']._options = None
27
- _globals['_RUNTIMECONFIG_CONFIGENTRY']._serialized_options = b'8\001'
28
- _globals['_RUNTIMECONFIG_REPOSITORIESENTRY']._options = None
29
- _globals['_RUNTIMECONFIG_REPOSITORIESENTRY']._serialized_options = b'8\001'
30
- _globals['_SPARKSETTINGS_SPARKPROPSENTRY']._options = None
31
- _globals['_SPARKSETTINGS_SPARKPROPSENTRY']._serialized_options = b'8\001'
32
- _globals['_RUNTIMECONFIG']._serialized_start=122
33
- _globals['_RUNTIMECONFIG']._serialized_end=499
34
- _globals['_RUNTIMECONFIG_CONFIGENTRY']._serialized_start=371
35
- _globals['_RUNTIMECONFIG_CONFIGENTRY']._serialized_end=416
36
- _globals['_RUNTIMECONFIG_REPOSITORIESENTRY']._serialized_start=418
37
- _globals['_RUNTIMECONFIG_REPOSITORIESENTRY']._serialized_end=499
38
- _globals['_SPARKSETTINGS']._serialized_start=502
39
- _globals['_SPARKSETTINGS']._serialized_end=635
40
- _globals['_SPARKSETTINGS_SPARKPROPSENTRY']._serialized_start=586
41
- _globals['_SPARKSETTINGS_SPARKPROPSENTRY']._serialized_end=635
42
- # @@protoc_insertion_point(module_scope)
@@ -1,46 +0,0 @@
1
- from tracdap.rt._impl.grpc.tracdap.config import common_pb2 as _common_pb2
2
- from google.protobuf.internal import containers as _containers
3
- from google.protobuf import descriptor as _descriptor
4
- from google.protobuf import message as _message
5
- from typing import ClassVar as _ClassVar, Mapping as _Mapping, Optional as _Optional, Union as _Union
6
-
7
- DESCRIPTOR: _descriptor.FileDescriptor
8
-
9
- class RuntimeConfig(_message.Message):
10
- __slots__ = ("config", "storage", "repositories", "sparkSettings")
11
- class ConfigEntry(_message.Message):
12
- __slots__ = ("key", "value")
13
- KEY_FIELD_NUMBER: _ClassVar[int]
14
- VALUE_FIELD_NUMBER: _ClassVar[int]
15
- key: str
16
- value: str
17
- def __init__(self, key: _Optional[str] = ..., value: _Optional[str] = ...) -> None: ...
18
- class RepositoriesEntry(_message.Message):
19
- __slots__ = ("key", "value")
20
- KEY_FIELD_NUMBER: _ClassVar[int]
21
- VALUE_FIELD_NUMBER: _ClassVar[int]
22
- key: str
23
- value: _common_pb2.PluginConfig
24
- def __init__(self, key: _Optional[str] = ..., value: _Optional[_Union[_common_pb2.PluginConfig, _Mapping]] = ...) -> None: ...
25
- CONFIG_FIELD_NUMBER: _ClassVar[int]
26
- STORAGE_FIELD_NUMBER: _ClassVar[int]
27
- REPOSITORIES_FIELD_NUMBER: _ClassVar[int]
28
- SPARKSETTINGS_FIELD_NUMBER: _ClassVar[int]
29
- config: _containers.ScalarMap[str, str]
30
- storage: _common_pb2.StorageConfig
31
- repositories: _containers.MessageMap[str, _common_pb2.PluginConfig]
32
- sparkSettings: SparkSettings
33
- def __init__(self, config: _Optional[_Mapping[str, str]] = ..., storage: _Optional[_Union[_common_pb2.StorageConfig, _Mapping]] = ..., repositories: _Optional[_Mapping[str, _common_pb2.PluginConfig]] = ..., sparkSettings: _Optional[_Union[SparkSettings, _Mapping]] = ...) -> None: ...
34
-
35
- class SparkSettings(_message.Message):
36
- __slots__ = ("sparkProps",)
37
- class SparkPropsEntry(_message.Message):
38
- __slots__ = ("key", "value")
39
- KEY_FIELD_NUMBER: _ClassVar[int]
40
- VALUE_FIELD_NUMBER: _ClassVar[int]
41
- key: str
42
- value: str
43
- def __init__(self, key: _Optional[str] = ..., value: _Optional[str] = ...) -> None: ...
44
- SPARKPROPS_FIELD_NUMBER: _ClassVar[int]
45
- sparkProps: _containers.ScalarMap[str, str]
46
- def __init__(self, sparkProps: _Optional[_Mapping[str, str]] = ...) -> None: ...
tracdap/rt/ext/_guard.py DELETED
@@ -1,37 +0,0 @@
1
- # Copyright 2023 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
6
- #
7
- # http://www.apache.org/licenses/LICENSE-2.0
8
- #
9
- # Unless required by applicable law or agreed to in writing, software
10
- # distributed under the License is distributed on an "AS IS" BASIS,
11
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- # See the License for the specific language governing permissions and
13
- # limitations under the License.
14
-
15
- import inspect
16
- import tracdap.rt.exceptions as ex
17
-
18
-
19
- def run_model_guard(operation: str = None):
20
-
21
- # Loading resources from inside run_model is an invalid use of the runtime API
22
- # If a model attempts this, throw back a runtime validation error
23
-
24
- stack = inspect.stack()
25
- frame = stack[-1]
26
-
27
- if operation is None:
28
- operation = f"Calling {frame.function}()"
29
-
30
- for frame_index in range(len(stack) - 2, 0, -1):
31
-
32
- parent_frame = frame
33
- frame = stack[frame_index]
34
-
35
- if frame.function == "run_model" and parent_frame.function == "_execute":
36
- err = f"{operation} is not allowed inside run_model()"
37
- raise ex.ERuntimeValidation(err)
@@ -1,121 +0,0 @@
1
- tracdap/rt/__init__.py,sha256=rz9ERpKMlnR4LFZNGLtdNE26B_Y2V168bdd8hRmasKk,643
2
- tracdap/rt/_version.py,sha256=l_9i8A1v3tcyFZyYjsXLFCcldsgs4Sx_g9QFf1btW_4,631
3
- tracdap/rt/exceptions.py,sha256=AV2o9g5d5miMoRfsYW3DZ6or4SLVGwcZjfw4UsQ-HTY,7907
4
- tracdap/rt/_exec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
- tracdap/rt/_exec/actors.py,sha256=faZ7hCxsONLbjQKrFRZv-wL_aXaKjsgbLOHDI0uUXDc,32242
6
- tracdap/rt/_exec/context.py,sha256=H0W5ukFHiSDcRVY6emLVUAF3z71xTRHgaJZn502yhEo,12751
7
- tracdap/rt/_exec/dev_mode.py,sha256=KxxnYljRXHqfXXLdqI2hIukBPDcTT5d5yQbpxgmJDao,32721
8
- tracdap/rt/_exec/engine.py,sha256=jGrQlqbVLr4n5iuAUwOjJBdEAu9s_szJ4CUFtNtDPxo,29952
9
- tracdap/rt/_exec/functions.py,sha256=A21xIC0K1IsI6VBYtb-Oxv2pajegbl149bVmhgD6OuQ,24323
10
- tracdap/rt/_exec/graph.py,sha256=wOzOLBD-dKwqFhJtbGg2r49g68CkDNaveK5yi6mmm2A,11084
11
- tracdap/rt/_exec/graph_builder.py,sha256=waf74ogwfqSyxdU2yvwEwtNdt6U9qaExQdOZ7ghNY3M,32845
12
- tracdap/rt/_exec/runtime.py,sha256=EbU0uBwxftvFaRydxxsrcStpIOakuhvrcrtnDzKC_m4,14630
13
- tracdap/rt/_exec/server.py,sha256=BYJiF4-YL1_94otOp3Ex6RCIyH3OgbfCo3r1wsJAg0Q,2477
14
- tracdap/rt/_impl/__init__.py,sha256=eBZMpgFx9uHJxMA-yMWHCQMvShTKxJRAizdz4vy5eWg,609
15
- tracdap/rt/_impl/config_parser.py,sha256=udnYRafOcP3aQSVXSfjCc70gOEbh7MxJpR1v0wqnBUw,15263
16
- tracdap/rt/_impl/data.py,sha256=ZBt545h-qJnSIO-9vASkzzdg3T6L2_bcilqEtHTEbmU,32707
17
- tracdap/rt/_impl/guard_rails.py,sha256=WkV3R-gyfCI_M-H6RVIKW2A87NVsQX2ocdR3CRpma2U,10745
18
- tracdap/rt/_impl/models.py,sha256=4Rqj-ftjCaetZ9Ty39-EUc--x6ZFX_inLfQYRHMaFyI,9216
19
- tracdap/rt/_impl/repos.py,sha256=bdpUkBbNOIQOKJQGOhCDdXUMz2bY91YNIYlKRKTtM4Y,2063
20
- tracdap/rt/_impl/schemas.py,sha256=KhMvh_i2ZLx0-P6vzx8ro2-KbnB3upfJgryTHbXMJrs,7417
21
- tracdap/rt/_impl/shim.py,sha256=WV9AldhKdt-oLuQ5x89Dkocdn_gJoYZEo9buHHFIYd8,23148
22
- tracdap/rt/_impl/static_api.py,sha256=N9YODftUC3H88meiZ2Om3zd7ayYKezfolI211s4tdy8,7856
23
- tracdap/rt/_impl/storage.py,sha256=vvu1Qlk0-GHqzNj0M33L_jB9eKv0dh9Fr9MBBiaQ2uM,35075
24
- tracdap/rt/_impl/type_system.py,sha256=yycCyGZgszCkpO1tA5sMg0W_-2uYwk9dTaL2gg68D6k,12010
25
- tracdap/rt/_impl/util.py,sha256=HeswbIL4dQHjWnCJL3-WEqwsQaYo-xnEuGRoaRJ7kyU,11075
26
- tracdap/rt/_impl/validation.py,sha256=AgSnr_SZ6nbyh7beiz3QP5BEg-sOuXvFzarqiPvuuUQ,16241
27
- tracdap/rt/_impl/grpc/__init__.py,sha256=VFwsBdvvDZhB9OmzGnVPNkApXql5KjYoVSnIteKWTRI,608
28
- tracdap/rt/_impl/grpc/codec.py,sha256=uVNE3WgaS2G0HTP26e_gy5HRn4hja5W-_6igH1XRkhw,1643
29
- tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2.py,sha256=BdjkU70n30n9yriY39AByRm6unjMk6_pu3btz-BS5w4,4983
30
- tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2.pyi,sha256=dBzJNEpyFxHMXqvpXURlQOa1EPXYnQDW50XFBuQffx8,3074
31
- tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2_grpc.py,sha256=QSq3gPLGnOde9cLdo7FBWzktPMK9eHlK1oS8uhO_jJc,8399
32
- tracdap/rt/_impl/grpc/tracdap/config/common_pb2.py,sha256=oSwJJjB55F4cDNksPZizguf1AcHMBuUjgoASIcr1e84,4859
33
- tracdap/rt/_impl/grpc/tracdap/config/common_pb2.pyi,sha256=c3e0DHDPgwKuVBnD7JB7isucoOPlx6vzmT4gWgGHCU0,4983
34
- tracdap/rt/_impl/grpc/tracdap/config/job_pb2.py,sha256=Y4ZOso2YJ-KZlt0XhsZzMtbqseRWCrDcIkR2nvKF6ZA,3475
35
- tracdap/rt/_impl/grpc/tracdap/config/job_pb2.pyi,sha256=l7r-FYaw0GN98ywpf2kpc50o0bqRm6Isz95ofAvRijI,2638
36
- tracdap/rt/_impl/grpc/tracdap/config/platform_pb2.py,sha256=GZum7dfEJLYLZUE1HD8r9fWVdhhI8qzC7bUaKBsM6g8,8081
37
- tracdap/rt/_impl/grpc/tracdap/config/platform_pb2.pyi,sha256=LZolS_XwpcQlCCkamNxy_C4p9OjzGRiOOJnsYhT8FZg,9897
38
- tracdap/rt/_impl/grpc/tracdap/config/result_pb2.py,sha256=PTbAIWWtqLQBS7Dc43FjzLG1-jw1SVvUY8v62uvKqH4,2945
39
- tracdap/rt/_impl/grpc/tracdap/config/result_pb2.pyi,sha256=bK0vLTPeTey-bAH5Yx0w7wdVYp1wGGM6nVXYPnaRsEI,2035
40
- tracdap/rt/_impl/grpc/tracdap/config/runtime_pb2.py,sha256=xKRbe90Jsmc15A3Sayx-ogYsOqpzmMnfDZ3OIweQKLM,3167
41
- tracdap/rt/_impl/grpc/tracdap/config/runtime_pb2.pyi,sha256=txhlxeXA36WB-2yTUsCF2SAhaNvKiSLq9uNA_RuaH3o,2345
42
- tracdap/rt/_impl/grpc/tracdap/metadata/common_pb2.py,sha256=oql1naNGBKxpPIQZViewQSzUmMpt9U8gB-qSJpxkBwo,1945
43
- tracdap/rt/_impl/grpc/tracdap/metadata/common_pb2.pyi,sha256=R7fTC8HV0j8zB2E2KVtLWXSAeu5MVLrgeL-PnnOsUxg,1275
44
- tracdap/rt/_impl/grpc/tracdap/metadata/custom_pb2.py,sha256=DfHhxxvKU_htkLjUdvsVfxl8Gj8z5GenAuhCSuMT6Ps,1421
45
- tracdap/rt/_impl/grpc/tracdap/metadata/custom_pb2.pyi,sha256=_GubsAG9rpuV_QhhXKTDOPeWIpkAkg5jlHkSZxaILak,702
46
- tracdap/rt/_impl/grpc/tracdap/metadata/data_pb2.py,sha256=1ZJWSAtULaLxts2h4LRaHhk_wUqVEvDTCidqpOYo4FU,5220
47
- tracdap/rt/_impl/grpc/tracdap/metadata/data_pb2.pyi,sha256=6F7O59tKIXWMFmmCm8zMJQKPQ3hM-fJ8px25Z_ae_Nc,5856
48
- tracdap/rt/_impl/grpc/tracdap/metadata/file_pb2.py,sha256=FwZ9CZrS6-n96sYjV_EQXzviRRnjAs1bDahOSfbJ_v0,1748
49
- tracdap/rt/_impl/grpc/tracdap/metadata/file_pb2.pyi,sha256=nRBVl47NUBTOLUJ7HOeztUMJoh9sVbPtqpxKLcCMEEw,1085
50
- tracdap/rt/_impl/grpc/tracdap/metadata/flow_pb2.py,sha256=GyY4iaqp9wtZ29byMllPmk4o2nosUgdazdqf9KKUg-g,5799
51
- tracdap/rt/_impl/grpc/tracdap/metadata/flow_pb2.pyi,sha256=yCP4usBn7VWxFWdlB6NERiCd0R7BqqmH5k29WdKNk04,5880
52
- tracdap/rt/_impl/grpc/tracdap/metadata/job_pb2.py,sha256=iuHQEwWXSlbr76XPiv3txYinpRqkllSfrSIjhXVRTCs,8305
53
- tracdap/rt/_impl/grpc/tracdap/metadata/job_pb2.pyi,sha256=n1OEkSYBCPRLNWo1JtvwQwiOXC4xw5a6OWvloNvMlZ8,9411
54
- tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.py,sha256=mvWQY3lOCluV5ssejj5zEjb0VL-43PLWPp7WubFzgfg,5081
55
- tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.pyi,sha256=WsjK_DIhoTavs_Q7252qa2tnM8FmCJ9qKTdE_eKvcLo,4770
56
- tracdap/rt/_impl/grpc/tracdap/metadata/object_id_pb2.py,sha256=cdNa1Byx6jvZPeakr28VrsEkGIj6av1xvdOM1N8NtuE,2933
57
- tracdap/rt/_impl/grpc/tracdap/metadata/object_id_pb2.pyi,sha256=vWMjD_CG4ozUBSVsl44kjux-Qr-L_7cLgvQRpuUM7x0,3238
58
- tracdap/rt/_impl/grpc/tracdap/metadata/object_pb2.py,sha256=QCPOqIII_yPy66Z8zkKpea0x8WedKNf_K_vH5-NBIEM,3659
59
- tracdap/rt/_impl/grpc/tracdap/metadata/object_pb2.pyi,sha256=Y7Ga0jYLwPCPJHn6p43jMzne3vCfXK-rfkuN9VbHugM,2349
60
- tracdap/rt/_impl/grpc/tracdap/metadata/search_pb2.py,sha256=YsUl-xK3jOQ6mOMCPe8G3-BWOFFz-MpUOXDWMV90DrQ,3654
61
- tracdap/rt/_impl/grpc/tracdap/metadata/search_pb2.pyi,sha256=PU-OYKRufI3v5Zx8RI4RvEZq3KPh91AOb8sDNwxyySY,3762
62
- tracdap/rt/_impl/grpc/tracdap/metadata/stoarge_pb2.py,sha256=Zyi6y4vOSN8-VI00cq0gC2xv7YQcFrpMEC2phQxk32k,4652
63
- tracdap/rt/_impl/grpc/tracdap/metadata/stoarge_pb2.pyi,sha256=ImU8YT62pfiAMDYwTtX5E6nyI_n1PuhUWabFJlRFvnE,4746
64
- tracdap/rt/_impl/grpc/tracdap/metadata/tag_pb2.py,sha256=bQ6gA21bizykXQZPzC8AhaN5IgUYddzVEp7KSzz6KNM,2441
65
- tracdap/rt/_impl/grpc/tracdap/metadata/tag_pb2.pyi,sha256=6gP3-Rdiq84ng5d6DtVNEWZj5syt1xyD33jRWg3YcgU,1454
66
- tracdap/rt/_impl/grpc/tracdap/metadata/tag_update_pb2.py,sha256=HwJtcqjYwbYZw5LpZIaMux1qusVfEitl0wX-J8NMprI,2090
67
- tracdap/rt/_impl/grpc/tracdap/metadata/tag_update_pb2.pyi,sha256=Q3687BMYoH8OzJF2tYu6nEOR8Yz3UkU8f2cjxQ3lFv8,1470
68
- tracdap/rt/_impl/grpc/tracdap/metadata/type_pb2.py,sha256=Vbr4xCD2r4wDEnZMV1ZnEgWvYhZph6EAwL4eZZrO4IE,4206
69
- tracdap/rt/_impl/grpc/tracdap/metadata/type_pb2.pyi,sha256=h-5HTqHMxFhTvfzZH7q-qWt7GeUhYnsQ8EqN9VoH_Ys,4356
70
- tracdap/rt/_plugins/__init__.py,sha256=NT9Aq8FDZwJgAG6u6K2E0B6ByAo3x0i48wFNfRkSLZc,609
71
- tracdap/rt/_plugins/_helpers.py,sha256=_PhYVVNFZaktERkyrKSvMCzMJn9EXSun0MXmWInq_ew,5840
72
- tracdap/rt/_plugins/format_arrow.py,sha256=C4mcRRD-bIZhytxEn4meM1gwIaq1cSl_YgmUGUwzuPY,2210
73
- tracdap/rt/_plugins/format_csv.py,sha256=e9yr5ZSseuns-YHa-dKPMOO0EvFM4Kx3CJbvHQQika4,16823
74
- tracdap/rt/_plugins/format_parquet.py,sha256=clOkTGvqEPgnF7eRaxceyDDiWgFbSHZcYQWGOr2130c,2159
75
- tracdap/rt/_plugins/repo_git.py,sha256=68nE9NBw5M4wId9tgTI8K9Pv80V8BDAG7oJDPf5_C9I,10276
76
- tracdap/rt/_plugins/repo_local.py,sha256=oW35YZIjOI4uRTGWI44Vnr9mzelQL-HuLvLnmHZHzTU,2726
77
- tracdap/rt/_plugins/repo_pypi.py,sha256=DGNgoUGM7fbAYtxqW-Liu2d2Lpx0OHAOnMnT-t0hEbA,13345
78
- tracdap/rt/_plugins/storage_aws.py,sha256=1XyWJcHmRQqr3LpS6yGvR6-yaz4g7_3zFc_KUJPWmz8,12973
79
- tracdap/rt/_plugins/storage_azure.py,sha256=Q7c063SXlbbsyZHWPu4ma8BDwV-sE0ipOyb0Roi9ad0,5813
80
- tracdap/rt/_plugins/storage_gcp.py,sha256=ENMrgTzqX0QjSDnMfeGyFK6YUwaFaJgqF7PQzEqviKk,6464
81
- tracdap/rt/_plugins/storage_local.py,sha256=ep0EvFzhA8ZKStxwSvtbOPIJBt3HjtYKkmFlnUU_AqU,15555
82
- tracdap/rt/api/__init__.py,sha256=rOiUwK6sav9QTXohpZAFXJ9MgsL0KBfUyKA7dYspfGQ,1124
83
- tracdap/rt/api/hook.py,sha256=tO7cuCisGdz6N-YJ9Gur3cRevg-C0csz8gHKdO8irX8,4129
84
- tracdap/rt/api/model_api.py,sha256=6cVYlxYN5jKf4GMPq9Dayl7vhxTGSIvr3GnmSrWu-BA,16336
85
- tracdap/rt/api/static_api.py,sha256=CIO9jt-Z2layCmlOXLdlJNuabE8fznGyf0W4s9S74mU,21298
86
- tracdap/rt/config/__init__.py,sha256=Z57lKVTpUwza4abOH_EqTyev_ZSqLMC97nVfCXg26yg,887
87
- tracdap/rt/config/common.py,sha256=0R57K63-aJ-flvV8RwPyklgPYlLIPUoy5MnZagKFP4A,1202
88
- tracdap/rt/config/job.py,sha256=txzOSBBOoEHWo8tzFNhv9HvjOo4q4C9YfVKadNwZKBQ,575
89
- tracdap/rt/config/platform.py,sha256=JKnQ_fdUJsdiJ-pCpZgypjw56pkdXdaCgMh6ugKQXiQ,2854
90
- tracdap/rt/config/result.py,sha256=ChxZ2R5UtMGuO7h0PVijskbzVo8cXqWIA2PyAkYT-PQ,588
91
- tracdap/rt/config/runtime.py,sha256=M7FoknJkLULrSUX3ZN6dH5KsLKT3spsBtEsCSDGumq0,554
92
- tracdap/rt/ext/__init__.py,sha256=0yYnHpdaHioyof9IyG0R2Z6us1PsaRjOfDX0hSLc_g8,608
93
- tracdap/rt/ext/_guard.py,sha256=ySID0WTbkdrVRzplyMJRl4cc7EqIR1_CImV-e2INiAY,1301
94
- tracdap/rt/ext/embed.py,sha256=_Uz396ELYH0tMKcQRt6W2SznWYSB48zEqAp8P8B6H98,2146
95
- tracdap/rt/ext/plugins.py,sha256=PLi66dhcqN7W7IWBGIb_hGS8t7MwonpeDWP4ivH00FU,2871
96
- tracdap/rt/ext/repos.py,sha256=hnoGadBthdQK_8IQV5lvfxiiTBC7by7YbcD74qBC5Dw,3110
97
- tracdap/rt/ext/storage.py,sha256=mOZKtxFTiPnfOEvUu7RMi3s-Z6PHUX5g4Dq7N6809Dc,4793
98
- tracdap/rt/launch/__init__.py,sha256=Zz_4f_ODsmweCxRmG2Dq1Slpb927jSugYclfF_Wgfws,673
99
- tracdap/rt/launch/__main__.py,sha256=9UVYYSsqvvMVOqjjBBeLNdzV_6IeIa_97KWOMXIpXY4,654
100
- tracdap/rt/launch/cli.py,sha256=FUwpPDEt51zVqAy7FxqS3HG7HKoRc79WHDZMMxBt33c,2187
101
- tracdap/rt/launch/launch.py,sha256=yEYeiOdBjGTaF9DQcCShUhg6pz7saymvh6WAz4t6vlY,4857
102
- tracdap/rt/metadata/__init__.py,sha256=-83WMLpXVdD2kI4l-16EwRV2a9rKYVrJ8bkMT6VLF_E,1779
103
- tracdap/rt/metadata/common.py,sha256=ftFmQtij14Sv2T_Kcd_jFrDw4mr2TjagQrQyj8dX704,1439
104
- tracdap/rt/metadata/custom.py,sha256=rcUrB8FYYcY8sM4W-Khk3ATfgx2hfBe1PBgbIP2Eop0,387
105
- tracdap/rt/metadata/data.py,sha256=nzlaL7cKnLQLLceh9vE_3W4skfx-26EoXux6rK7_ndk,3386
106
- tracdap/rt/metadata/file.py,sha256=4vNg0mO6oHOBtWFkU7H533pruu7oJ0CnRSAv3SvCVYs,448
107
- tracdap/rt/metadata/flow.py,sha256=c4Xi2cdmszknpWYl770i-jX8A2Q4WfIAS6KyU7BeiUA,3358
108
- tracdap/rt/metadata/job.py,sha256=QgtRInflyRAYaPGRChNcx_ptvC9o8RUZnGD30oAyraI,3283
109
- tracdap/rt/metadata/model.py,sha256=oMqioywIQ5HLCdKofEQw7rSHMQN1k9epowy-_eu9IOk,2667
110
- tracdap/rt/metadata/object.py,sha256=AYBx-LJ1kUp6bTqDOsDkd5GJtAZJK8XFaHYGeSt023M,2709
111
- tracdap/rt/metadata/object_id.py,sha256=o46-KNBrWT-2OMe0yf2sSfSpdoJMXpaYKlhW3vwWRyo,4295
112
- tracdap/rt/metadata/search.py,sha256=A2Yrz-ATM0AL7wbX7J24FB7AD2O0QGyvD-K-f7GecxM,9851
113
- tracdap/rt/metadata/stoarge.py,sha256=8pRptS66sbhKufVF7P1GTudxLby0-Kv4drt05XvlC8s,3070
114
- tracdap/rt/metadata/tag.py,sha256=qO1Lxn64UllfAt3CSdvQf04HuKlaUG0ET0keW1Soz_c,5079
115
- tracdap/rt/metadata/tag_update.py,sha256=kTeEppUZ1c4ecamVAuTMXs9GnorETNjc6pzbj_W1HfI,3746
116
- tracdap/rt/metadata/type.py,sha256=ztDQdzh1tHoY3rLjkfVW32BBdxxkKIQ6KNYl349tuE0,9404
117
- tracdap_runtime-0.6.2.dist-info/LICENSE,sha256=Q5Gh9SdMNa_F2ehQRShh7dJBz6qW_EQFtWzLukOWFWY,11365
118
- tracdap_runtime-0.6.2.dist-info/METADATA,sha256=82gK3M5F7VVrYULXC63wDQoZ6TI3-SFQtIIHiGhdxIA,4873
119
- tracdap_runtime-0.6.2.dist-info/WHEEL,sha256=UvcQYKBHoFqaQd6LKyqHw9fxEolWLQnlzP0h_LgJAfI,91
120
- tracdap_runtime-0.6.2.dist-info/top_level.txt,sha256=Uv0JfaE1Lp4JnCzqW8lqXNJAEcsAFpAUGOghJolVNdM,8
121
- tracdap_runtime-0.6.2.dist-info/RECORD,,