skypilot-nightly 1.0.0.dev20250318__py3-none-any.whl → 1.0.0.dev20250319__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.
- sky/__init__.py +2 -2
- sky/execution.py +6 -1
- sky/optimizer.py +8 -4
- sky/provision/kubernetes/utils.py +11 -3
- sky/server/requests/executor.py +33 -19
- sky/server/server.py +4 -1
- sky/utils/subprocess_utils.py +47 -25
- {skypilot_nightly-1.0.0.dev20250318.dist-info → skypilot_nightly-1.0.0.dev20250319.dist-info}/METADATA +1 -1
- {skypilot_nightly-1.0.0.dev20250318.dist-info → skypilot_nightly-1.0.0.dev20250319.dist-info}/RECORD +13 -13
- {skypilot_nightly-1.0.0.dev20250318.dist-info → skypilot_nightly-1.0.0.dev20250319.dist-info}/LICENSE +0 -0
- {skypilot_nightly-1.0.0.dev20250318.dist-info → skypilot_nightly-1.0.0.dev20250319.dist-info}/WHEEL +0 -0
- {skypilot_nightly-1.0.0.dev20250318.dist-info → skypilot_nightly-1.0.0.dev20250319.dist-info}/entry_points.txt +0 -0
- {skypilot_nightly-1.0.0.dev20250318.dist-info → skypilot_nightly-1.0.0.dev20250319.dist-info}/top_level.txt +0 -0
sky/__init__.py
CHANGED
@@ -5,7 +5,7 @@ from typing import Optional
|
|
5
5
|
import urllib.request
|
6
6
|
|
7
7
|
# Replaced with the current commit when building the wheels.
|
8
|
-
_SKYPILOT_COMMIT_SHA = '
|
8
|
+
_SKYPILOT_COMMIT_SHA = '246e69ba16705c31b69143bfe76efcee17b6407f'
|
9
9
|
|
10
10
|
|
11
11
|
def _get_git_commit():
|
@@ -35,7 +35,7 @@ def _get_git_commit():
|
|
35
35
|
|
36
36
|
|
37
37
|
__commit__ = _get_git_commit()
|
38
|
-
__version__ = '1.0.0.
|
38
|
+
__version__ = '1.0.0.dev20250319'
|
39
39
|
__root_dir__ = os.path.dirname(os.path.abspath(__file__))
|
40
40
|
|
41
41
|
|
sky/execution.py
CHANGED
@@ -529,6 +529,11 @@ def launch(
|
|
529
529
|
]
|
530
530
|
skip_unnecessary_provisioning = True
|
531
531
|
|
532
|
+
# Attach to setup if the cluster is a controller, so that user can
|
533
|
+
# see the setup logs when inspecting the launch process to know
|
534
|
+
# excatly what the job is waiting for.
|
535
|
+
detach_setup = controller_utils.Controllers.from_name(cluster_name) is None
|
536
|
+
|
532
537
|
return _execute(
|
533
538
|
entrypoint=entrypoint,
|
534
539
|
dryrun=dryrun,
|
@@ -540,7 +545,7 @@ def launch(
|
|
540
545
|
optimize_target=optimize_target,
|
541
546
|
stages=stages,
|
542
547
|
cluster_name=cluster_name,
|
543
|
-
detach_setup=
|
548
|
+
detach_setup=detach_setup,
|
544
549
|
detach_run=True,
|
545
550
|
idle_minutes_to_autostop=idle_minutes_to_autostop,
|
546
551
|
no_setup=no_setup,
|
sky/optimizer.py
CHANGED
@@ -1328,13 +1328,17 @@ def _fill_in_launchable_resources(
|
|
1328
1328
|
f'{colorama.Style.RESET_ALL}')
|
1329
1329
|
else:
|
1330
1330
|
if resources.cpus is not None:
|
1331
|
-
logger.info('
|
1331
|
+
logger.info(f'{colorama.Fore.LIGHTBLACK_EX}'
|
1332
|
+
'- Try specifying a different CPU count, '
|
1332
1333
|
'or add "+" to the end of the CPU count '
|
1333
|
-
'to allow for larger instances.'
|
1334
|
+
'to allow for larger instances.'
|
1335
|
+
f'{colorama.Style.RESET_ALL}')
|
1334
1336
|
if resources.memory is not None:
|
1335
|
-
logger.info('
|
1337
|
+
logger.info(f'{colorama.Fore.LIGHTBLACK_EX}'
|
1338
|
+
'- Try specifying a different memory size, '
|
1336
1339
|
'or add "+" to the end of the memory size '
|
1337
|
-
'to allow for larger instances.'
|
1340
|
+
'to allow for larger instances.'
|
1341
|
+
f'{colorama.Style.RESET_ALL}')
|
1338
1342
|
for cloud, hint in hints.items():
|
1339
1343
|
logger.info(f'{repr(cloud)}: {hint}')
|
1340
1344
|
|
@@ -97,6 +97,7 @@ GKE_TPU_ACCELERATOR_TO_GENERATION = {
|
|
97
97
|
# Multi-host compatible v5e TPU configurations allowed.
|
98
98
|
'tpu-v5-lite-podslice': 'v5e',
|
99
99
|
'tpu-v5p-slice': 'v5p',
|
100
|
+
'tpu-v6e-slice': 'v6e',
|
100
101
|
}
|
101
102
|
|
102
103
|
POD_STATUSES = {
|
@@ -359,7 +360,8 @@ class GKELabelFormatter(GPULabelFormatter):
|
|
359
360
|
# label to use in an autoscaling environment. For list of topologies, see:
|
360
361
|
# tpu v5e: https://cloud.google.com/tpu/docs/tpus-in-gke
|
361
362
|
# tpu v5p: https://cloud.google.com/tpu/docs/v5p
|
362
|
-
#
|
363
|
+
# tpu v6e: https://cloud.google.com/tpu/docs/v6e
|
364
|
+
# TODO(romilb): Add support for TPU v4.
|
363
365
|
GKE_TPU_TOPOLOGIES = {
|
364
366
|
'tpu-v5-lite-podslice': {
|
365
367
|
1: '1x1',
|
@@ -374,6 +376,11 @@ class GKELabelFormatter(GPULabelFormatter):
|
|
374
376
|
'tpu-v5p-slice': {
|
375
377
|
4: '2x2x1'
|
376
378
|
},
|
379
|
+
'tpu-v6e-slice': {
|
380
|
+
1: '1x1',
|
381
|
+
4: '2x2',
|
382
|
+
8: '2x4'
|
383
|
+
}
|
377
384
|
}
|
378
385
|
|
379
386
|
@classmethod
|
@@ -602,6 +609,7 @@ class GKEAutoscaler(Autoscaler):
|
|
602
609
|
_pip_install_gcp_hint_last_sent = 0.0
|
603
610
|
|
604
611
|
@classmethod
|
612
|
+
@annotations.lru_cache(scope='request', maxsize=10)
|
605
613
|
def can_create_new_instance_of_type(cls, context: str,
|
606
614
|
instance_type: str) -> bool:
|
607
615
|
"""Looks at each node pool in the cluster and checks if
|
@@ -784,6 +792,7 @@ class GKEAutoscaler(Autoscaler):
|
|
784
792
|
"""Check if the node pool has enough TPU capacity
|
785
793
|
to fit the instance type.
|
786
794
|
"""
|
795
|
+
|
787
796
|
if 'goog-gke-tpu-node-pool-type' not in node_pool_resource_labels:
|
788
797
|
# This node does not have TPUs.
|
789
798
|
return False
|
@@ -807,12 +816,11 @@ class GKEAutoscaler(Autoscaler):
|
|
807
816
|
# according to
|
808
817
|
# https://cloud.google.com/kubernetes-engine/docs/concepts/tpus#machine_type
|
809
818
|
# GKE TPU machine types have the format of
|
810
|
-
# ct<version
|
819
|
+
# ct<version>-<type>-<node-chip-count>t
|
811
820
|
logger.debug(
|
812
821
|
f'inferring TPU chip count from machine type: {machine_type}')
|
813
822
|
if (len(machine_type_parts) != 3 or
|
814
823
|
not machine_type_parts[0].startswith('ct') or
|
815
|
-
machine_type_parts[1] != 'hightpu' or
|
816
824
|
not machine_type_parts[2].endswith('t') or
|
817
825
|
not machine_type_parts[2].strip('t').isdigit()):
|
818
826
|
logger.debug(f'machine type {machine_type} is not a '
|
sky/server/requests/executor.py
CHANGED
@@ -49,7 +49,6 @@ from sky.utils import annotations
|
|
49
49
|
from sky.utils import common_utils
|
50
50
|
from sky.utils import subprocess_utils
|
51
51
|
from sky.utils import timeline
|
52
|
-
from sky.utils import ux_utils
|
53
52
|
|
54
53
|
if typing.TYPE_CHECKING:
|
55
54
|
import types
|
@@ -221,6 +220,10 @@ def _restore_output(original_stdout: int, original_stderr: int) -> None:
|
|
221
220
|
os.close(original_stderr)
|
222
221
|
|
223
222
|
|
223
|
+
def _sigterm_handler(signum: int, frame: Optional['types.FrameType']) -> None:
|
224
|
+
raise KeyboardInterrupt
|
225
|
+
|
226
|
+
|
224
227
|
def _request_execution_wrapper(request_id: str,
|
225
228
|
ignore_return_value: bool) -> None:
|
226
229
|
"""Wrapper for a request execution.
|
@@ -232,12 +235,8 @@ def _request_execution_wrapper(request_id: str,
|
|
232
235
|
3. Redirect the stdout and stderr of the execution to log file;
|
233
236
|
4. Handle the SIGTERM signal to abort the request gracefully.
|
234
237
|
"""
|
235
|
-
|
236
|
-
|
237
|
-
frame: Optional['types.FrameType']) -> None:
|
238
|
-
raise KeyboardInterrupt
|
239
|
-
|
240
|
-
signal.signal(signal.SIGTERM, sigterm_handler)
|
238
|
+
# Handle the SIGTERM signal to abort the request processing gracefully.
|
239
|
+
signal.signal(signal.SIGTERM, _sigterm_handler)
|
241
240
|
|
242
241
|
pid = multiprocessing.current_process().pid
|
243
242
|
logger.info(f'Running request {request_id} with pid {pid}')
|
@@ -355,6 +354,8 @@ def request_worker(worker: RequestWorker, max_parallel_size: int) -> None:
|
|
355
354
|
Args:
|
356
355
|
max_parallel_size: Maximum number of parallel jobs this worker can run.
|
357
356
|
"""
|
357
|
+
# Handle the SIGTERM signal to abort the executor process gracefully.
|
358
|
+
signal.signal(signal.SIGTERM, _sigterm_handler)
|
358
359
|
proc_group = f'{worker.schedule_type.value}-{worker.id}'
|
359
360
|
setproctitle.setproctitle(f'SkyPilot:worker:{proc_group}')
|
360
361
|
queue = _get_queue(worker.schedule_type)
|
@@ -388,19 +389,11 @@ def request_worker(worker: RequestWorker, max_parallel_size: int) -> None:
|
|
388
389
|
logger.info(f'[{worker}] Finished request: {request_id}')
|
389
390
|
else:
|
390
391
|
logger.info(f'[{worker}] Submitted request: {request_id}')
|
391
|
-
except KeyboardInterrupt:
|
392
|
-
# Interrupt the worker process will stop request execution, but
|
393
|
-
# the SIGTERM request should be respected anyway since it might
|
394
|
-
# be explicitly sent by user.
|
395
|
-
# TODO(aylei): crash the API server or recreate the worker process
|
396
|
-
# to avoid broken state.
|
397
|
-
logger.error(f'[{worker}] Worker process interrupted')
|
398
|
-
with ux_utils.print_exception_no_traceback():
|
399
|
-
raise
|
400
392
|
except (Exception, SystemExit) as e: # pylint: disable=broad-except
|
401
393
|
# Catch any other exceptions to avoid crashing the worker process.
|
402
394
|
logger.error(
|
403
|
-
f'[{worker}] Error processing request
|
395
|
+
f'[{worker}] Error processing request: '
|
396
|
+
f'{request_id if "request_id" in locals() else ""} '
|
404
397
|
f'{common_utils.format_exception(e, use_bracket=True)}')
|
405
398
|
|
406
399
|
# Use concurrent.futures.ProcessPoolExecutor instead of multiprocessing.Pool
|
@@ -409,12 +402,33 @@ def request_worker(worker: RequestWorker, max_parallel_size: int) -> None:
|
|
409
402
|
# We use executor instead of individual multiprocessing.Process to avoid
|
410
403
|
# the overhead of forking a new process for each request, which can be about
|
411
404
|
# 1s delay.
|
412
|
-
|
405
|
+
try:
|
406
|
+
executor = concurrent.futures.ProcessPoolExecutor(
|
413
407
|
max_workers=max_parallel_size,
|
414
408
|
initializer=executor_initializer,
|
415
|
-
initargs=(proc_group,))
|
409
|
+
initargs=(proc_group,))
|
416
410
|
while True:
|
417
411
|
process_request(executor)
|
412
|
+
# TODO(aylei): better to distinct between KeyboardInterrupt and SIGTERM.
|
413
|
+
except KeyboardInterrupt:
|
414
|
+
pass
|
415
|
+
finally:
|
416
|
+
# In most cases, here we receive either ctrl-c in foreground execution
|
417
|
+
# or SIGTERM on server exiting. Gracefully exit the worker process and
|
418
|
+
# the executor.
|
419
|
+
# TODO(aylei): worker may also be killed by system daemons like OOM
|
420
|
+
# killer, crash the API server or recreate the worker process to avoid
|
421
|
+
# broken state in such cases.
|
422
|
+
logger.info(f'[{worker}] Worker process interrupted')
|
423
|
+
executor_processes = list(executor._processes.values()) # pylint: disable=protected-access,line-too-long
|
424
|
+
# Shutdown the executor so that executor process can exit once the
|
425
|
+
# running task is finished or interrupted.
|
426
|
+
executor.shutdown(wait=False)
|
427
|
+
# Proactively interrupt the running task to avoid indefinite waiting.
|
428
|
+
subprocess_utils.run_in_parallel(
|
429
|
+
subprocess_utils.kill_process_with_grace_period,
|
430
|
+
executor_processes,
|
431
|
+
num_threads=len(executor_processes))
|
418
432
|
|
419
433
|
|
420
434
|
def start(deploy: bool) -> List[multiprocessing.Process]:
|
sky/server/server.py
CHANGED
@@ -1140,6 +1140,9 @@ if __name__ == '__main__':
|
|
1140
1140
|
# The process may not be started yet, close it anyway.
|
1141
1141
|
proc.close()
|
1142
1142
|
|
1143
|
+
# Terminate processes in reverse order in case dependency, especially
|
1144
|
+
# queue server. Terminate queue server first does not affect the
|
1145
|
+
# correctness of cleanup but introduce redundant error messages.
|
1143
1146
|
subprocess_utils.run_in_parallel(cleanup,
|
1144
|
-
sub_procs,
|
1147
|
+
list(reversed(sub_procs)),
|
1145
1148
|
num_threads=len(sub_procs))
|
sky/utils/subprocess_utils.py
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
"""Utility functions for subprocesses."""
|
2
|
+
import multiprocessing
|
2
3
|
from multiprocessing import pool
|
3
4
|
import os
|
4
5
|
import random
|
@@ -181,29 +182,6 @@ def kill_children_processes(parent_pids: Optional[Union[
|
|
181
182
|
if isinstance(parent_pids, int):
|
182
183
|
parent_pids = [parent_pids]
|
183
184
|
|
184
|
-
def kill(proc: psutil.Process):
|
185
|
-
if not proc.is_running():
|
186
|
-
# Skip if the process is not running.
|
187
|
-
return
|
188
|
-
logger.debug(f'Killing process {proc.pid}')
|
189
|
-
try:
|
190
|
-
if force:
|
191
|
-
proc.kill()
|
192
|
-
else:
|
193
|
-
proc.terminate()
|
194
|
-
proc.wait(timeout=10)
|
195
|
-
except psutil.NoSuchProcess:
|
196
|
-
# The child process may have already been terminated.
|
197
|
-
pass
|
198
|
-
except psutil.TimeoutExpired:
|
199
|
-
logger.debug(
|
200
|
-
f'Process {proc.pid} did not terminate after 10 seconds')
|
201
|
-
# Attempt to force kill if the normal termination fails
|
202
|
-
if not force:
|
203
|
-
logger.debug(f'Force killing process {proc.pid}')
|
204
|
-
proc.kill()
|
205
|
-
proc.wait(timeout=5) # Shorter timeout after force kill
|
206
|
-
|
207
185
|
parent_processes = []
|
208
186
|
if parent_pids is None:
|
209
187
|
parent_processes = [psutil.Process()]
|
@@ -218,10 +196,54 @@ def kill_children_processes(parent_pids: Optional[Union[
|
|
218
196
|
for parent_process in parent_processes:
|
219
197
|
child_processes = parent_process.children(recursive=True)
|
220
198
|
if parent_pids is not None:
|
221
|
-
|
199
|
+
kill_process_with_grace_period(parent_process, force=force)
|
222
200
|
logger.debug(f'Killing child processes: {child_processes}')
|
223
201
|
for child in child_processes:
|
224
|
-
|
202
|
+
kill_process_with_grace_period(child, force=force)
|
203
|
+
|
204
|
+
|
205
|
+
def kill_process_with_grace_period(proc: Union[multiprocessing.Process,
|
206
|
+
psutil.Process],
|
207
|
+
force: bool = False,
|
208
|
+
grace_period: int = 10) -> None:
|
209
|
+
"""Kill a process with SIGTERM and wait for it to exit.
|
210
|
+
|
211
|
+
Args:
|
212
|
+
proc: The process to kill, either a multiprocessing.Process or a
|
213
|
+
psutil.Process.
|
214
|
+
force: Whether to force kill the process.
|
215
|
+
grace_period: The grace period seconds to wait for the process to exit.
|
216
|
+
"""
|
217
|
+
if isinstance(proc, psutil.Process):
|
218
|
+
alive = proc.is_running
|
219
|
+
wait = proc.wait
|
220
|
+
else:
|
221
|
+
alive = proc.is_alive
|
222
|
+
wait = proc.join
|
223
|
+
if not alive():
|
224
|
+
# Skip if the process is not running.
|
225
|
+
return
|
226
|
+
logger.debug(f'Killing process {proc.pid}')
|
227
|
+
try:
|
228
|
+
if force:
|
229
|
+
proc.kill()
|
230
|
+
else:
|
231
|
+
proc.terminate()
|
232
|
+
wait(timeout=grace_period)
|
233
|
+
except (psutil.NoSuchProcess, ValueError):
|
234
|
+
# The child process may have already been terminated.
|
235
|
+
return
|
236
|
+
except psutil.TimeoutExpired:
|
237
|
+
# Pass to finally to force kill the process.
|
238
|
+
pass
|
239
|
+
finally:
|
240
|
+
logger.debug(f'Process {proc.pid} did not terminate after '
|
241
|
+
f'{grace_period} seconds')
|
242
|
+
# Attempt to force kill if the normal termination fails
|
243
|
+
if not force:
|
244
|
+
logger.debug(f'Force killing process {proc.pid}')
|
245
|
+
# Shorter timeout after force kill
|
246
|
+
kill_process_with_grace_period(proc, force=True, grace_period=5)
|
225
247
|
|
226
248
|
|
227
249
|
def run_with_retries(
|
{skypilot_nightly-1.0.0.dev20250318.dist-info → skypilot_nightly-1.0.0.dev20250319.dist-info}/RECORD
RENAMED
@@ -1,4 +1,4 @@
|
|
1
|
-
sky/__init__.py,sha256=
|
1
|
+
sky/__init__.py,sha256=3eIvmaqr9j7Q14zbXB6K1AYrtAYYBeSZaufG8cPHilk,6428
|
2
2
|
sky/admin_policy.py,sha256=hPo02f_A32gCqhUueF0QYy1fMSSKqRwYEg_9FxScN_s,3248
|
3
3
|
sky/authentication.py,sha256=hCEqi77nprQEg3ktfRL51xiiw16zwZOmFEDB_Z7fWVU,22384
|
4
4
|
sky/check.py,sha256=NDKx_Zm7YRxPjMv82wz3ESLnGIPljaACyqVdVNM0PzY,11258
|
@@ -7,10 +7,10 @@ sky/cloud_stores.py,sha256=kEHXd2divyra-1c3EusHxKyM5yTQlTXc6cKVXofsefA,23978
|
|
7
7
|
sky/core.py,sha256=MU9hcTdh8baMGrr2ZXmbxx12vNlhajrkeyg5QtV717c,47609
|
8
8
|
sky/dag.py,sha256=Yl7Ry26Vql5cv4YMz8g9kOUgtoCihJnw7c8NgZYakMY,3242
|
9
9
|
sky/exceptions.py,sha256=cEZ5nm7RhTW22Npw-oYS5Wp9rtxoHxdPQHfkNa92wOo,16641
|
10
|
-
sky/execution.py,sha256=
|
10
|
+
sky/execution.py,sha256=9L8NFOXNphtabnsL7mHGPJeGdw4n6gIIUEOzjW7CEHw,28294
|
11
11
|
sky/global_user_state.py,sha256=sUDdSsJeiJkbgmZNwy8YGFK0XeNh-RBr1VDUvbmjf0g,33246
|
12
12
|
sky/models.py,sha256=4xSW05BdDPEjW8Ubvj3VlVOVnzv0TbrolsFvR5R5v1U,638
|
13
|
-
sky/optimizer.py,sha256=
|
13
|
+
sky/optimizer.py,sha256=7FeTo0Bk4M7OnXugv-YdCj50PTL2R7NVGHMsr7DWBJ0,60457
|
14
14
|
sky/resources.py,sha256=f2Qo_Wt0kFruKmYm6cgYbICH_wn0Zkb8uIv6LA82SRs,72153
|
15
15
|
sky/sky_logging.py,sha256=pID2RINjH62n7SZpv70DuN8BSFYdCfTJ2ScGQpVmugg,5725
|
16
16
|
sky/skypilot_config.py,sha256=bt1vSis2aKKdQfPz80-KcjM9vNIg_qYKLNXur782Poo,8693
|
@@ -165,7 +165,7 @@ sky/provision/kubernetes/constants.py,sha256=dZCUV8FOO9Gct80sdqeubKnxeW3CGl-u5mx
|
|
165
165
|
sky/provision/kubernetes/instance.py,sha256=oag17OtuiqU-1RjkgW9NvEpxSGUFIYdI7M61S-YmPu8,50503
|
166
166
|
sky/provision/kubernetes/network.py,sha256=AtcOM8wPs_-UlQJhGEQGP6Lh4HIgdx63Y0iWEhP5jyc,12673
|
167
167
|
sky/provision/kubernetes/network_utils.py,sha256=Bwy5ZQb62ejC7ZHM4htjzhs86UNACK7AXN-NfQ9IJrE,11454
|
168
|
-
sky/provision/kubernetes/utils.py,sha256=
|
168
|
+
sky/provision/kubernetes/utils.py,sha256=puwjlWM4EMExa1jO0cxluzg8ZSF-QX4rgZGksZdxKiQ,124015
|
169
169
|
sky/provision/kubernetes/manifests/smarter-device-manager-configmap.yaml,sha256=AMzYzlY0JIlfBWj5eX054Rc1XDW2thUcLSOGMJVhIdA,229
|
170
170
|
sky/provision/kubernetes/manifests/smarter-device-manager-daemonset.yaml,sha256=RtTq4F1QUmR2Uunb6zuuRaPhV7hpesz4saHjn3Ncsb4,2010
|
171
171
|
sky/provision/lambda_cloud/__init__.py,sha256=6EEvSgtUeEiup9ivIFevHmgv0GqleroO2X0K7TRa2nE,612
|
@@ -230,13 +230,13 @@ sky/serve/server/server.py,sha256=gQGVU9nHYdGbaLhGjIUNIYn4xwKjRASRJkiiTL5AI1Y,32
|
|
230
230
|
sky/server/__init__.py,sha256=MPPBqFzXz6Jv5QSk6td_IcvnfXfNErDZVcizu4MLRow,27
|
231
231
|
sky/server/common.py,sha256=PMPaKoPtoUGolbdSW78VetUW5H0X7YKBT-z6Hbu3BJM,18471
|
232
232
|
sky/server/constants.py,sha256=_ZNrxYh8vmgbf3DmkGDduxjvO2y43ZSPTkH5rCNsVjU,770
|
233
|
-
sky/server/server.py,sha256=
|
233
|
+
sky/server/server.py,sha256=62IysoY5jCbGi99xIsYrINFIuRgo-cKKIR8fXsKMuW0,44472
|
234
234
|
sky/server/stream_utils.py,sha256=4JMHgtoXPpCT8JwtqyUcDQ9IdZFir9om0JaCRr8rvbQ,5849
|
235
235
|
sky/server/uvicorn.py,sha256=wajwPHJ3IEEP3GMNOCc0S81-1v2qT5F-ejUkLFVhUzk,2953
|
236
236
|
sky/server/html/log.html,sha256=TSGZktua9Ysl_ysg3w60rjxAxhH61AJnsYDHdtqrjmI,6929
|
237
237
|
sky/server/requests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
238
238
|
sky/server/requests/event_loop.py,sha256=OhpPbuce65bbjpGRlcJa78AVnYSm08SzFKt70ypCUuQ,1211
|
239
|
-
sky/server/requests/executor.py,sha256=
|
239
|
+
sky/server/requests/executor.py,sha256=BNJqkTQ3swYeRO5YVW-dTmobL2CYnDDf_m-kY7__n40,21684
|
240
240
|
sky/server/requests/payloads.py,sha256=nVb7vr1SNAq6ay2dNe9301zLHp7NrM79M7nsWAECBms,16340
|
241
241
|
sky/server/requests/preconditions.py,sha256=ipxIb_3JXG6S3-ymcOdqQNb7VDvoPqADxu9ZK7-nQWc,7179
|
242
242
|
sky/server/requests/requests.py,sha256=Sys2rg22rIXn7SrHfKzDVuTjBdRlm5oZk58u1UmS6JA,21231
|
@@ -328,7 +328,7 @@ sky/utils/resources_utils.py,sha256=URp6OS9B9nc9tIB5ibZCgGK4XSABmI4kRG0wOM6qgvs,
|
|
328
328
|
sky/utils/rich_utils.py,sha256=3xdDzmn-TQXAE83EevAtOf9N4aak3Bl4ZeD33xIxjOo,11931
|
329
329
|
sky/utils/schemas.py,sha256=KJCHrn1nMZ3XqzddWuu_nFQoRQw01cZh9qh19OrRtps,30145
|
330
330
|
sky/utils/status_lib.py,sha256=zn_MSuRYQdNKF8pnFOGQ54X_s_R7dyqWS6Q3a9zENw8,1512
|
331
|
-
sky/utils/subprocess_utils.py,sha256=
|
331
|
+
sky/utils/subprocess_utils.py,sha256=Ee4WajTJ6YLAjC8CgN5l1K7m6hsnpGqDa26MXkDifvw,15776
|
332
332
|
sky/utils/timeline.py,sha256=ob6s3bc7nwAuSI76yLKBrSR5bzOHnOhbozz1avwoet4,4070
|
333
333
|
sky/utils/ux_utils.py,sha256=ngcOCg1K44p-SOk6XfwxJGXwjoP__PRvNuEzj7t05Yc,10185
|
334
334
|
sky/utils/validator.py,sha256=cAFERCoC7jH0DFKepcU4x9SYmdrYL1iVmW9tXA18hvo,701
|
@@ -347,9 +347,9 @@ sky/utils/kubernetes/k8s_gpu_labeler_setup.yaml,sha256=VLKT2KKimZu1GDg_4AIlIt488
|
|
347
347
|
sky/utils/kubernetes/kubernetes_deploy_utils.py,sha256=otzHzpliHDCpzYT-nU9Q0ZExbiFpDPWvhxwkvchZj7k,10073
|
348
348
|
sky/utils/kubernetes/rsync_helper.sh,sha256=h4YwrPFf9727CACnMJvF3EyK_0OeOYKKt4su_daKekw,1256
|
349
349
|
sky/utils/kubernetes/ssh_jump_lifecycle_manager.py,sha256=Kq1MDygF2IxFmu9FXpCxqucXLmeUrvs6OtRij6XTQbo,6554
|
350
|
-
skypilot_nightly-1.0.0.
|
351
|
-
skypilot_nightly-1.0.0.
|
352
|
-
skypilot_nightly-1.0.0.
|
353
|
-
skypilot_nightly-1.0.0.
|
354
|
-
skypilot_nightly-1.0.0.
|
355
|
-
skypilot_nightly-1.0.0.
|
350
|
+
skypilot_nightly-1.0.0.dev20250319.dist-info/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
|
351
|
+
skypilot_nightly-1.0.0.dev20250319.dist-info/METADATA,sha256=Iys5Rb5saDPHcYoCslzL2WR1YyxDv2fSA-knwQQb6jc,17919
|
352
|
+
skypilot_nightly-1.0.0.dev20250319.dist-info/WHEEL,sha256=beeZ86-EfXScwlR_HKu4SllMC9wUEj_8Z_4FJ3egI2w,91
|
353
|
+
skypilot_nightly-1.0.0.dev20250319.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
|
354
|
+
skypilot_nightly-1.0.0.dev20250319.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
|
355
|
+
skypilot_nightly-1.0.0.dev20250319.dist-info/RECORD,,
|
File without changes
|
{skypilot_nightly-1.0.0.dev20250318.dist-info → skypilot_nightly-1.0.0.dev20250319.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|