polyaxon 2.2.0rc1__py3-none-any.whl → 2.3.0rc1__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.
- polyaxon/_cli/operations.py +14 -4
- polyaxon/_cli/run.py +2 -7
- polyaxon/_client/run.py +2 -2
- polyaxon/_compiler/contexts/ray_job.py +4 -2
- polyaxon/_deploy/operators/compose.py +0 -26
- polyaxon/_deploy/schemas/deployment.py +1 -0
- polyaxon/_deploy/schemas/intervals.py +0 -7
- polyaxon/_k8s/converter/base/base.py +2 -1
- polyaxon/_k8s/converter/converters/ray_job.py +4 -2
- polyaxon/_k8s/custom_resources/dask_job.py +3 -0
- polyaxon/_k8s/custom_resources/kubeflow/common.py +3 -0
- polyaxon/_k8s/custom_resources/ray_job.py +3 -0
- polyaxon/_k8s/custom_resources/setter.py +1 -1
- polyaxon/_k8s/logging/async_monitor.py +52 -2
- polyaxon/_k8s/manager/async_manager.py +15 -0
- polyaxon/_k8s/manager/manager.py +16 -1
- polyaxon/_pql/manager.py +1 -1
- polyaxon/_sdk/api/runs_v1_api.py +30 -30
- polyaxon/_sdk/schemas/v1_preset.py +8 -0
- polyaxon/_sdk/schemas/v1_user.py +1 -2
- polyaxon/pkg.py +1 -1
- {polyaxon-2.2.0rc1.dist-info → polyaxon-2.3.0rc1.dist-info}/METADATA +8 -8
- {polyaxon-2.2.0rc1.dist-info → polyaxon-2.3.0rc1.dist-info}/RECORD +27 -27
- {polyaxon-2.2.0rc1.dist-info → polyaxon-2.3.0rc1.dist-info}/LICENSE +0 -0
- {polyaxon-2.2.0rc1.dist-info → polyaxon-2.3.0rc1.dist-info}/WHEEL +0 -0
- {polyaxon-2.2.0rc1.dist-info → polyaxon-2.3.0rc1.dist-info}/entry_points.txt +0 -0
- {polyaxon-2.2.0rc1.dist-info → polyaxon-2.3.0rc1.dist-info}/top_level.txt +0 -0
polyaxon/_cli/operations.py
CHANGED
@@ -51,7 +51,7 @@ from polyaxon.api import (
|
|
51
51
|
REWRITE_SERVICES_V1,
|
52
52
|
SERVICES_V1,
|
53
53
|
)
|
54
|
-
from polyaxon.client import RunClient, V1Run, get_run_logs
|
54
|
+
from polyaxon.client import RunClient, V1Run, V1RunSettings, get_run_logs
|
55
55
|
from polyaxon.exceptions import (
|
56
56
|
ApiException,
|
57
57
|
PolyaxonClientException,
|
@@ -86,6 +86,14 @@ DEFAULT_EXCLUDE = [
|
|
86
86
|
]
|
87
87
|
|
88
88
|
|
89
|
+
def get_op_agent_host(runSettings: V1RunSettings):
|
90
|
+
host_kwargs = {}
|
91
|
+
if runSettings and runSettings.agent and runSettings.agent.url:
|
92
|
+
host_kwargs["host"] = runSettings.agent.url
|
93
|
+
|
94
|
+
return host_kwargs
|
95
|
+
|
96
|
+
|
89
97
|
def handle_run_statuses(status, conditions, table):
|
90
98
|
if not conditions:
|
91
99
|
return False
|
@@ -2089,10 +2097,12 @@ def service(ctx, project, uid, yes, external, url):
|
|
2089
2097
|
|
2090
2098
|
wait_for_running_condition(client)
|
2091
2099
|
|
2100
|
+
host_kwargs = get_op_agent_host(client.settings)
|
2092
2101
|
run_url = get_dashboard_url(
|
2093
2102
|
subpath="{}/runs/{}/service".format(
|
2094
2103
|
get_project_subpath_url(owner, team, project_name), run_uuid
|
2095
|
-
)
|
2104
|
+
),
|
2105
|
+
**host_kwargs,
|
2096
2106
|
)
|
2097
2107
|
|
2098
2108
|
namespace = client.run_data.settings.namespace
|
@@ -2116,9 +2126,9 @@ def service(ctx, project, uid, yes, external, url):
|
|
2116
2126
|
if port:
|
2117
2127
|
service_subpath = "{}{}/".format(service_subpath, port)
|
2118
2128
|
|
2129
|
+
host_kwargs = get_op_agent_host(client.settings)
|
2119
2130
|
external_run_url = get_dashboard_url(
|
2120
|
-
base=service_endpoint,
|
2121
|
-
subpath=service_subpath,
|
2131
|
+
base=service_endpoint, subpath=service_subpath, **host_kwargs
|
2122
2132
|
)
|
2123
2133
|
|
2124
2134
|
if url:
|
polyaxon/_cli/run.py
CHANGED
@@ -14,6 +14,7 @@ from polyaxon._cli.dashboard import get_dashboard_url, get_project_subpath_url
|
|
14
14
|
from polyaxon._cli.errors import handle_cli_error
|
15
15
|
from polyaxon._cli.operations import approve
|
16
16
|
from polyaxon._cli.operations import execute as run_execute
|
17
|
+
from polyaxon._cli.operations import get_op_agent_host
|
17
18
|
from polyaxon._cli.operations import logs as run_logs
|
18
19
|
from polyaxon._cli.operations import shell as run_shell
|
19
20
|
from polyaxon._cli.operations import statuses
|
@@ -98,13 +99,7 @@ def _run(
|
|
98
99
|
meta_info=meta_info,
|
99
100
|
pending=pending,
|
100
101
|
)
|
101
|
-
host_kwargs =
|
102
|
-
if (
|
103
|
-
response.settings
|
104
|
-
and response.settings.agent
|
105
|
-
and response.settings.agent.host
|
106
|
-
):
|
107
|
-
host_kwargs["host"] = response.settings.agent.host
|
102
|
+
host_kwargs = get_op_agent_host(response.settings)
|
108
103
|
run_url = get_dashboard_url(
|
109
104
|
subpath="{}/runs/{}".format(project_url, response.uuid), **host_kwargs
|
110
105
|
)
|
polyaxon/_client/run.py
CHANGED
@@ -2136,9 +2136,9 @@ class RunClient(ClientMixin):
|
|
2136
2136
|
abspath = filepath if is_abs() else os.path.abspath(filepath)
|
2137
2137
|
|
2138
2138
|
for_patterns = []
|
2139
|
-
if getattr(self, "_artifacts_path"):
|
2139
|
+
if getattr(self, "_artifacts_path", None):
|
2140
2140
|
for_patterns.append(getattr(self, "_artifacts_path"))
|
2141
|
-
if getattr(self, "_store_path"):
|
2141
|
+
if getattr(self, "_store_path", None):
|
2142
2142
|
for_patterns.append(getattr(self, "_store_path"))
|
2143
2143
|
context_root = (
|
2144
2144
|
ctx_paths.CONTEXT_OFFLINE_ROOT
|
@@ -33,7 +33,9 @@ class RayJobContextsManager(BaseContextsManager):
|
|
33
33
|
connection_by_names=connection_by_names,
|
34
34
|
)
|
35
35
|
|
36
|
-
|
36
|
+
data = {
|
37
37
|
"head": _get_replica(job.head),
|
38
|
-
"workers": {wn: _get_replica(job.workers[wn]) for wn in job.workers},
|
39
38
|
}
|
39
|
+
if job.workers:
|
40
|
+
data["workers"] = {wn: _get_replica(job.workers[wn]) for wn in job.workers}
|
41
|
+
return data
|
@@ -112,30 +112,6 @@ class ComposeOperator(CmdOperator):
|
|
112
112
|
)
|
113
113
|
return env
|
114
114
|
|
115
|
-
@staticmethod
|
116
|
-
def _generate_intervals(config):
|
117
|
-
template = "{}={}"
|
118
|
-
env = []
|
119
|
-
if config.intervals:
|
120
|
-
env.append(
|
121
|
-
template.format(
|
122
|
-
"POLYAXON_INTERVALS_RUNS_SCHEDULER", config.intervals.runs_scheduler
|
123
|
-
)
|
124
|
-
)
|
125
|
-
env.append(
|
126
|
-
template.format(
|
127
|
-
"POLYAXON_INTERVALS_OPERATIONS_DEFAULT_RETRY_DELAY",
|
128
|
-
config.intervals.operations_default_retry_delay,
|
129
|
-
)
|
130
|
-
)
|
131
|
-
env.append(
|
132
|
-
template.format(
|
133
|
-
"POLYAXON_INTERVALS_OPERATIONS_MAX_RETRY_DELAY",
|
134
|
-
config.intervals.operations_max_retry_delay,
|
135
|
-
)
|
136
|
-
)
|
137
|
-
return env
|
138
|
-
|
139
115
|
@staticmethod
|
140
116
|
def _generate_email(config):
|
141
117
|
template = "{}={}"
|
@@ -195,8 +171,6 @@ class ComposeOperator(CmdOperator):
|
|
195
171
|
if config.allowed_hosts:
|
196
172
|
env.append(template.format("POLYAXON_ALLOWED_HOSTS", config.allowed_hosts))
|
197
173
|
|
198
|
-
env += cls._generate_intervals(config)
|
199
|
-
|
200
174
|
if config.log_level:
|
201
175
|
env.append(template.format(ENV_KEYS_LOG_LEVEL, config.log_level))
|
202
176
|
env += cls._generate_postgres(config)
|
@@ -255,6 +255,7 @@ class DeploymentConfig(BaseSchemaModel):
|
|
255
255
|
allowed_hosts: Optional[List[StrictStr]] = Field(alias="allowedHosts")
|
256
256
|
include_host_ips: Optional[bool] = Field(alias="includeHostIps")
|
257
257
|
intervals: Optional[IntervalsConfig]
|
258
|
+
cleaning_intervals: Optional[Dict] = Field(alias="cleaningIntervals")
|
258
259
|
artifacts_store: Optional[V1Connection] = Field(alias="artifactsStore")
|
259
260
|
connections: Optional[List[V1Connection]]
|
260
261
|
mount_connections: Optional[List[str]] = Field(alias="mountConnections")
|
@@ -6,11 +6,4 @@ from polyaxon._schemas.base import BaseSchemaModel
|
|
6
6
|
|
7
7
|
|
8
8
|
class IntervalsConfig(BaseSchemaModel):
|
9
|
-
runs_scheduler: Optional[StrictInt] = Field(alias="runsScheduler")
|
10
|
-
operations_default_retry_delay: Optional[StrictInt] = Field(
|
11
|
-
alias="operationsDefaultRetryDelay"
|
12
|
-
)
|
13
|
-
operations_max_retry_delay: Optional[StrictInt] = Field(
|
14
|
-
alias="operationsMaxRetryDelay"
|
15
|
-
)
|
16
9
|
compatibility_check: Optional[StrictInt] = Field(alias="compatibilityCheck")
|
@@ -2,6 +2,7 @@ import copy
|
|
2
2
|
|
3
3
|
from typing import Dict, Iterable, List, Optional
|
4
4
|
|
5
|
+
from clipped.utils.enums import get_enum_value
|
5
6
|
from clipped.utils.sanitizers import sanitize_string_dict
|
6
7
|
from clipped.utils.strings import slugify
|
7
8
|
|
@@ -85,7 +86,7 @@ class BaseConverter(
|
|
85
86
|
"operation.polyaxon.com/name": self.run_name,
|
86
87
|
"operation.polyaxon.com/owner": self.owner_name,
|
87
88
|
"operation.polyaxon.com/project": self.project_name,
|
88
|
-
"operation.polyaxon.com/kind": self.K8S_ANNOTATIONS_KIND,
|
89
|
+
"operation.polyaxon.com/kind": get_enum_value(self.K8S_ANNOTATIONS_KIND),
|
89
90
|
}
|
90
91
|
|
91
92
|
def get_annotations(
|
@@ -58,7 +58,9 @@ class RayJobConverter(RayJobMixin, BaseConverter):
|
|
58
58
|
config=compiled_operation.plugins, auth=default_auth
|
59
59
|
)
|
60
60
|
head = _get_replica(job.head)
|
61
|
-
workers =
|
61
|
+
workers = None
|
62
|
+
if job.workers:
|
63
|
+
workers = {n: _get_replica(w) for n, w in job.workers.items()}
|
62
64
|
labels = self.get_labels(version=pkg.VERSION, labels={})
|
63
65
|
|
64
66
|
return get_ray_job_custom_resource(
|
@@ -68,7 +70,7 @@ class RayJobConverter(RayJobMixin, BaseConverter):
|
|
68
70
|
workers=workers,
|
69
71
|
entrypoint=job.entrypoint,
|
70
72
|
metadata=job.metadata,
|
71
|
-
runtime_env=
|
73
|
+
runtime_env=orjson_dumps(job.runtime_env),
|
72
74
|
ray_version=job.ray_version,
|
73
75
|
termination=compiled_operation.termination,
|
74
76
|
collect_logs=plugins.collect_logs,
|
@@ -46,6 +46,9 @@ def get_dask_replicas_template(
|
|
46
46
|
if liveness_probe and replica.main_container.liveness_probe is None:
|
47
47
|
replica.main_container.liveness_probe = liveness_probe
|
48
48
|
|
49
|
+
labels = {**labels, **replica.labels}
|
50
|
+
annotations = {**annotations, **replica.annotations}
|
51
|
+
|
49
52
|
metadata, pod_spec = get_pod_spec(
|
50
53
|
namespace=namespace,
|
51
54
|
main_container=replica.main_container,
|
@@ -16,6 +16,9 @@ def get_kf_replicas_template(
|
|
16
16
|
if not replica:
|
17
17
|
return
|
18
18
|
|
19
|
+
labels = {**labels, **replica.labels}
|
20
|
+
annotations = {**annotations, **replica.annotations}
|
21
|
+
|
19
22
|
metadata, pod_spec = get_pod_spec(
|
20
23
|
namespace=namespace,
|
21
24
|
main_container=replica.main_container,
|
@@ -26,6 +26,9 @@ def _get_ray_replicas_template(
|
|
26
26
|
if not replica:
|
27
27
|
return
|
28
28
|
|
29
|
+
labels = {**labels, **replica.labels}
|
30
|
+
annotations = {**annotations, **replica.annotations}
|
31
|
+
|
29
32
|
metadata, pod_spec = get_pod_spec(
|
30
33
|
namespace=namespace,
|
31
34
|
main_container=replica.main_container,
|
@@ -46,7 +46,7 @@ def set_notify(custom_object: Dict, notifications: List[V1Notification]) -> Dict
|
|
46
46
|
def set_clean_pod_policy(template_spec: Dict, clean_pod_policy: str) -> Dict:
|
47
47
|
if not clean_pod_policy:
|
48
48
|
# Sets default clean pod policy
|
49
|
-
clean_pod_policy = "
|
49
|
+
clean_pod_policy = "None"
|
50
50
|
|
51
51
|
template_spec["cleanPodPolicy"] = clean_pod_policy.capitalize()
|
52
52
|
return template_spec
|
@@ -121,7 +121,7 @@ async def query_k8s_pod_logs(
|
|
121
121
|
return logs, last_time
|
122
122
|
|
123
123
|
|
124
|
-
async def
|
124
|
+
async def get_op_pods_and_services(
|
125
125
|
k8s_manager: AsyncK8sManager,
|
126
126
|
run_uuid: str,
|
127
127
|
run_kind: str,
|
@@ -138,12 +138,42 @@ async def get_op_pos_and_services(
|
|
138
138
|
return pods, services
|
139
139
|
|
140
140
|
|
141
|
+
async def get_resource_events(
|
142
|
+
k8s_manager: AsyncK8sManager, resource_type: str, resource_name: str
|
143
|
+
):
|
144
|
+
field_selector = (
|
145
|
+
f"involvedObject.kind={resource_type},involvedObject.name={resource_name}"
|
146
|
+
)
|
147
|
+
try:
|
148
|
+
events = await k8s_manager.list_namespaced_events(
|
149
|
+
namespace=namespace, field_selector=field_selector
|
150
|
+
)
|
151
|
+
|
152
|
+
all_events = []
|
153
|
+
for event in events.items:
|
154
|
+
event_data = {
|
155
|
+
"reason": event.reason,
|
156
|
+
"message": event.message,
|
157
|
+
"first_timestamp": event.first_timestamp,
|
158
|
+
"last_timestamp": event.last_timestamp,
|
159
|
+
"count": event.count,
|
160
|
+
"type": event.type,
|
161
|
+
}
|
162
|
+
all_events.append(event_data)
|
163
|
+
|
164
|
+
return all_events
|
165
|
+
|
166
|
+
except client.ApiException as e:
|
167
|
+
print(f"Exception when calling CoreV1Api->list_namespaced_event: {e}")
|
168
|
+
return []
|
169
|
+
|
170
|
+
|
141
171
|
async def get_op_spec(
|
142
172
|
k8s_manager: AsyncK8sManager,
|
143
173
|
run_uuid: str,
|
144
174
|
run_kind: str,
|
145
175
|
):
|
146
|
-
pods, services = await
|
176
|
+
pods, services = await get_op_pods_and_services(
|
147
177
|
k8s_manager=k8s_manager,
|
148
178
|
run_uuid=run_uuid,
|
149
179
|
run_kind=run_kind,
|
@@ -153,11 +183,21 @@ async def get_op_spec(
|
|
153
183
|
pods_list[
|
154
184
|
pod.metadata.name
|
155
185
|
] = k8s_manager.api_client.sanitize_for_serialization(pod)
|
186
|
+
pods_list[pod.metadata.name]["events"] = await get_resource_events(
|
187
|
+
k8s_manager=k8s_manager,
|
188
|
+
resource_type="Pod",
|
189
|
+
resource_name=pod.metadata.name,
|
190
|
+
)
|
156
191
|
services_list = {}
|
157
192
|
for service in services or []:
|
158
193
|
services_list[
|
159
194
|
service.metadata.name
|
160
195
|
] = k8s_manager.api_client.sanitize_for_serialization(service)
|
196
|
+
services_list[service.metadata.name]["events"] = await get_resource_events(
|
197
|
+
k8s_manager=k8s_manager,
|
198
|
+
resource_type="Service",
|
199
|
+
resource_name=service.metadata.name,
|
200
|
+
)
|
161
201
|
data = {"pods": pods_list, "services": services_list}
|
162
202
|
return data, pods, services
|
163
203
|
|
@@ -185,11 +225,21 @@ async def get_agent_spec(
|
|
185
225
|
pods_list[
|
186
226
|
pod.metadata.name
|
187
227
|
] = k8s_manager.api_client.sanitize_for_serialization(pod)
|
228
|
+
pods_list[pod.metadata.name]["events"] = await get_resource_events(
|
229
|
+
k8s_manager=k8s_manager,
|
230
|
+
resource_type="Pod",
|
231
|
+
resource_name=pod.metadata.name,
|
232
|
+
)
|
188
233
|
data = {"pods": pods_list}
|
189
234
|
services_list = {}
|
190
235
|
for service in services or []:
|
191
236
|
services_list[
|
192
237
|
service.metadata.name
|
193
238
|
] = k8s_manager.api_client.sanitize_for_serialization(service)
|
239
|
+
services_list[service.metadata.name]["events"] = await get_resource_events(
|
240
|
+
k8s_manager=k8s_manager,
|
241
|
+
resource_type="Service",
|
242
|
+
resource_name=service.metadata.name,
|
243
|
+
)
|
194
244
|
data["services"] = services_list
|
195
245
|
return data, pods, services
|
@@ -267,3 +267,18 @@ class AsyncK8sManager(BaseK8sManager):
|
|
267
267
|
raise PolyaxonK8sError("Connection error: %s" % e) from e
|
268
268
|
else:
|
269
269
|
logger.debug("Custom object `{}` was not found".format(name))
|
270
|
+
|
271
|
+
async def list_namespaced_events(
|
272
|
+
self,
|
273
|
+
field_selector: str = None,
|
274
|
+
namespace: str = None,
|
275
|
+
reraise: bool = False,
|
276
|
+
**kwargs
|
277
|
+
) -> List[client.CoreV1EventList]:
|
278
|
+
return await self._list_namespace_resource(
|
279
|
+
resource_api=self.k8s_api.list_namespaced_event, # type: ignore[attr-defined]
|
280
|
+
reraise=reraise,
|
281
|
+
namespace=namespace,
|
282
|
+
field_selector=field_selector,
|
283
|
+
**kwargs,
|
284
|
+
)
|
polyaxon/_k8s/manager/manager.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
from typing import Optional
|
1
|
+
from typing import List, Optional
|
2
2
|
|
3
3
|
from kubernetes import client, config
|
4
4
|
from kubernetes.client import Configuration
|
@@ -806,3 +806,18 @@ class K8sManager(BaseK8sManager):
|
|
806
806
|
pod_id, namespace=namespace or self.namespace
|
807
807
|
)
|
808
808
|
return is_pod_running(event, container_id)
|
809
|
+
|
810
|
+
def list_namespaced_events(
|
811
|
+
self,
|
812
|
+
field_selector: str = None,
|
813
|
+
namespace: str = None,
|
814
|
+
reraise: bool = False,
|
815
|
+
**kwargs
|
816
|
+
) -> List[client.CoreV1EventList]:
|
817
|
+
return self._list_namespace_resource(
|
818
|
+
resource_api=self.k8s_api.list_namespaced_event, # type: ignore[attr-defined]
|
819
|
+
reraise=reraise,
|
820
|
+
namespace=namespace,
|
821
|
+
field_selector=field_selector,
|
822
|
+
**kwargs,
|
823
|
+
)
|
polyaxon/_pql/manager.py
CHANGED
@@ -13,7 +13,7 @@ class PQLManager:
|
|
13
13
|
FIELDS_PROXY = {}
|
14
14
|
FIELDS_TRANS = {}
|
15
15
|
FIELDS_ORDERING = None
|
16
|
-
FIELDS_ORDERING_PROXY = None
|
16
|
+
FIELDS_ORDERING_PROXY = None # Do not set a field on both field and proxy
|
17
17
|
FIELDS_DEFAULT_ORDERING = None
|
18
18
|
FIELDS_DISTINCT = None
|
19
19
|
CHECK_ALIVE = True
|
polyaxon/_sdk/api/runs_v1_api.py
CHANGED
@@ -3014,8 +3014,8 @@ class RunsV1Api(BaseApi):
|
|
3014
3014
|
self,
|
3015
3015
|
namespace: Annotated[StrictStr, Field(..., description="namespace")],
|
3016
3016
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
3017
|
-
|
3018
|
-
StrictStr, Field(..., description="
|
3017
|
+
entity: Annotated[
|
3018
|
+
StrictStr, Field(..., description="Entity where the run will be assigned")
|
3019
3019
|
],
|
3020
3020
|
kind: Annotated[str, Field(..., description="The artifact kind")],
|
3021
3021
|
names: Annotated[
|
@@ -3046,15 +3046,15 @@ class RunsV1Api(BaseApi):
|
|
3046
3046
|
This method makes a synchronous HTTP request by default. To make an
|
3047
3047
|
asynchronous HTTP request, please pass async_req=True
|
3048
3048
|
|
3049
|
-
>>> thread = api.get_multi_run_events(namespace, owner,
|
3049
|
+
>>> thread = api.get_multi_run_events(namespace, owner, entity, kind, names, runs, orient, force, sample, connection, status, async_req=True)
|
3050
3050
|
>>> result = thread.get()
|
3051
3051
|
|
3052
3052
|
:param namespace: namespace (required)
|
3053
3053
|
:type namespace: str
|
3054
3054
|
:param owner: Owner of the namespace (required)
|
3055
3055
|
:type owner: str
|
3056
|
-
:param
|
3057
|
-
:type
|
3056
|
+
:param entity: Entity where the run will be assigned (required)
|
3057
|
+
:type entity: str
|
3058
3058
|
:param kind: The artifact kind (required)
|
3059
3059
|
:type kind: str
|
3060
3060
|
:param names: Names query param.
|
@@ -3090,7 +3090,7 @@ class RunsV1Api(BaseApi):
|
|
3090
3090
|
return self.get_multi_run_events_with_http_info(
|
3091
3091
|
namespace,
|
3092
3092
|
owner,
|
3093
|
-
|
3093
|
+
entity,
|
3094
3094
|
kind,
|
3095
3095
|
names,
|
3096
3096
|
runs,
|
@@ -3107,8 +3107,8 @@ class RunsV1Api(BaseApi):
|
|
3107
3107
|
self,
|
3108
3108
|
namespace: Annotated[StrictStr, Field(..., description="namespace")],
|
3109
3109
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
3110
|
-
|
3111
|
-
StrictStr, Field(..., description="
|
3110
|
+
entity: Annotated[
|
3111
|
+
StrictStr, Field(..., description="Entity where the run will be assigned")
|
3112
3112
|
],
|
3113
3113
|
kind: Annotated[str, Field(..., description="The artifact kind")],
|
3114
3114
|
names: Annotated[
|
@@ -3139,15 +3139,15 @@ class RunsV1Api(BaseApi):
|
|
3139
3139
|
This method makes a synchronous HTTP request by default. To make an
|
3140
3140
|
asynchronous HTTP request, please pass async_req=True
|
3141
3141
|
|
3142
|
-
>>> thread = api.get_multi_run_events_with_http_info(namespace, owner,
|
3142
|
+
>>> thread = api.get_multi_run_events_with_http_info(namespace, owner, entity, kind, names, runs, orient, force, sample, connection, status, async_req=True)
|
3143
3143
|
>>> result = thread.get()
|
3144
3144
|
|
3145
3145
|
:param namespace: namespace (required)
|
3146
3146
|
:type namespace: str
|
3147
3147
|
:param owner: Owner of the namespace (required)
|
3148
3148
|
:type owner: str
|
3149
|
-
:param
|
3150
|
-
:type
|
3149
|
+
:param entity: Entity where the run will be assigned (required)
|
3150
|
+
:type entity: str
|
3151
3151
|
:param kind: The artifact kind (required)
|
3152
3152
|
:type kind: str
|
3153
3153
|
:param names: Names query param.
|
@@ -3193,7 +3193,7 @@ class RunsV1Api(BaseApi):
|
|
3193
3193
|
_all_params = [
|
3194
3194
|
"namespace",
|
3195
3195
|
"owner",
|
3196
|
-
"
|
3196
|
+
"entity",
|
3197
3197
|
"kind",
|
3198
3198
|
"names",
|
3199
3199
|
"runs",
|
@@ -3233,8 +3233,8 @@ class RunsV1Api(BaseApi):
|
|
3233
3233
|
_path_params["namespace"] = _params["namespace"]
|
3234
3234
|
if _params["owner"]:
|
3235
3235
|
_path_params["owner"] = _params["owner"]
|
3236
|
-
if _params["
|
3237
|
-
_path_params["
|
3236
|
+
if _params["entity"]:
|
3237
|
+
_path_params["entity"] = _params["entity"]
|
3238
3238
|
if _params["kind"]:
|
3239
3239
|
_path_params["kind"] = _params["kind"]
|
3240
3240
|
|
@@ -3281,7 +3281,7 @@ class RunsV1Api(BaseApi):
|
|
3281
3281
|
}
|
3282
3282
|
|
3283
3283
|
return self.api_client.call_api(
|
3284
|
-
"/streams/v1/{namespace}/{owner}/{
|
3284
|
+
"/streams/v1/{namespace}/{owner}/{entity}/runs/multi/events/{kind}",
|
3285
3285
|
"GET",
|
3286
3286
|
_path_params,
|
3287
3287
|
_query_params,
|
@@ -3304,8 +3304,8 @@ class RunsV1Api(BaseApi):
|
|
3304
3304
|
self,
|
3305
3305
|
namespace: Annotated[StrictStr, Field(..., description="namespace")],
|
3306
3306
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
3307
|
-
|
3308
|
-
StrictStr, Field(..., description="
|
3307
|
+
entity: Annotated[
|
3308
|
+
StrictStr, Field(..., description="Entity where the run will be assigned")
|
3309
3309
|
],
|
3310
3310
|
body: Annotated[Dict[str, Any], Field(..., description="Params/Metrics data")],
|
3311
3311
|
**kwargs
|
@@ -3315,15 +3315,15 @@ class RunsV1Api(BaseApi):
|
|
3315
3315
|
This method makes a synchronous HTTP request by default. To make an
|
3316
3316
|
asynchronous HTTP request, please pass async_req=True
|
3317
3317
|
|
3318
|
-
>>> thread = api.get_multi_run_importance(namespace, owner,
|
3318
|
+
>>> thread = api.get_multi_run_importance(namespace, owner, entity, body, async_req=True)
|
3319
3319
|
>>> result = thread.get()
|
3320
3320
|
|
3321
3321
|
:param namespace: namespace (required)
|
3322
3322
|
:type namespace: str
|
3323
3323
|
:param owner: Owner of the namespace (required)
|
3324
3324
|
:type owner: str
|
3325
|
-
:param
|
3326
|
-
:type
|
3325
|
+
:param entity: Entity where the run will be assigned (required)
|
3326
|
+
:type entity: str
|
3327
3327
|
:param body: Params/Metrics data (required)
|
3328
3328
|
:type body: object
|
3329
3329
|
:param async_req: Whether to execute the request asynchronously.
|
@@ -3343,7 +3343,7 @@ class RunsV1Api(BaseApi):
|
|
3343
3343
|
"""
|
3344
3344
|
kwargs["_return_http_data_only"] = True
|
3345
3345
|
return self.get_multi_run_importance_with_http_info(
|
3346
|
-
namespace, owner,
|
3346
|
+
namespace, owner, entity, body, **kwargs
|
3347
3347
|
) # noqa: E501
|
3348
3348
|
|
3349
3349
|
@validate_arguments
|
@@ -3351,8 +3351,8 @@ class RunsV1Api(BaseApi):
|
|
3351
3351
|
self,
|
3352
3352
|
namespace: Annotated[StrictStr, Field(..., description="namespace")],
|
3353
3353
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
3354
|
-
|
3355
|
-
StrictStr, Field(..., description="
|
3354
|
+
entity: Annotated[
|
3355
|
+
StrictStr, Field(..., description="Entity where the run will be assigned")
|
3356
3356
|
],
|
3357
3357
|
body: Annotated[Dict[str, Any], Field(..., description="Params/Metrics data")],
|
3358
3358
|
**kwargs
|
@@ -3362,15 +3362,15 @@ class RunsV1Api(BaseApi):
|
|
3362
3362
|
This method makes a synchronous HTTP request by default. To make an
|
3363
3363
|
asynchronous HTTP request, please pass async_req=True
|
3364
3364
|
|
3365
|
-
>>> thread = api.get_multi_run_importance_with_http_info(namespace, owner,
|
3365
|
+
>>> thread = api.get_multi_run_importance_with_http_info(namespace, owner, entity, body, async_req=True)
|
3366
3366
|
>>> result = thread.get()
|
3367
3367
|
|
3368
3368
|
:param namespace: namespace (required)
|
3369
3369
|
:type namespace: str
|
3370
3370
|
:param owner: Owner of the namespace (required)
|
3371
3371
|
:type owner: str
|
3372
|
-
:param
|
3373
|
-
:type
|
3372
|
+
:param entity: Entity where the run will be assigned (required)
|
3373
|
+
:type entity: str
|
3374
3374
|
:param body: Params/Metrics data (required)
|
3375
3375
|
:type body: object
|
3376
3376
|
:param async_req: Whether to execute the request asynchronously.
|
@@ -3399,7 +3399,7 @@ class RunsV1Api(BaseApi):
|
|
3399
3399
|
|
3400
3400
|
_params = locals()
|
3401
3401
|
|
3402
|
-
_all_params = ["namespace", "owner", "
|
3402
|
+
_all_params = ["namespace", "owner", "entity", "body"]
|
3403
3403
|
_all_params.extend(
|
3404
3404
|
[
|
3405
3405
|
"async_req",
|
@@ -3432,8 +3432,8 @@ class RunsV1Api(BaseApi):
|
|
3432
3432
|
if _params["owner"]:
|
3433
3433
|
_path_params["owner"] = _params["owner"]
|
3434
3434
|
|
3435
|
-
if _params["
|
3436
|
-
_path_params["
|
3435
|
+
if _params["entity"]:
|
3436
|
+
_path_params["entity"] = _params["entity"]
|
3437
3437
|
|
3438
3438
|
# process the query parameters
|
3439
3439
|
_query_params = []
|
@@ -3471,7 +3471,7 @@ class RunsV1Api(BaseApi):
|
|
3471
3471
|
}
|
3472
3472
|
|
3473
3473
|
return self.api_client.call_api(
|
3474
|
-
"/streams/v1/{namespace}/{owner}/{
|
3474
|
+
"/streams/v1/{namespace}/{owner}/{entity}/runs/multi/importance",
|
3475
3475
|
"POST",
|
3476
3476
|
_path_params,
|
3477
3477
|
_query_params,
|
@@ -6,6 +6,13 @@ from clipped.compact.pydantic import StrictStr
|
|
6
6
|
from clipped.config.schema import BaseAllowSchemaModel
|
7
7
|
from clipped.types.uuids import UUIDStr
|
8
8
|
|
9
|
+
from polyaxon._sdk.schemas.v1_settings_catalog import V1SettingsCatalog
|
10
|
+
|
11
|
+
|
12
|
+
class V1PresetSettings(BaseAllowSchemaModel):
|
13
|
+
projects: Optional[List[V1SettingsCatalog]]
|
14
|
+
runs: Optional[List[V1SettingsCatalog]]
|
15
|
+
|
9
16
|
|
10
17
|
class V1Preset(BaseAllowSchemaModel):
|
11
18
|
uuid: Optional[UUIDStr]
|
@@ -17,3 +24,4 @@ class V1Preset(BaseAllowSchemaModel):
|
|
17
24
|
frozen: Optional[bool]
|
18
25
|
live_state: Optional[int]
|
19
26
|
content: Optional[StrictStr]
|
27
|
+
settings: Optional[V1PresetSettings]
|
polyaxon/_sdk/schemas/v1_user.py
CHANGED
@@ -2,12 +2,11 @@ from typing import Optional
|
|
2
2
|
|
3
3
|
from clipped.compact.pydantic import StrictStr
|
4
4
|
from clipped.config.schema import BaseAllowSchemaModel
|
5
|
-
from clipped.types.email import EmailStr
|
6
5
|
|
7
6
|
|
8
7
|
class V1User(BaseAllowSchemaModel):
|
9
8
|
username: Optional[StrictStr]
|
10
|
-
email: Optional[
|
9
|
+
email: Optional[StrictStr]
|
11
10
|
name: Optional[StrictStr]
|
12
11
|
kind: Optional[StrictStr]
|
13
12
|
theme: Optional[int]
|
polyaxon/pkg.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: polyaxon
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.3.0rc1
|
4
4
|
Summary: Command Line Interface (CLI) and client to interact with Polyaxon API.
|
5
5
|
Home-page: https://github.com/polyaxon/polyaxon
|
6
6
|
Author: Polyaxon, Inc.
|
@@ -36,7 +36,7 @@ License-File: LICENSE
|
|
36
36
|
Requires-Dist: click <9.0.0,>=7.1.1
|
37
37
|
Requires-Dist: clipped ==0.7.*
|
38
38
|
Requires-Dist: vents ==0.4.*
|
39
|
-
Requires-Dist: Jinja2 <3.1.
|
39
|
+
Requires-Dist: Jinja2 <3.1.5,>=2.10.3
|
40
40
|
Requires-Dist: kubernetes >=10.0.1
|
41
41
|
Requires-Dist: python-dateutil >=2.7.3
|
42
42
|
Requires-Dist: pytz >=2019.2
|
@@ -46,7 +46,7 @@ Requires-Dist: psutil >=5.4.7
|
|
46
46
|
Requires-Dist: requests >=2.20.1
|
47
47
|
Requires-Dist: requests-toolbelt >=0.8.0
|
48
48
|
Requires-Dist: rich >=12.0.0
|
49
|
-
Requires-Dist: sentry-sdk <
|
49
|
+
Requires-Dist: sentry-sdk <2.6,>=1.2.0
|
50
50
|
Requires-Dist: urllib3 >=1.25.6
|
51
51
|
Requires-Dist: certifi >=2022.12.7
|
52
52
|
Requires-Dist: pydantic >=1.10.2
|
@@ -59,10 +59,10 @@ Requires-Dist: moto ==2.0.5 ; extra == 'dev'
|
|
59
59
|
Provides-Extra: docker
|
60
60
|
Requires-Dist: docker ; extra == 'docker'
|
61
61
|
Provides-Extra: fs
|
62
|
-
Requires-Dist: adlfs ==2024.4.
|
63
|
-
Requires-Dist: fsspec ==2024.
|
64
|
-
Requires-Dist: gcsfs ==2024.
|
65
|
-
Requires-Dist: s3fs ==2024.
|
62
|
+
Requires-Dist: adlfs ==2024.4.1 ; extra == 'fs'
|
63
|
+
Requires-Dist: fsspec ==2024.6.1 ; extra == 'fs'
|
64
|
+
Requires-Dist: gcsfs ==2024.6.1 ; extra == 'fs'
|
65
|
+
Requires-Dist: s3fs ==2024.6.1 ; extra == 'fs'
|
66
66
|
Provides-Extra: fsspec
|
67
67
|
Requires-Dist: fsspec ; extra == 'fsspec'
|
68
68
|
Provides-Extra: gcs
|
@@ -93,7 +93,7 @@ Requires-Dist: anyio ; extra == 'sidecar'
|
|
93
93
|
[](https://polyaxon.com/slack/)
|
94
94
|
|
95
95
|
[](https://polyaxon.com/docs/)
|
96
|
-
[](https://polyaxon.com/docs/releases/2-1/)
|
97
97
|
[](https://github.com/polyaxon/polyaxon/issues)
|
98
98
|
[](https://github.com/orgs/polyaxon/projects/5)
|
99
99
|
|
@@ -9,7 +9,7 @@ polyaxon/exceptions.py,sha256=ujvG9p1Pn2KHYbHqB3-faadW46dEuULUQXNtfkd2zk8,10236
|
|
9
9
|
polyaxon/fs.py,sha256=RS8XmVrrfXfIJXN6cTCCRRYwesCLHVVfC01Vi56lecs,246
|
10
10
|
polyaxon/k8s.py,sha256=nI5oPCSlqU4aaeVShM6SlYS9eqYiYUL4GDXIZ4bnq-I,1051
|
11
11
|
polyaxon/logger.py,sha256=gdZQms37Pe5G2j-Ear5jbSAJeGgX6fnvg7oE8_9MSlc,2309
|
12
|
-
polyaxon/pkg.py,sha256=
|
12
|
+
polyaxon/pkg.py,sha256=EpPiYvbxI85_k9who2bs3azkLZ4Q_H5ASoU-3WPOGGY,266
|
13
13
|
polyaxon/polyaxonfile.py,sha256=xHmHT_cHomfuAQm82Jhnp71YNN5mQ-Lod7EbonjY4b4,429
|
14
14
|
polyaxon/schemas.py,sha256=-CykY3emoAUCs_zRNbjwkuMkqbaEDjfKsZC86rI8154,5870
|
15
15
|
polyaxon/settings.py,sha256=Pxx1-T2oeJ5XmvGFN0YgnVzum_9FyTPaQtl68aQvYc4,4116
|
@@ -33,12 +33,12 @@ polyaxon/_cli/dashboard.py,sha256=zRrOJMfowM7YQnYXhz_guKsTi-jkoCuVl_g0UTJ37qE,16
|
|
33
33
|
polyaxon/_cli/errors.py,sha256=BYs7-I0CLLNYma-I0eJXB1EHs8ZTs_nWGRKGJz6CzTI,1031
|
34
34
|
polyaxon/_cli/init.py,sha256=lZhkIbaHGv4FdMypdmXhYXRrH5GpM-qcDEks4IsmKIM,7714
|
35
35
|
polyaxon/_cli/models.py,sha256=71oxGrIe4nQORnnfAiNi6T7A0DBnEe3V6whBABBGL3c,18066
|
36
|
-
polyaxon/_cli/operations.py,sha256=
|
36
|
+
polyaxon/_cli/operations.py,sha256=iQTVHkVvUxFCRlaKBLP0xVxuxcb9KJHgTrtNe4Rf8LM,75624
|
37
37
|
polyaxon/_cli/options.py,sha256=-jeMZsdfg0JOV_QzVDf1hAhqK55NI0dkC_x4MZZWty8,1927
|
38
38
|
polyaxon/_cli/port_forward.py,sha256=Lshpcrv7-4tXcriHmppiFW_3QZ7ZosDtUbJDIvdddSA,2733
|
39
39
|
polyaxon/_cli/project_versions.py,sha256=fbgE3tRShrgH8TAA6ETj78J38HG2-BcVoAWbxYS9d5s,20507
|
40
40
|
polyaxon/_cli/projects.py,sha256=RVuTbKtNP_bvw3kRFKaIQBWq0xUwF0BUHK19T87VG5Q,12069
|
41
|
-
polyaxon/_cli/run.py,sha256=
|
41
|
+
polyaxon/_cli/run.py,sha256=3KM_E0iLw8WUe36zeXuwMA5urzGljo6yf4A-DL1uz6k,17737
|
42
42
|
polyaxon/_cli/session.py,sha256=5Plolpxwkv3wiup0pRYBpBPD64dvb4GzeRPz_nuIGRo,6033
|
43
43
|
polyaxon/_cli/utils.py,sha256=jRD1npuD89-0SxtzAx5SE3i4Lvhi8vnfYkmyOMbDxEY,1319
|
44
44
|
polyaxon/_cli/version.py,sha256=bC0T8S6Momr7EvHGV9Swn868x9ZHD7oL8ahQv57yInk,4536
|
@@ -57,7 +57,7 @@ polyaxon/_client/impersonate.py,sha256=4jRoJoX8nkwvVc3zAYqVqPoysNT1kZoPRbwyTpyHG
|
|
57
57
|
polyaxon/_client/init.py,sha256=QECGjzuBTFaagndubzd9U1COpc5NGe-E0aVkSRetcIs,418
|
58
58
|
polyaxon/_client/mixin.py,sha256=-tPm8RBej0UeG9HAKH3qN2fPX8PBtuXAHY1OpwLIDu4,1017
|
59
59
|
polyaxon/_client/project.py,sha256=-vHLae0fMYqOjMscRm0I25Ixj-hS6o9i6XQm5PIxyiA,65520
|
60
|
-
polyaxon/_client/run.py,sha256=
|
60
|
+
polyaxon/_client/run.py,sha256=EyuuEL7-oabgv_AlX0osKT8flY-3eLMGOINgBk93xX4,118810
|
61
61
|
polyaxon/_client/store.py,sha256=-Y33ypkijGQnhHTQ_vCTqLlpk0wRqoaP-ntJhdUtv7E,11311
|
62
62
|
polyaxon/_client/decorators/__init__.py,sha256=e5CBijciLP-Ic-YkaL4tFhUdr--uod_TexvxAJamGZQ,186
|
63
63
|
polyaxon/_client/decorators/client_call_handler.py,sha256=dgdidWsL9e8AgJmOfxz4urkI3bBgX64whWI1WHeAJDU,4587
|
@@ -80,7 +80,7 @@ polyaxon/_compiler/contexts/base.py,sha256=4EVQQlLgxvFORZ27ouBhwcJKhl3vMGXyOVP9H
|
|
80
80
|
polyaxon/_compiler/contexts/contexts.py,sha256=tJy8eL9UrUhjisJ3MdYNmMVERSK_m_fKfgPTQgC-0y4,6535
|
81
81
|
polyaxon/_compiler/contexts/dask_job.py,sha256=GxhLcZtCDWSDfc45UenmKsJ6Fhr0f_GeneaAzLHtncg,1265
|
82
82
|
polyaxon/_compiler/contexts/job.py,sha256=1lkjfMO2eHndmmtxC551K6n6RE5XasqkWBfwNpYy_MA,759
|
83
|
-
polyaxon/_compiler/contexts/ray_job.py,sha256=
|
83
|
+
polyaxon/_compiler/contexts/ray_job.py,sha256=6CFFuX63HhyU0z--GoE3Tv2vENBB1QKGCwuFmEwC2PY,1292
|
84
84
|
polyaxon/_compiler/contexts/service.py,sha256=d4zKB608906CXRZeUeOLgOdro5CEFe9byHWrGyy1ZFw,2150
|
85
85
|
polyaxon/_compiler/contexts/kubeflow/__init__.py,sha256=FnOOO9l-eunvun5kGcTfQ9uO8gLhuHIFuh2_gCHxaLA,488
|
86
86
|
polyaxon/_compiler/contexts/kubeflow/mpi_job.py,sha256=UMf7yJPRWEB9MVYS4Eoa7V6IZEQasU5VU71WdNZQ-2k,1214
|
@@ -122,7 +122,7 @@ polyaxon/_deploy/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,
|
|
122
122
|
polyaxon/_deploy/reader.py,sha256=fYv1aXvaWulqy-mr0jbgnhAIa9oAXzDA3KQVOy3_kCo,220
|
123
123
|
polyaxon/_deploy/operators/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
124
124
|
polyaxon/_deploy/operators/cmd_operator.py,sha256=lXDwLKuayiajzd0PVxxxoLb5qbf9OhYWb4iGm_D9IxU,1746
|
125
|
-
polyaxon/_deploy/operators/compose.py,sha256=
|
125
|
+
polyaxon/_deploy/operators/compose.py,sha256=CmXAk27rqdCAzkEwsz9Tfrg_Va9BhXAUQTfwltO9sNc,6426
|
126
126
|
polyaxon/_deploy/operators/conda.py,sha256=x5PzfziR1rr68lBffqzQuObdqzlKEwpCI7aFWE42LTE,575
|
127
127
|
polyaxon/_deploy/operators/docker.py,sha256=aaaEU3eMqYbcq4YTMf9khgcDyfbNvv3fiaEkbauFglw,1115
|
128
128
|
polyaxon/_deploy/operators/helm.py,sha256=e3aa7Ogdbv0O5wi7dwvwnLXaW776WJzFrVTlqhLZ3gI,779
|
@@ -131,11 +131,11 @@ polyaxon/_deploy/operators/pip.py,sha256=zLJeApCYRo4KkP7PFGrqJZMJpjT2gwTQN2DofIf
|
|
131
131
|
polyaxon/_deploy/schemas/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
132
132
|
polyaxon/_deploy/schemas/auth.py,sha256=xGUexJVGRvLGmWXjyW0pxfft95SPSvZWSIXtS82mdEQ,296
|
133
133
|
polyaxon/_deploy/schemas/celery.py,sha256=ITDLTotzZ_IAZyLoAlUstQzQmq8gHEP3tF39vVYQQag,812
|
134
|
-
polyaxon/_deploy/schemas/deployment.py,sha256=
|
134
|
+
polyaxon/_deploy/schemas/deployment.py,sha256=KQNzHF28Fc4aahzwdicGvEMKIPrw3XmFeNWbs8jV-Ws,12872
|
135
135
|
polyaxon/_deploy/schemas/deployment_types.py,sha256=yLmUxXNlF2glMgzAyNg21KbTD5tnobM7hAl8pyal8Gk,348
|
136
136
|
polyaxon/_deploy/schemas/email.py,sha256=r_NwHFF4MoFHR4RvzFma38zr5tLc_W6oxpZKIEw3LlM,545
|
137
137
|
polyaxon/_deploy/schemas/ingress.py,sha256=MRhjOhTO9FqdQOA_g5SfHiod7eMEF4FjWMyJ4xkdvq0,423
|
138
|
-
polyaxon/_deploy/schemas/intervals.py,sha256
|
138
|
+
polyaxon/_deploy/schemas/intervals.py,sha256=c0fHEvm1JphgGMoqsR-SIGb3ik3b1rCmE1h4Gij5yKU,258
|
139
139
|
polyaxon/_deploy/schemas/operators.py,sha256=KSf3TLWpWFb__0ncKW88WVwL0JRE6lBfATawsmSq6x0,344
|
140
140
|
polyaxon/_deploy/schemas/proxy.py,sha256=hG5F8kzl59bAIZn5djIdsYNpptNsxHxmrH6urkoQ8kM,580
|
141
141
|
polyaxon/_deploy/schemas/rbac.py,sha256=bIHzx5zweJdHAtc9eXkweV4n3J8tuj_lsTrA8ZNIVqQ,145
|
@@ -295,7 +295,7 @@ polyaxon/_k8s/agent/async_agent.py,sha256=ZK7TkAcFLvdyNCYkqEtoCouJMDObfUZs75PLMg
|
|
295
295
|
polyaxon/_k8s/converter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
296
296
|
polyaxon/_k8s/converter/mixins.py,sha256=CMzFQ10BKUqaHxgH1RorkpGn4Sw4fGMRl-9BI6iRcMQ,3162
|
297
297
|
polyaxon/_k8s/converter/base/__init__.py,sha256=7cgnegNqjcXSXumcHu55xRYJrCON1C8F68HOFpfYFGg,60
|
298
|
-
polyaxon/_k8s/converter/base/base.py,sha256=
|
298
|
+
polyaxon/_k8s/converter/base/base.py,sha256=OiXQlvcq9KX9Ai2zCorwxJhlP0zUbLUaTRoc3SPxLOg,8413
|
299
299
|
polyaxon/_k8s/converter/base/containers.py,sha256=EbB_SmI_gDs3n-z1Tz8JZKzPchkpQAKn2ecMLXbyXZI,4170
|
300
300
|
polyaxon/_k8s/converter/base/env_vars.py,sha256=BCHTfV2IZvUBErgBGf2GpkD1ktU7mbbh2_gNi_d6oYQ,11062
|
301
301
|
polyaxon/_k8s/converter/base/init.py,sha256=oecgNGVjRrwSUCf5PhMKp7dnPqFmlhsaska0tHHhun0,20404
|
@@ -310,7 +310,7 @@ polyaxon/_k8s/converter/converters/__init__.py,sha256=jyw6PnVQcG-lfyNbfxomFhh1aa
|
|
310
310
|
polyaxon/_k8s/converter/converters/dask_job.py,sha256=DNlQczpN29AMJzsAy3q6SlpIH9h-kfcp3UMvfRLGJm8,2784
|
311
311
|
polyaxon/_k8s/converter/converters/helpers.py,sha256=LEfPISHptnC_1W-B5lY3D834U0qAr6wsX4x1EafWlk4,661
|
312
312
|
polyaxon/_k8s/converter/converters/job.py,sha256=luYWU9-qkuT5usk42zmd2JkX8thwWHNcqrmngtbHPJ8,2287
|
313
|
-
polyaxon/_k8s/converter/converters/ray_job.py,sha256=
|
313
|
+
polyaxon/_k8s/converter/converters/ray_job.py,sha256=d57kxNxt3VqN5Bu54NKFqH-HHyv0F2Ps74qJTNVNxSk,3264
|
314
314
|
polyaxon/_k8s/converter/converters/service.py,sha256=F2tW2bTlpaX9J47I8nE6up8xwUbdg2dQ_oXqsJdcdu8,2465
|
315
315
|
polyaxon/_k8s/converter/converters/kubeflow/__init__.py,sha256=ZXdpmleFm0ALmJYPlU9JG6ZpsBW6bq6DvF1d9IVoW68,498
|
316
316
|
polyaxon/_k8s/converter/converters/kubeflow/mpi_job.py,sha256=UyLqLBCmjGIWlj6ZiDJqMByzeVWTKp1wBtu4oogfL3w,2731
|
@@ -324,14 +324,14 @@ polyaxon/_k8s/converter/pod/spec.py,sha256=6PtNHxt6H42pAz6MpStReQx6dABPxXVk8Q7AG
|
|
324
324
|
polyaxon/_k8s/converter/pod/volumes.py,sha256=raFuCP7aKCnpIypJ-jJ4Q_CrkewzHsjwPNbsRy-Yuu0,4687
|
325
325
|
polyaxon/_k8s/custom_resources/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
326
326
|
polyaxon/_k8s/custom_resources/crd.py,sha256=BspgH1EfxI0GL9FQWUV-yDjIYT1J8gGBTDFiOge6Dp4,536
|
327
|
-
polyaxon/_k8s/custom_resources/dask_job.py,sha256=
|
327
|
+
polyaxon/_k8s/custom_resources/dask_job.py,sha256=9AHf7zdDSFzNmZsT0MA8pTvdOojYvEoEOqLjyBpvLwg,6263
|
328
328
|
polyaxon/_k8s/custom_resources/job.py,sha256=hTETu_oU90y9CujwflodopZ_HMqi3ajMPsyld63JN80,2093
|
329
329
|
polyaxon/_k8s/custom_resources/operation.py,sha256=qrtxZ6i19N5tZIYKqGRoqCM3dvQg5lSVC1mZMo0Kx3w,625
|
330
|
-
polyaxon/_k8s/custom_resources/ray_job.py,sha256=
|
330
|
+
polyaxon/_k8s/custom_resources/ray_job.py,sha256=_KnMt9U2aOP00IBwCFixo5alT8MM1vpBCUXvQxGyeUs,6310
|
331
331
|
polyaxon/_k8s/custom_resources/service.py,sha256=M_mptT7JR6jmuctfgo87ov7KXRM4_jggJ5nc3zXL7hA,2370
|
332
|
-
polyaxon/_k8s/custom_resources/setter.py,sha256=
|
332
|
+
polyaxon/_k8s/custom_resources/setter.py,sha256=WCbEf7DaijK2U-FNAPAVI7mEefA7rb-KhHYnWPRX6aU,1846
|
333
333
|
polyaxon/_k8s/custom_resources/kubeflow/__init__.py,sha256=oCDo38kAVl7L1ehQTfWX04fZHRTa-V5qYKbef9-jG7k,556
|
334
|
-
polyaxon/_k8s/custom_resources/kubeflow/common.py,sha256=
|
334
|
+
polyaxon/_k8s/custom_resources/kubeflow/common.py,sha256=GaLJe3odjQYTieJzOP_V0jPFFA1beK1a2jtG3sSo1VE,1141
|
335
335
|
polyaxon/_k8s/custom_resources/kubeflow/mpi_job.py,sha256=GwBfAb4LVYvDdHdzBUW2QgCq-_ypEhKyPrkInkaXyZo,2565
|
336
336
|
polyaxon/_k8s/custom_resources/kubeflow/mx_job.py,sha256=FD1pAeWWE1Vfyc1htlYLBGdme2-4K9shLJbO-_U-cz8,3697
|
337
337
|
polyaxon/_k8s/custom_resources/kubeflow/paddle_job.py,sha256=Ad-NAp_B7_tL18qf_gw06TK-rEEJ4fXLGhVB3mFRocw,2636
|
@@ -343,12 +343,12 @@ polyaxon/_k8s/executor/async_executor.py,sha256=5JShP9O0Jv2Czgyab8BkAVxjuPLD5FWV
|
|
343
343
|
polyaxon/_k8s/executor/base.py,sha256=5qD21gfBlAq9KabgMYkExHejs61LtFAUAcnAqsmj3k0,4004
|
344
344
|
polyaxon/_k8s/executor/executor.py,sha256=Qub57Q86SdmBv73CuyFJxydFOIyL0CZKp4B_7aSyLsU,321
|
345
345
|
polyaxon/_k8s/logging/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
346
|
-
polyaxon/_k8s/logging/async_monitor.py,sha256=
|
346
|
+
polyaxon/_k8s/logging/async_monitor.py,sha256=N8hJs-26sBdenkZznYYMgZC9jW79us59jTPoBV0rhIc,7250
|
347
347
|
polyaxon/_k8s/logging/monitor.py,sha256=4-NLN4_y0QVsReNJr8Ekv8kh0XNRRTKiiHopWs4wtMc,3426
|
348
348
|
polyaxon/_k8s/manager/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
349
|
-
polyaxon/_k8s/manager/async_manager.py,sha256=
|
349
|
+
polyaxon/_k8s/manager/async_manager.py,sha256=REeGSH-rP0WvpCQvwE-6ZfELfpVCJBsDkTe1QzPLy3o,9474
|
350
350
|
polyaxon/_k8s/manager/base.py,sha256=d4ZnURFAwo1S63GVvi_57zgiuUVu-EnMuSfRzNLCEpk,2839
|
351
|
-
polyaxon/_k8s/manager/manager.py,sha256=
|
351
|
+
polyaxon/_k8s/manager/manager.py,sha256=o0rCjmDysD8lLP8mjQWPa76SRMKcezhj1IzPP5NkLXc,30624
|
352
352
|
polyaxon/_local_process/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
353
353
|
polyaxon/_local_process/agent.py,sha256=Ph2oZtu3dOONIiuu9wlloSpfPBkXXhV61lbc0cPHC7E,168
|
354
354
|
polyaxon/_local_process/executor.py,sha256=-Ewk1nL5HmC41JZEJh_h--ikDrvzWiZ1CKpCuwe0_eQ,5028
|
@@ -405,7 +405,7 @@ polyaxon/_polyaxonfile/specs/libs/parser.py,sha256=eOLXtUfhGX0MvBk7esNe4Y4a_OnE5
|
|
405
405
|
polyaxon/_polyaxonfile/specs/libs/validator.py,sha256=NZavIn-D43tbChRQz33JW2EuJPWZ5R8brCxCxGFYO68,938
|
406
406
|
polyaxon/_pql/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
407
407
|
polyaxon/_pql/builder.py,sha256=OhQPLJ4pCOgkviY6HcHqji-Q1taZNeSMUjVfgkwCWho,17840
|
408
|
-
polyaxon/_pql/manager.py,sha256=
|
408
|
+
polyaxon/_pql/manager.py,sha256=GkAgPqG3-IynFvYb7Ho56ISaTGvwLdWaA8VbP5Gl2oU,5748
|
409
409
|
polyaxon/_pql/parser.py,sha256=64V7RiTXeS6wCs2W7FtkEUoAv6mbksucukV1dsZDzXY,14242
|
410
410
|
polyaxon/_runner/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
411
411
|
polyaxon/_runner/executor.py,sha256=Ln5fhc3MGk4cOg0VenbiFh80rWR-dj4t3ll7XXR-2v8,8297
|
@@ -469,7 +469,7 @@ polyaxon/_sdk/api/project_dashboards_v1_api.py,sha256=1QpcixpXNOfpLH87s-YNJq5ge9
|
|
469
469
|
polyaxon/_sdk/api/project_searches_v1_api.py,sha256=9MbGcmckzZvf6qV0CSYQ17AvctR0LLQh639r0NXW9QQ,65058
|
470
470
|
polyaxon/_sdk/api/projects_v1_api.py,sha256=x-XU2bB0yWHv2As7djsjGrmLFnFnqY7AgXnZvXu4Rdg,251855
|
471
471
|
polyaxon/_sdk/api/queues_v1_api.py,sha256=nUwo9O6mgrr0i-n1GsF4avnfbQmohWR2vaLkq-uzET0,77083
|
472
|
-
polyaxon/_sdk/api/runs_v1_api.py,sha256=
|
472
|
+
polyaxon/_sdk/api/runs_v1_api.py,sha256=FT8Xd-ngMdjPYOT_r6OnklEw5ZwrHVQFuRAdXhaSJm0,519203
|
473
473
|
polyaxon/_sdk/api/searches_v1_api.py,sha256=7cEdH1PRBb1AGmjJjqZWddt6nPX__880bXurLxl3LXQ,53284
|
474
474
|
polyaxon/_sdk/api/service_accounts_v1_api.py,sha256=WGWbb3mBoajF_EXclg6ffxHXVse3p3Wgc6_uTlxOHoc,101005
|
475
475
|
polyaxon/_sdk/api/tags_v1_api.py,sha256=F5PBCRTK6RhP_XaX0s2o2Byt-aYtpKoHkSTgJTL8GPs,59912
|
@@ -525,7 +525,7 @@ polyaxon/_sdk/schemas/v1_organization.py,sha256=n535i5c6X-TYEO1gbi3LXxwUeJLTxrHn
|
|
525
525
|
polyaxon/_sdk/schemas/v1_organization_member.py,sha256=ww8icQ-Z4E09fhoMLT7oxtAWkufQ6R7eDxCjr3n6vZw,454
|
526
526
|
polyaxon/_sdk/schemas/v1_password_change.py,sha256=gKqrwN-f4beEJGFOnrpsWuw2tRUYWRcQeSD3hrzZ5eQ,295
|
527
527
|
polyaxon/_sdk/schemas/v1_pipeline.py,sha256=hPhg5Bwz6oacOjDvYgBhjP_Vk3lR0N9BH1eevrqnrB8,349
|
528
|
-
polyaxon/_sdk/schemas/v1_preset.py,sha256=
|
528
|
+
polyaxon/_sdk/schemas/v1_preset.py,sha256=bwnD6Mk0W2PB5Ksh_Z0UyVOThnPI60Bjbvl2WZllElU,797
|
529
529
|
polyaxon/_sdk/schemas/v1_project.py,sha256=SopG7_j_zACdW9lLa0zOAPP5brkyoLPEGunhx-mEv_E,951
|
530
530
|
polyaxon/_sdk/schemas/v1_project_settings.py,sha256=5ITp9NZRbewyrXf2Mcy9zOue7_51-mbAp9ObZEH7Pl0,669
|
531
531
|
polyaxon/_sdk/schemas/v1_project_version.py,sha256=Ql7sgYaFuGSH1RpO5dA10aLz2aifwFN88-tl6JVA9_Y,1067
|
@@ -548,7 +548,7 @@ polyaxon/_sdk/schemas/v1_team_member.py,sha256=Sfj3-GH6iwf5auTbj9u3Uy6NGgYY5HP9n
|
|
548
548
|
polyaxon/_sdk/schemas/v1_team_settings.py,sha256=bfWhOItuTCOnQQ15jkaYQWH4kwBKJI8QkwKj4vJ9xnw,301
|
549
549
|
polyaxon/_sdk/schemas/v1_token.py,sha256=g2g2bfPtgBcZskfou-RO5sfDP9FqEoXYBgxoOkIhjC8,604
|
550
550
|
polyaxon/_sdk/schemas/v1_trial_start.py,sha256=h1Ut9R529Vsfug8HRtDEdjWlmTEWAPOsvbxavJAb4hQ,418
|
551
|
-
polyaxon/_sdk/schemas/v1_user.py,sha256=
|
551
|
+
polyaxon/_sdk/schemas/v1_user.py,sha256=HmbtjJavgA7GkSQIPN2xqFG2hNFEj5zjf1xg0m8dpuk,357
|
552
552
|
polyaxon/_sdk/schemas/v1_user_access.py,sha256=TwFqN1RFBhvE8JDopjikChQV0OQewuVLYoNR_J0fDaE,303
|
553
553
|
polyaxon/_sdk/schemas/v1_user_email.py,sha256=BpMbTfccBdFr_s5i2KO_d_6MXRz_lcY94WTHdmZ1AdA,198
|
554
554
|
polyaxon/_sdk/schemas/v1_user_singup.py,sha256=eqG5Uic8CBHtnDRh7LWf-hO6K6M2pFPXQhYOb6-K1pk,392
|
@@ -611,9 +611,9 @@ polyaxon/tuners/hyperopt.py,sha256=zd6MblMGkooqLGDFJVo5kClqYnBoMwGj-opqqj8FDzQ,7
|
|
611
611
|
polyaxon/tuners/mapping.py,sha256=pOdHCiwEufTk-QT7pNyjBjAEWNTM-lMC17WNTCk7C24,69
|
612
612
|
polyaxon/tuners/random_search.py,sha256=6VEekM3N9h6E1lbpVTTUGKFPJlGMY2u-GkG615_nQcI,80
|
613
613
|
polyaxon_sdk/__init__.py,sha256=HWvFdGWESyVG3f26K_szewiG-McMOHFkXKTfZcBlHsM,92
|
614
|
-
polyaxon-2.
|
615
|
-
polyaxon-2.
|
616
|
-
polyaxon-2.
|
617
|
-
polyaxon-2.
|
618
|
-
polyaxon-2.
|
619
|
-
polyaxon-2.
|
614
|
+
polyaxon-2.3.0rc1.dist-info/LICENSE,sha256=86kroZbQUDsmSWOomB7dpceG65UXiVSPob4581tStBc,11349
|
615
|
+
polyaxon-2.3.0rc1.dist-info/METADATA,sha256=bKKtzoP-Nk78Iiq0Dmmzj_e-a1sTdf2skooaeBsy7js,11711
|
616
|
+
polyaxon-2.3.0rc1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
617
|
+
polyaxon-2.3.0rc1.dist-info/entry_points.txt,sha256=aFbUMjkg9vzRBVAFhqvR1m92yG8Cov7UAF0zViGfoQw,70
|
618
|
+
polyaxon-2.3.0rc1.dist-info/top_level.txt,sha256=I_2e_Vv8rdcqWcMMdZocbrHiKPNGqoSMBqIObrw00Rg,22
|
619
|
+
polyaxon-2.3.0rc1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|