skypilot-nightly 1.0.0.dev20251014__py3-none-any.whl → 1.0.0.dev20251016__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of skypilot-nightly might be problematic. Click here for more details.

Files changed (51) hide show
  1. sky/__init__.py +2 -2
  2. sky/backends/backend_utils.py +29 -15
  3. sky/backends/cloud_vm_ray_backend.py +30 -13
  4. sky/dashboard/out/404.html +1 -1
  5. sky/dashboard/out/clusters/[cluster]/[job].html +1 -1
  6. sky/dashboard/out/clusters/[cluster].html +1 -1
  7. sky/dashboard/out/clusters.html +1 -1
  8. sky/dashboard/out/config.html +1 -1
  9. sky/dashboard/out/index.html +1 -1
  10. sky/dashboard/out/infra/[context].html +1 -1
  11. sky/dashboard/out/infra.html +1 -1
  12. sky/dashboard/out/jobs/[job].html +1 -1
  13. sky/dashboard/out/jobs/pools/[pool].html +1 -1
  14. sky/dashboard/out/jobs.html +1 -1
  15. sky/dashboard/out/users.html +1 -1
  16. sky/dashboard/out/volumes.html +1 -1
  17. sky/dashboard/out/workspace/new.html +1 -1
  18. sky/dashboard/out/workspaces/[name].html +1 -1
  19. sky/dashboard/out/workspaces.html +1 -1
  20. sky/exceptions.py +13 -1
  21. sky/jobs/constants.py +1 -1
  22. sky/jobs/scheduler.py +2 -4
  23. sky/jobs/server/core.py +2 -1
  24. sky/jobs/server/server.py +5 -3
  25. sky/jobs/state.py +12 -6
  26. sky/jobs/utils.py +8 -2
  27. sky/provision/common.py +2 -0
  28. sky/provision/instance_setup.py +10 -2
  29. sky/provision/kubernetes/instance.py +34 -10
  30. sky/provision/kubernetes/utils.py +9 -0
  31. sky/schemas/generated/jobsv1_pb2.py +52 -52
  32. sky/schemas/generated/jobsv1_pb2.pyi +4 -2
  33. sky/serve/server/server.py +1 -0
  34. sky/server/requests/executor.py +51 -15
  35. sky/server/requests/preconditions.py +2 -4
  36. sky/server/requests/requests.py +14 -23
  37. sky/server/requests/threads.py +106 -0
  38. sky/server/rest.py +36 -18
  39. sky/server/server.py +24 -0
  40. sky/skylet/constants.py +1 -1
  41. sky/skylet/services.py +3 -1
  42. sky/utils/asyncio_utils.py +18 -0
  43. sky/utils/context_utils.py +2 -0
  44. {skypilot_nightly-1.0.0.dev20251014.dist-info → skypilot_nightly-1.0.0.dev20251016.dist-info}/METADATA +37 -36
  45. {skypilot_nightly-1.0.0.dev20251014.dist-info → skypilot_nightly-1.0.0.dev20251016.dist-info}/RECORD +51 -49
  46. /sky/dashboard/out/_next/static/{9Fek73R28lDp1A5J4N7g7 → pbgtEUoCUdmJyLHjgln5A}/_buildManifest.js +0 -0
  47. /sky/dashboard/out/_next/static/{9Fek73R28lDp1A5J4N7g7 → pbgtEUoCUdmJyLHjgln5A}/_ssgManifest.js +0 -0
  48. {skypilot_nightly-1.0.0.dev20251014.dist-info → skypilot_nightly-1.0.0.dev20251016.dist-info}/WHEEL +0 -0
  49. {skypilot_nightly-1.0.0.dev20251014.dist-info → skypilot_nightly-1.0.0.dev20251016.dist-info}/entry_points.txt +0 -0
  50. {skypilot_nightly-1.0.0.dev20251014.dist-info → skypilot_nightly-1.0.0.dev20251016.dist-info}/licenses/LICENSE +0 -0
  51. {skypilot_nightly-1.0.0.dev20251014.dist-info → skypilot_nightly-1.0.0.dev20251016.dist-info}/top_level.txt +0 -0
sky/server/rest.py CHANGED
@@ -178,14 +178,16 @@ def _retry_on_server_unavailable(max_wait_seconds: int = 600,
178
178
  Notes(dev):
179
179
  """
180
180
 
181
+ def _readable_error_msg(message: str) -> str:
182
+ return (f'{colorama.Fore.YELLOW}API server is temporarily '
183
+ f'unavailable: {message}.\nRetrying...'
184
+ f'{colorama.Style.RESET_ALL}')
185
+
181
186
  def decorator(func: F) -> F:
182
187
 
183
188
  @functools.wraps(func)
184
189
  def wrapper(*args, **kwargs) -> Any:
185
- msg = (
186
- f'{colorama.Fore.YELLOW}API server is temporarily unavailable: '
187
- 'upgrade in progress. Waiting to resume...'
188
- f'{colorama.Style.RESET_ALL}')
190
+
189
191
  backoff = common_utils.Backoff(
190
192
  initial_backoff=initial_backoff,
191
193
  max_backoff_factor=max_backoff_factor)
@@ -203,7 +205,8 @@ def _retry_on_server_unavailable(max_wait_seconds: int = 600,
203
205
  # stop the status spinner before retrying func() to
204
206
  # avoid the status spinner get stuck if the func() runs
205
207
  # for a long time without update status, e.g. sky logs.
206
- with rich_utils.client_status(msg):
208
+ with rich_utils.client_status(
209
+ _readable_error_msg(e.message)):
207
210
  if time.time() - start_time > max_wait_seconds:
208
211
  # pylint: disable=line-too-long
209
212
  raise exceptions.ServerTemporarilyUnavailableError(
@@ -224,14 +227,33 @@ def _retry_on_server_unavailable(max_wait_seconds: int = 600,
224
227
 
225
228
 
226
229
  def handle_server_unavailable(response: 'requests.Response') -> None:
227
- if response.status_code == 503:
228
- # TODO(aylei): Hacky, depends on how nginx controller handles backends
229
- # with no ready endpoints. Should use self-defined status code or header
230
- # to distinguish retryable server error from general 503 errors.
231
- with ux_utils.print_exception_no_traceback():
232
- raise exceptions.ServerTemporarilyUnavailableError(
233
- 'SkyPilot API server is temporarily unavailable. '
234
- 'Please try again later.')
230
+ """Handle 503 (Service Unavailable) error
231
+
232
+ The client get 503 error in the following cases:
233
+ 1. The reverse proxy cannot find any ready backend endpoints to serve the
234
+ request, e.g. when there is and rolling-update.
235
+ 2. The skypilot API server has temporary resource issue, e.g. when the
236
+ cucurrency of the handling process is exhausted.
237
+
238
+ We expect the caller (CLI or SDK) retry on these cases and show clear wait
239
+ message to the user to let user decide whether keep waiting or abort the
240
+ request.
241
+ """
242
+ if response.status_code != 503:
243
+ return
244
+
245
+ # error_msg = 'SkyPilot API server is temporarily unavailable. '
246
+ error_msg = ''
247
+ try:
248
+ response_data = response.json()
249
+ if 'detail' in response_data:
250
+ error_msg = response_data['detail']
251
+ except Exception: # pylint: disable=broad-except
252
+ if response.text:
253
+ error_msg = response.text
254
+
255
+ with ux_utils.print_exception_no_traceback():
256
+ raise exceptions.ServerTemporarilyUnavailableError(error_msg)
235
257
 
236
258
 
237
259
  @_retry_on_server_unavailable()
@@ -310,11 +332,7 @@ async def request_without_retry_async(session: 'aiohttp.ClientSession',
310
332
  response = await session.request(method, url, **kwargs)
311
333
 
312
334
  # Handle server unavailability (503 status) - same as sync version
313
- if response.status == 503:
314
- with ux_utils.print_exception_no_traceback():
315
- raise exceptions.ServerTemporarilyUnavailableError(
316
- 'SkyPilot API server is temporarily unavailable. '
317
- 'Please try again later.')
335
+ handle_server_unavailable(response)
318
336
 
319
337
  # Set remote API version and version from headers - same as sync version
320
338
  remote_api_version = response.headers.get(constants.API_VERSION_HEADER)
sky/server/server.py CHANGED
@@ -17,6 +17,7 @@ import resource
17
17
  import shutil
18
18
  import sys
19
19
  import threading
20
+ import traceback
20
21
  from typing import Dict, List, Literal, Optional, Set, Tuple
21
22
  import uuid
22
23
  import zipfile
@@ -74,6 +75,7 @@ from sky.utils import dag_utils
74
75
  from sky.utils import perf_utils
75
76
  from sky.utils import status_lib
76
77
  from sky.utils import subprocess_utils
78
+ from sky.utils import ux_utils
77
79
  from sky.utils.db import db_utils
78
80
  from sky.volumes.server import server as volumes_rest
79
81
  from sky.workspaces import server as workspaces_rest
@@ -664,6 +666,25 @@ except Exception: # pylint: disable=broad-except
664
666
  pass # no issue, we will warn the user later if its too low
665
667
 
666
668
 
669
+ @app.exception_handler(exceptions.ConcurrentWorkerExhaustedError)
670
+ def handle_concurrent_worker_exhausted_error(
671
+ request: fastapi.Request, e: exceptions.ConcurrentWorkerExhaustedError):
672
+ del request # request is not used
673
+ # Print detailed error message to server log
674
+ logger.error('Concurrent worker exhausted: '
675
+ f'{common_utils.format_exception(e)}')
676
+ with ux_utils.enable_traceback():
677
+ logger.error(f' Traceback: {traceback.format_exc()}')
678
+ # Return human readable error message to client
679
+ return fastapi.responses.JSONResponse(
680
+ status_code=503,
681
+ content={
682
+ 'detail':
683
+ ('The server has exhausted its concurrent worker limit. '
684
+ 'Please try again or scale the server if the load persists.')
685
+ })
686
+
687
+
667
688
  @app.get('/token')
668
689
  async def token(request: fastapi.Request,
669
690
  local_port: Optional[int] = None) -> fastapi.responses.Response:
@@ -1232,6 +1253,7 @@ async def logs(
1232
1253
  # TODO(zhwu): This should wait for the request on the cluster, e.g., async
1233
1254
  # launch, to finish, so that a user does not need to manually pull the
1234
1255
  # request status.
1256
+ executor.check_request_thread_executor_available()
1235
1257
  request_task = executor.prepare_request(
1236
1258
  request_id=request.state.request_id,
1237
1259
  request_name='logs',
@@ -1466,6 +1488,8 @@ async def api_get(request_id: str) -> payloads.RequestPayload:
1466
1488
  # to avoid storming the DB and CPU in the meantime
1467
1489
  await asyncio.sleep(0.1)
1468
1490
  request_task = await requests_lib.get_request_async(request_id)
1491
+ # TODO(aylei): refine this, /api/get will not be retried and this is
1492
+ # meaningless to retry. It is the original request that should be retried.
1469
1493
  if request_task.should_retry:
1470
1494
  raise fastapi.HTTPException(
1471
1495
  status_code=503, detail=f'Request {request_id!r} should be retried')
sky/skylet/constants.py CHANGED
@@ -100,7 +100,7 @@ TASK_ID_LIST_ENV_VAR = f'{SKYPILOT_ENV_VAR_PREFIX}TASK_IDS'
100
100
  # cluster yaml is updated.
101
101
  #
102
102
  # TODO(zongheng,zhanghao): make the upgrading of skylet automatic?
103
- SKYLET_VERSION = '22'
103
+ SKYLET_VERSION = '23'
104
104
  # The version of the lib files that skylet/jobs use. Whenever there is an API
105
105
  # change for the job_lib or log_lib, we need to bump this version, so that the
106
106
  # user can be notified to update their SkyPilot version on the remote cluster.
sky/skylet/services.py CHANGED
@@ -216,10 +216,12 @@ class JobsServiceImpl(jobsv1_pb2_grpc.JobsServiceServicer):
216
216
  if pool is not None:
217
217
  pool_hash = serve_state.get_service_hash(pool)
218
218
  # Add the managed job to job queue database.
219
+ user_id = managed_job.user_id if managed_job.HasField(
220
+ 'user_id') else None
219
221
  managed_job_state.set_job_info(job_id, managed_job.name,
220
222
  managed_job.workspace,
221
223
  managed_job.entrypoint, pool,
222
- pool_hash)
224
+ pool_hash, user_id)
223
225
  # Set the managed job to PENDING state to make sure that
224
226
  # this managed job appears in the `sky jobs queue`, even
225
227
  # if it needs to wait to be submitted.
@@ -0,0 +1,18 @@
1
+ """Asyncio utilities."""
2
+
3
+ import asyncio
4
+ import functools
5
+
6
+
7
+ def shield(func):
8
+ """Shield the decorated async function from cancellation.
9
+
10
+ Note that filelock.AsyncFileLock is not cancellation safe, thus the
11
+ function calls filelock.AsyncFileLock must be shielded.
12
+ """
13
+
14
+ @functools.wraps(func)
15
+ async def async_wrapper(*args, **kwargs):
16
+ return await asyncio.shield(func(*args, **kwargs))
17
+
18
+ return async_wrapper
@@ -19,6 +19,8 @@ from sky.utils import subprocess_utils
19
19
 
20
20
  StreamHandler = Callable[[IO[Any], IO[Any]], str]
21
21
 
22
+ logger = sky_logging.init_logger(__name__)
23
+
22
24
 
23
25
  # TODO(aylei): call hijack_sys_attrs() proactivly in module init at server-side
24
26
  # once we have context widely adopted.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: skypilot-nightly
3
- Version: 1.0.0.dev20251014
3
+ Version: 1.0.0.dev20251016
4
4
  Summary: SkyPilot: Run AI on Any Infra — Unified, Faster, Cheaper.
5
5
  Author: SkyPilot Team
6
6
  License: Apache 2.0
@@ -156,51 +156,51 @@ Requires-Dist: aiosqlite; extra == "server"
156
156
  Requires-Dist: greenlet; extra == "server"
157
157
  Provides-Extra: shadeform
158
158
  Provides-Extra: all
159
- Requires-Dist: google-api-python-client>=2.69.0; extra == "all"
159
+ Requires-Dist: ibm-platform-services>=0.48.0; extra == "all"
160
+ Requires-Dist: websockets; extra == "all"
161
+ Requires-Dist: aiosqlite; extra == "all"
162
+ Requires-Dist: boto3>=1.26.1; extra == "all"
163
+ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "all"
164
+ Requires-Dist: awscli>=1.27.10; extra == "all"
165
+ Requires-Dist: tomli; python_version < "3.11" and extra == "all"
166
+ Requires-Dist: runpod>=1.6.1; extra == "all"
167
+ Requires-Dist: ibm-cloud-sdk-core; extra == "all"
168
+ Requires-Dist: ibm-cos-sdk; extra == "all"
160
169
  Requires-Dist: botocore>=1.29.10; extra == "all"
161
- Requires-Dist: azure-cli>=2.65.0; extra == "all"
162
- Requires-Dist: pyopenssl<24.3.0,>=23.2.0; extra == "all"
170
+ Requires-Dist: vastai-sdk>=0.1.12; extra == "all"
171
+ Requires-Dist: azure-mgmt-compute>=33.0.0; extra == "all"
163
172
  Requires-Dist: passlib; extra == "all"
164
- Requires-Dist: pyvmomi==8.0.1.0.2; extra == "all"
165
- Requires-Dist: awscli>=1.27.10; extra == "all"
166
- Requires-Dist: azure-common; extra == "all"
167
- Requires-Dist: azure-core>=1.24.0; extra == "all"
168
- Requires-Dist: colorama<0.4.5; extra == "all"
169
- Requires-Dist: pyjwt; extra == "all"
173
+ Requires-Dist: azure-cli>=2.65.0; extra == "all"
170
174
  Requires-Dist: sqlalchemy_adapter; extra == "all"
171
- Requires-Dist: ray[default]>=2.6.1; extra == "all"
172
- Requires-Dist: kubernetes!=32.0.0,>=20.0.0; extra == "all"
173
- Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "all"
174
- Requires-Dist: websockets; extra == "all"
175
- Requires-Dist: anyio; extra == "all"
176
- Requires-Dist: azure-identity>=1.19.0; extra == "all"
177
- Requires-Dist: vastai-sdk>=0.1.12; extra == "all"
178
- Requires-Dist: ecsapi>=0.2.0; extra == "all"
179
175
  Requires-Dist: msgraph-sdk; extra == "all"
180
- Requires-Dist: python-dateutil; extra == "all"
181
- Requires-Dist: msrestazure; extra == "all"
182
- Requires-Dist: nebius>=0.2.47; extra == "all"
183
- Requires-Dist: ibm-vpc; extra == "all"
176
+ Requires-Dist: azure-identity>=1.19.0; extra == "all"
177
+ Requires-Dist: grpcio>=1.63.0; extra == "all"
184
178
  Requires-Dist: azure-storage-blob>=12.23.1; extra == "all"
185
- Requires-Dist: ibm-cloud-sdk-core; extra == "all"
186
- Requires-Dist: azure-core>=1.31.0; extra == "all"
179
+ Requires-Dist: kubernetes!=32.0.0,>=20.0.0; extra == "all"
180
+ Requires-Dist: pyvmomi==8.0.1.0.2; extra == "all"
187
181
  Requires-Dist: casbin; extra == "all"
188
- Requires-Dist: grpcio>=1.63.0; extra == "all"
189
- Requires-Dist: docker; extra == "all"
190
- Requires-Dist: ibm-platform-services>=0.48.0; extra == "all"
191
- Requires-Dist: aiohttp; extra == "all"
192
- Requires-Dist: tomli; python_version < "3.11" and extra == "all"
193
- Requires-Dist: google-cloud-storage; extra == "all"
182
+ Requires-Dist: pyopenssl<24.3.0,>=23.2.0; extra == "all"
194
183
  Requires-Dist: pydo>=0.3.0; extra == "all"
184
+ Requires-Dist: azure-core>=1.31.0; extra == "all"
185
+ Requires-Dist: anyio; extra == "all"
186
+ Requires-Dist: ibm-vpc; extra == "all"
187
+ Requires-Dist: aiohttp; extra == "all"
188
+ Requires-Dist: azure-common; extra == "all"
195
189
  Requires-Dist: oci; extra == "all"
196
- Requires-Dist: runpod>=1.6.1; extra == "all"
197
- Requires-Dist: azure-mgmt-network>=27.0.0; extra == "all"
190
+ Requires-Dist: google-api-python-client>=2.69.0; extra == "all"
191
+ Requires-Dist: pyjwt; extra == "all"
192
+ Requires-Dist: colorama<0.4.5; extra == "all"
198
193
  Requires-Dist: cudo-compute>=0.1.10; extra == "all"
199
- Requires-Dist: ibm-cos-sdk; extra == "all"
200
- Requires-Dist: aiosqlite; extra == "all"
201
- Requires-Dist: boto3>=1.26.1; extra == "all"
202
- Requires-Dist: azure-mgmt-compute>=33.0.0; extra == "all"
194
+ Requires-Dist: msrestazure; extra == "all"
203
195
  Requires-Dist: greenlet; extra == "all"
196
+ Requires-Dist: azure-core>=1.24.0; extra == "all"
197
+ Requires-Dist: ray[default]>=2.6.1; extra == "all"
198
+ Requires-Dist: ecsapi>=0.2.0; extra == "all"
199
+ Requires-Dist: google-cloud-storage; extra == "all"
200
+ Requires-Dist: nebius>=0.2.47; extra == "all"
201
+ Requires-Dist: python-dateutil; extra == "all"
202
+ Requires-Dist: azure-mgmt-network>=27.0.0; extra == "all"
203
+ Requires-Dist: docker; extra == "all"
204
204
  Dynamic: author
205
205
  Dynamic: classifier
206
206
  Dynamic: description
@@ -250,6 +250,7 @@ Dynamic: summary
250
250
  ----
251
251
 
252
252
  :fire: *News* :fire:
253
+ - [Oct 2025] Train and serve [Andrej Karpathy's](https://x.com/karpathy/status/1977755427569111362) **nanochat** - the best ChatGPT that $100 can buy: [**example**](./llm/nanochat)
253
254
  - [Oct 2025] Run large-scale **LLM training with TorchTitan** on any AI infra: [**example**](./examples/training/torchtitan)
254
255
  - [Sep 2025] Scaling AI infrastructure at Abridge - **10x faster development** with SkyPilot: [**blog**](https://blog.skypilot.co/abridge/)
255
256
  - [Sep 2025] Network and Storage Benchmarks for LLM training on the cloud: [**blog**](https://maknee.github.io/blog/2025/Network-And-Storage-Training-Skypilot/)
@@ -1,4 +1,4 @@
1
- sky/__init__.py,sha256=NONOCd_1pNs3n48Aev6zttc1XoWlxztsV0o_C-jN5BU,6759
1
+ sky/__init__.py,sha256=Hyx3cKLPSEvS-s5nhMRGldwxUHrhA_oI88dTRzB-wS8,6759
2
2
  sky/admin_policy.py,sha256=XdcJnYqmude-LGGop-8U-FeiJcqtfYsYtIy4rmoCJnM,9799
3
3
  sky/authentication.py,sha256=GSwh3wfodBqn8FtBcrqSw2UZZEwW8dKqXN3ubFAiqBw,25879
4
4
  sky/check.py,sha256=hBDTkiADC3HFfO6brZV819FVWcdOs3aiuhB6x6mY4Q4,29728
@@ -6,7 +6,7 @@ sky/cli.py,sha256=VXIZryeTtJPYpPTBKymVPmuOCyh8knfWrq-qnkr6R-4,178
6
6
  sky/cloud_stores.py,sha256=Ln5GBpel-sEs7rVx7bBrMkfLwA_bctI05Rox2uoz7Lo,26388
7
7
  sky/core.py,sha256=VTHly9kJmwtmdiKwkrSrzuJ_8V8t-aI9weADd0SqDWA,58305
8
8
  sky/dag.py,sha256=0ZpAEDXuIFo1SP7YJpF9vXiFxpRwqP8od-UXMg95td8,3929
9
- sky/exceptions.py,sha256=IprWNwo6z5cHE-vTuQ5bMcjCfE2kgwZ3PRuawLPucXY,20466
9
+ sky/exceptions.py,sha256=DTQN5db2N6FntRRw0rRLyQG2q7HDvnylpvjkRF8wYBk,20830
10
10
  sky/execution.py,sha256=klMjceOMCMDzyYczazrT-kiS6kGqfyBO_9KvlZzyTUw,35849
11
11
  sky/global_user_state.py,sha256=dMAnV4VjC_FDTkvJMNSjFRp9rVjw85MAghAcjeim1oQ,103583
12
12
  sky/models.py,sha256=ZKisLai7vqUr6_BPev6Oziu5N23WLzTh9nRtHSlRchw,3999
@@ -38,8 +38,8 @@ sky/adaptors/vast.py,sha256=tpvmHi7IkQNzbbHVkeo04kUSajoEpSzXr2XgeO_I1LU,695
38
38
  sky/adaptors/vsphere.py,sha256=zJP9SeObEoLrpgHW2VHvZE48EhgVf8GfAEIwBeaDMfM,2129
39
39
  sky/backends/__init__.py,sha256=l1xXpkzPFMma0ZkT4GzVMu7uvgS3AsECg6zLc0S3JHQ,702
40
40
  sky/backends/backend.py,sha256=zmF6TuKtUwzsP1hq0TI9nuuUySlPc9sgeW6F4GC8Ckk,8352
41
- sky/backends/backend_utils.py,sha256=VKkBD1-rq35lSu8eT-1dzliAI10qQpCJP7qCT3ea7mY,178171
42
- sky/backends/cloud_vm_ray_backend.py,sha256=V3TJNyqE42C-xXE6EBqZ5zNGDCNzaQxP6B0V_GswIYo,308439
41
+ sky/backends/backend_utils.py,sha256=cWR5Q0ZAsXOt6xDGhGAFIX2z6mhMnDFp0nYP6rA44Iw,178964
42
+ sky/backends/cloud_vm_ray_backend.py,sha256=dfBbsOpecR4u82DDfqQjN5FYNqOUhIST8QnvGbAfmoE,309163
43
43
  sky/backends/docker_utils.py,sha256=_EhM6NStZDAwcegppQqExaB5iuSn1qL4xFFUqXAz2Uk,8392
44
44
  sky/backends/local_docker_backend.py,sha256=ncc8-WJrMRnqPl9fzvGr-nftIz7tTzKtUi-p_z_nH60,17366
45
45
  sky/backends/wheel_utils.py,sha256=DE71Muq5qLRhGpCVg1Rb6YOI7S_BzT8Hak27Pz8L4yw,12486
@@ -123,19 +123,17 @@ sky/clouds/utils/azure_utils.py,sha256=NToRBnhEyuUvb-nBnsKTxjhOBRkMcrelL8LK4w6s4
123
123
  sky/clouds/utils/gcp_utils.py,sha256=09MF4Vx0EW7S-GXGpyxpl2aQlHrqeu9ioV0nyionAyk,9890
124
124
  sky/clouds/utils/oci_utils.py,sha256=TFqAqRLggg4Z0bhxrrq8nouSSomZy-ub1frHXEkud2M,7302
125
125
  sky/clouds/utils/scp_utils.py,sha256=VGuccVO5uFGr8-yolWSoYrgr11z6cIeDBGcqkBzAyOs,18409
126
- sky/dashboard/out/404.html,sha256=mfdkpuYUX9aGSq5Xx7TyL53kyk5Se0HvWGnjzUioX9o,1423
127
- sky/dashboard/out/clusters.html,sha256=lQNj_9v6ONR-FDKjxBBnGBwcusIYRLGSQq7O4DQGvPY,1418
128
- sky/dashboard/out/config.html,sha256=ZLT-004Yz3OHaeOVLyZWZWOYmikZy_MmQIvDuUuicRk,1414
126
+ sky/dashboard/out/404.html,sha256=geTbhs5hr8Xx6VUC8yLTB0pBkUTRa4-oXWvCWketok4,1423
127
+ sky/dashboard/out/clusters.html,sha256=PcCIwtDS2YyvJfhjbrhDsXuVPfPz0t08gC29g7B3FKg,1418
128
+ sky/dashboard/out/config.html,sha256=a0ycAKmIApgLeGG3iPorTfXMd-iFW54we8eUGYXAgck,1414
129
129
  sky/dashboard/out/favicon.ico,sha256=XilUZZglAl_1zRsg85QsbQgmQAzGPQjcUIJ-A3AzYn8,93590
130
- sky/dashboard/out/index.html,sha256=Ym7TGvbEZ8O3RFtikjfOxM5pX5YtCuzGuQt32gXQpZg,1407
131
- sky/dashboard/out/infra.html,sha256=FiU4FYkbvmacEL5S3bH1XWpuykN1kgGpaGlA2UhJ70g,1412
132
- sky/dashboard/out/jobs.html,sha256=WRGTMLw9ZoQV457woZN8aHpqq5E4guo0GymmoTiuFjk,1410
130
+ sky/dashboard/out/index.html,sha256=LgAjS4oYMttufwnGuEI0XdTKG1Lu0cwbhQFVd4WLLXo,1407
131
+ sky/dashboard/out/infra.html,sha256=whyWrKBimgl5riv1LyfYkZ2Zx0pGYOdNkqyE4VHhoSU,1412
132
+ sky/dashboard/out/jobs.html,sha256=Xxqjgkr1VKxpf_VUg-5437gplQmhHqUx9jMq95TUXW0,1410
133
133
  sky/dashboard/out/skypilot.svg,sha256=c0iRtlfLlaUm2p0rG9NFmo5FN0Qhf3pq5Xph-AeMPJw,5064
134
- sky/dashboard/out/users.html,sha256=3uzcxus1HQ7Wi7j-1GxS4tvruBd6Gk3LEorzTpW5P3I,1412
135
- sky/dashboard/out/volumes.html,sha256=8l6jXSAFoI_VloNNBu318bt8CwbJuhXpW1zL5so3d-0,1416
136
- sky/dashboard/out/workspaces.html,sha256=JqYWgVRpQSgHrufD3s9OhJKx7_hl145KlNj6_-DJAyU,1422
137
- sky/dashboard/out/_next/static/9Fek73R28lDp1A5J4N7g7/_buildManifest.js,sha256=1ombZKzLAegWk-mEKBFMtiwI-xk8sWY2rYidGQBNj7Y,2394
138
- sky/dashboard/out/_next/static/9Fek73R28lDp1A5J4N7g7/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
134
+ sky/dashboard/out/users.html,sha256=00vcQQO6uwKHGFaaai7EqTdFn1U1_qKbbbip7YE2XkI,1412
135
+ sky/dashboard/out/volumes.html,sha256=oMWgtYTavDltUKT2MvTgaf6mqaNbgKX0lokscV3x9GA,1416
136
+ sky/dashboard/out/workspaces.html,sha256=C-JDlZVb6aavnacPGmnvXZM4fCASPU1VIjw-bXT3f4o,1422
139
137
  sky/dashboard/out/_next/static/chunks/1121-d0782b9251f0fcd3.js,sha256=jIvnDxaTleAz3HdZK9-RScSB0ZMg8-D63KQmn8avaHI,8883
140
138
  sky/dashboard/out/_next/static/chunks/1141-3b40c39626f99c89.js,sha256=M5vM2c9SRPEly-CQj0Vj7wJzyFSyuALDik9KFLXWmec,18285
141
139
  sky/dashboard/out/_next/static/chunks/1272-1ef0bf0237faccdb.js,sha256=VJ6y-Z6Eg2T93hQIRfWAbjAkQ7nQhglmIaVbEpKSILY,38451
@@ -190,14 +188,16 @@ sky/dashboard/out/_next/static/chunks/pages/jobs/pools/[pool]-bc979970c247d8f3.j
190
188
  sky/dashboard/out/_next/static/chunks/pages/workspace/new-3f88a1c7e86a3f86.js,sha256=83s5N5CZwIaRcmYMfqn2we60n2VRmgFw6Tbx18b8-e0,762
191
189
  sky/dashboard/out/_next/static/chunks/pages/workspaces/[name]-e8688c35c06f0ac5.js,sha256=TVmk0pD0iszL39u2Ru56HLEFFLO648NeT2KbEcW5X5o,1495
192
190
  sky/dashboard/out/_next/static/css/4614e06482d7309e.css,sha256=nk6GriyGVd1aGXrLd7BcMibnN4v0z-Q_mXGxrHFWqrE,56126
193
- sky/dashboard/out/clusters/[cluster].html,sha256=e2wmVwhHOCVmCpN5jTjzNuMVnUgd233YVOJoFcnYezQ,2937
194
- sky/dashboard/out/clusters/[cluster]/[job].html,sha256=uPJkKBH7KtLK-TZcberENWsUM_cc5S9l3A8ItcLSCOA,2073
195
- sky/dashboard/out/infra/[context].html,sha256=CjduPajytH9dnv4A86LGjbGiOfJsvDbTDlTxRFE8ZRE,1436
196
- sky/dashboard/out/jobs/[job].html,sha256=XPoppxLtXp-syj_ZcQ1NrYWJ006jAnq9MpMrBxpJxD8,2305
197
- sky/dashboard/out/jobs/pools/[pool].html,sha256=JhZ0G9RLNm9Hucwk6w_-RHTuU_3PkkDN0E5KEt6l7Zo,2143
191
+ sky/dashboard/out/_next/static/pbgtEUoCUdmJyLHjgln5A/_buildManifest.js,sha256=1ombZKzLAegWk-mEKBFMtiwI-xk8sWY2rYidGQBNj7Y,2394
192
+ sky/dashboard/out/_next/static/pbgtEUoCUdmJyLHjgln5A/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
193
+ sky/dashboard/out/clusters/[cluster].html,sha256=w4CGnJwobm8_LcpIL58wrTQCsHecw-q0yEXwZIzOn-A,2937
194
+ sky/dashboard/out/clusters/[cluster]/[job].html,sha256=YXW5FPPJuB0RThL4rBaHCx2ZfsbjWm1fpSxIYU6F0XQ,2073
195
+ sky/dashboard/out/infra/[context].html,sha256=8S03UEnP2QodWIJSkugz6644yh4wExMa-JmbFhQl7Rs,1436
196
+ sky/dashboard/out/jobs/[job].html,sha256=VbWql8Mf1WkNCUoh7wd67lyiMqtPFdIgxP5oVUvjqxc,2305
197
+ sky/dashboard/out/jobs/pools/[pool].html,sha256=5tQOY3ak6__7wDO1K91U0ydrMzrhxCjdm5pDebqGx6w,2143
198
198
  sky/dashboard/out/videos/cursor-small.mp4,sha256=8tRdp1vjawOrXUar1cfjOc-nkaKmcwCPZx_LO0XlCvQ,203285
199
- sky/dashboard/out/workspace/new.html,sha256=kyYYOFTv_3G_FRPv2eozdEdJ6_lDoLtGAaGrbZpz3AE,1428
200
- sky/dashboard/out/workspaces/[name].html,sha256=N7MWobWUBQZ5rM4BD4vD4QqMWzJNPjJEwn9IurEm_VQ,2759
199
+ sky/dashboard/out/workspace/new.html,sha256=ojzaOKXXOX3CqrnN52hVGwDxx3go9-J9t6-j4fLotVk,1428
200
+ sky/dashboard/out/workspaces/[name].html,sha256=3NeDghH2OweZ5sMxZUFwMeu3FxXCa_DqxWQ3FoqigpY,2759
201
201
  sky/data/__init__.py,sha256=Nhaf1NURisXpZuwWANa2IuCyppIuc720FRwqSE2oEwY,184
202
202
  sky/data/data_transfer.py,sha256=N8b0CQebDuHieXjvEVwlYmK6DbQxUGG1RQJEyTbh3dU,12040
203
203
  sky/data/data_utils.py,sha256=AjEA_JRjo9NBMlv-Lq5iV4lBED_YZ1VqBR9pG6fGVWE,35179
@@ -205,18 +205,18 @@ sky/data/mounting_utils.py,sha256=trsjpEfQmsctEi6OHMKVSL915OEDdrQVlwTlkXrd4r0,26
205
205
  sky/data/storage.py,sha256=y6cIgfmhgL8ldjHR7whg2q71TzFQ3Lxiyv6d3anC62I,209290
206
206
  sky/data/storage_utils.py,sha256=bqCE7WQVOpFMxqVRkxee4oLn-iImh4ZL8qB5IicXh0w,14230
207
207
  sky/jobs/__init__.py,sha256=BiABNdlab7xZDOv4C34kc1XuxG6C_Ip7Q96mT2iCnIg,1686
208
- sky/jobs/constants.py,sha256=da41EPFohcxAeIX2aBPNZrUgb09Gv6Y9AEWrqutxips,3057
208
+ sky/jobs/constants.py,sha256=ysm4RpmIshuJDdcLWK2-NmsAbeLAiS1qKKP_4hWgQeA,3057
209
209
  sky/jobs/controller.py,sha256=S6JFb5R6BQHLROVB_bzV_blIWJN7NJ_DOyTBy_Jh-Es,57083
210
210
  sky/jobs/recovery_strategy.py,sha256=FUyHTOtJ0rvTL-vznX8FcJP84ORlavewptLXr3r9evI,38423
211
- sky/jobs/scheduler.py,sha256=t09Z7lKIjuq2thCloEnmt1ow6KN4T9mQDDzHb6PhVw4,17307
212
- sky/jobs/state.py,sha256=SKy79-3Uice18JihDCwtaoTnbjiJVtb9ialQ5yB2X3U,87548
213
- sky/jobs/utils.py,sha256=RnZnq8gO8Nf5UgRea5UZkrKS3XSyAG7T3eZ-sioTaQA,97982
211
+ sky/jobs/scheduler.py,sha256=sUa83wiiuv0bwYDcn9-J1uCqZjhUkfE8z_hjG5Xl7rY,17210
212
+ sky/jobs/state.py,sha256=PE5YWPuXQhFwdXyVzu26KBRy8C-qi9TwNb9NolBTqWo,87691
213
+ sky/jobs/utils.py,sha256=cRMEanTdELlW2gapsUH2bEbQDQghv8PPLUMmloIsSAA,98202
214
214
  sky/jobs/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
215
215
  sky/jobs/client/sdk.py,sha256=HQdnZtK-yWXvOX5XEVZU145vIzfCvYZFtL6uzQEm6-c,17133
216
216
  sky/jobs/client/sdk_async.py,sha256=hsyPshdpbKG0RUzw2ntDeAJAkOIl-O9WDoSREV_km3o,4875
217
217
  sky/jobs/server/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
218
- sky/jobs/server/core.py,sha256=MMSYH-dHNK7DfCzG0tl35ft5a975mQhRNYA5skqKakA,48351
219
- sky/jobs/server/server.py,sha256=jSMq_hqfj0Lhjd-MTeD_oH_EpuYTB7cU9cHCMymToHg,8928
218
+ sky/jobs/server/core.py,sha256=DFfg-shgb6Cx5g2dZsrFlXHmIdOh3U0JqSq5V9OTbkc,48407
219
+ sky/jobs/server/server.py,sha256=jhNce-JfxVJxEa3hKT1IqyHszCGGFMhEk1KGdRKnBIM,9045
220
220
  sky/jobs/server/utils.py,sha256=rI_fVyEJhHjuapcB6JefkKgRuT_VeLiubAixsPo5jj0,5023
221
221
  sky/logs/__init__.py,sha256=zW4gAEvWDz5S53FlLp3krAuKrmTSJ0e3kZDnhxSbW4E,722
222
222
  sky/logs/agent.py,sha256=Jwpzio10P45BS6cugt6Ovu3_ZhysuXVcL_aneYZQENE,4766
@@ -225,10 +225,10 @@ sky/logs/gcp.py,sha256=eKVEcHO3FJRg_YTcE9omE8uAIF6AdBWWpkEPqWFAqXg,3857
225
225
  sky/metrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
226
226
  sky/metrics/utils.py,sha256=WvaOPWcHefbM-DKCj_dblpOBgobW5OIfl_mxEO08KPc,15605
227
227
  sky/provision/__init__.py,sha256=JWdDenDcujRsvq2K6RFyk6SjLl0iAvlHfQIt0XPHdjU,9011
228
- sky/provision/common.py,sha256=LdjM9SL9NDtsARom12tVv_WoUNL3PTlU5RoLfeWGGgM,10807
228
+ sky/provision/common.py,sha256=B0Gc6D8Bo4debxCOKGup8LDdc1db99TzFQdAlcg2D8Q,10912
229
229
  sky/provision/constants.py,sha256=oc_XDUkcoLQ_lwDy5yMeMSWviKS0j0s1c0pjlvpNeWY,800
230
230
  sky/provision/docker_utils.py,sha256=DLot-fMAg7bQh_cgpcXjlD3tBvcOGbfyBezX-DzKHAM,24786
231
- sky/provision/instance_setup.py,sha256=ikLKz8shQjCm1QinMc2SrmaRXgLm2R0iRb8PQjhbdkw,27837
231
+ sky/provision/instance_setup.py,sha256=xJy4802XzOWvyggcurSF_6zuS_aR2jgNhWAYo1WBbqA,28103
232
232
  sky/provision/logging.py,sha256=_sx_TH6nLt0FF3myS5pEZbiMhXyl4s1XwMidu_TTBUw,2091
233
233
  sky/provision/metadata_utils.py,sha256=LrxeV4wD2QPzNdXV_npj8q-pr35FatxBBjF_jSbpOT0,4013
234
234
  sky/provision/provisioner.py,sha256=tc26bTCgp-uzeWx3F1mEwUrSP7tTVsc_ol-Wv9TulUA,33629
@@ -269,10 +269,10 @@ sky/provision/hyperbolic/utils.py,sha256=NCa3ULvIi64-YHYoOnPd3SShlJ6VuQsEwaTBqHF
269
269
  sky/provision/kubernetes/__init__.py,sha256=xUHCbN5fkbnM5_E1trFHHOndTsvEwBdi-8qvvpK92io,1030
270
270
  sky/provision/kubernetes/config.py,sha256=iY6WfgmRK_z5mzHGe_8hQS2Op3qKmZ18UY2MgArIGRE,27782
271
271
  sky/provision/kubernetes/constants.py,sha256=vZJQsAVjAgwsOskB48tIFSXtNw7IFnJOQE_H6N-vOYQ,1130
272
- sky/provision/kubernetes/instance.py,sha256=ZAw6KkvuSwNXzAUN3-FTgCspnAyGtUaWb4YOoWU5fzE,75718
272
+ sky/provision/kubernetes/instance.py,sha256=VK8zbeNExCQC4UkDyDmy9Gs2JaXWBGEQ4nlKOptVjWU,76932
273
273
  sky/provision/kubernetes/network.py,sha256=Dgj8u7IQBHKHt-mSDhYzue1wfDk96FR_8fO89TwuZ2E,12846
274
274
  sky/provision/kubernetes/network_utils.py,sha256=qFiACDq4S1WKMyVbxhGax-K2SJM-4viC8CyEzwvXt6c,11480
275
- sky/provision/kubernetes/utils.py,sha256=EKxXDI4WRyQod-3yLYsOSfLZp-UcD2fvnHJIXC2XVfc,153723
275
+ sky/provision/kubernetes/utils.py,sha256=8kfYAae6fqAA-gqsC-agUN5_QvdxLG3rZW4nhEefqIo,153961
276
276
  sky/provision/kubernetes/volume.py,sha256=b5mozvUCw9rsGxiUS9LxR-MyELK-EQHYglJkGTFNobY,11473
277
277
  sky/provision/kubernetes/manifests/fusermount-server-daemonset.yaml,sha256=5oDGZUsDpO1B9E9JZptkakdIy7LWVR_CqHFFZpMulJE,1270
278
278
  sky/provision/lambda_cloud/__init__.py,sha256=6EEvSgtUeEiup9ivIFevHmgv0GqleroO2X0K7TRa2nE,612
@@ -359,8 +359,8 @@ sky/schemas/generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
359
359
  sky/schemas/generated/autostopv1_pb2.py,sha256=3w4k0woHFxK0qXvYGljLtqpp3IB-oGV15ouKWCUI3l4,2464
360
360
  sky/schemas/generated/autostopv1_pb2.pyi,sha256=1slXiAfgnh-Ds-yHJglvhGddatmlOPfh3AAOCheipCk,1772
361
361
  sky/schemas/generated/autostopv1_pb2_grpc.py,sha256=sUoHZNUNjxpsiYzJhSchC7p-uvigYuh8DwhhyhgfPcE,5921
362
- sky/schemas/generated/jobsv1_pb2.py,sha256=GZ4gVESMl2qxihQJLUZNTlTS6AjC1n4031z1-DwLVG0,10092
363
- sky/schemas/generated/jobsv1_pb2.pyi,sha256=qNQlJ2NAR1V6HrtLO8bZWc5PhEcUrbVZri4VuoZm2es,10675
362
+ sky/schemas/generated/jobsv1_pb2.py,sha256=B8dtZCkYwtjFmLBLSZ3jA9w4EgHeUXG72Q164Bw7PcY,10166
363
+ sky/schemas/generated/jobsv1_pb2.pyi,sha256=PNGewYm7KNxg7mfcPaTlxB_cJ0aIWFP0F4QRPxYenC0,10775
364
364
  sky/schemas/generated/jobsv1_pb2_grpc.py,sha256=1QPd4wx09Hxjot3VpO3TPEbzouMA_cLG4cc-gZFYSSA,22959
365
365
  sky/schemas/generated/managed_jobsv1_pb2.py,sha256=GBwI2AbT79sD5WzPfRgwuUoCQfoL575c-J8t43vRlVM,10202
366
366
  sky/schemas/generated/managed_jobsv1_pb2.pyi,sha256=exRl_ZmreH-ZUDELrjNODmCWoBKh0LDRRTix-HpZ1eQ,13284
@@ -388,15 +388,15 @@ sky/serve/client/sdk_async.py,sha256=idvbLb6q_NBo79OnXE-3SF-bwYFMPzDg_khiNqOLd3o
388
388
  sky/serve/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
389
389
  sky/serve/server/core.py,sha256=4w79PONDX5hAem95U1MRDHZ1VNMaBZJkI6hv5d2IKjQ,11011
390
390
  sky/serve/server/impl.py,sha256=oQL6qd-rTq9M7Qs3n-fCv0vyQe1F9dAid_OgmRCjyjs,48982
391
- sky/serve/server/server.py,sha256=KPbYYUlTK3LEqrDd8q-9gsKu-gF8hXWjdMTFLhaoguM,4536
391
+ sky/serve/server/server.py,sha256=pqWcgGSeC_OzmQ5KOE3uEDTgc39Kx3cS_o55QX-l4_U,4591
392
392
  sky/server/__init__.py,sha256=MPPBqFzXz6Jv5QSk6td_IcvnfXfNErDZVcizu4MLRow,27
393
393
  sky/server/common.py,sha256=wwkKc6xOCjV7MkczLa-NWmfEjEKah_HzfDRpNOcxvGY,40472
394
394
  sky/server/config.py,sha256=oQO2Wls01oYIIr4h7B6UiPBNPcsqHlCJ3batir-Zx80,11143
395
395
  sky/server/constants.py,sha256=XkwSIXR0wSJhopbtGwxYTHJZWYQ2UmpgrgZ1YQRB8SI,2615
396
396
  sky/server/daemons.py,sha256=XQdqRMVyxyqS9fY2HLqW_cxVR6qgqoQ7irPvRYWvG7E,9092
397
397
  sky/server/metrics.py,sha256=8mTyD-zo2gyAJSPJyCtTR8oImeFJ2K-sAdlje5Bf5U4,5781
398
- sky/server/rest.py,sha256=295lCvmAJhGTaal2P00ab6z0fxGj4KfxdI94E-2AhQA,14414
399
- sky/server/server.py,sha256=_FKRXHJ019nmuPqYbYmUyNPfhJYEP1TnSWknKqFN_Ow,84924
398
+ sky/server/rest.py,sha256=Op7WNtfNey3XnBLMBx7S4KryiBhL9UCYhMxQgVo1Ybw,14813
399
+ sky/server/server.py,sha256=QMV2R5j0XO-7cEHNbfCsrhc2NteqT4hkrEi3oc66jac,85992
400
400
  sky/server/state.py,sha256=YbVOMJ1JipQQv17gLIGyiGN7MKfnP83qlUa5MB1z0Yk,747
401
401
  sky/server/stream_utils.py,sha256=V_sZWx9ppPHo4YuoN21zT6asttQlTnF2hb3FgmfpIMY,12136
402
402
  sky/server/uvicorn.py,sha256=lJROnpJqoZr59zGwYa_pUniV7rEwmZn0PV4t-YYY-yo,11832
@@ -409,11 +409,12 @@ sky/server/html/log.html,sha256=TSGZktua9Ysl_ysg3w60rjxAxhH61AJnsYDHdtqrjmI,6929
409
409
  sky/server/html/token_page.html,sha256=eUndS5u1foL9vaWGPRTLMt7lCzD1g0wYJ2v_EeeFzlc,7046
410
410
  sky/server/requests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
411
411
  sky/server/requests/event_loop.py,sha256=OhpPbuce65bbjpGRlcJa78AVnYSm08SzFKt70ypCUuQ,1211
412
- sky/server/requests/executor.py,sha256=iBfURse_WFzEgpMQ7nm6Hf_ugXl21nvSaaBbqFT2D_o,35192
412
+ sky/server/requests/executor.py,sha256=aks5un_Ezrl5r2WGjvMb5DwUebyzcb_c9lGDBxuOPqg,36699
413
413
  sky/server/requests/payloads.py,sha256=nhOGOk-AZApLQBdKLRAtQ3MF7WkJxBA-ZAuF9nMsCxk,28093
414
- sky/server/requests/preconditions.py,sha256=En-mSIe8JXDkiRCMlpgyJGFgYDnhthGReihV5u0oqy8,7283
414
+ sky/server/requests/preconditions.py,sha256=8Hm1IDG0jF1mg0rr82SsLEHkpWrbQgwBAy77M8U34iQ,7165
415
415
  sky/server/requests/process.py,sha256=UpJp5rZizNMFRCNRtudFSjbcJhFarFbtAGDWI9x_ZyE,13197
416
- sky/server/requests/requests.py,sha256=8li5R1Qzu7Am6KQTSLRsx7DSDzggisP8Ts82Jq9QBR4,35574
416
+ sky/server/requests/requests.py,sha256=EwIt6Xdz5I6B6-opVdb98jAo9e5V_BHDNGx-IzeU6rk,35353
417
+ sky/server/requests/threads.py,sha256=AwzbcoeLDz5RnSi0jJSD3u4lGDiYkCaa1qDvPkUqeMI,4131
417
418
  sky/server/requests/queues/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
418
419
  sky/server/requests/queues/local_queue.py,sha256=X6VkBiUmgd_kfqIK1hCtMWG1b8GiZbY70TBiBR6c6GY,416
419
420
  sky/server/requests/queues/mp_queue.py,sha256=jDqP4Jd28U3ibSFyMR1DF9I2OWZrPZqFJrG5S6RFpyw,3403
@@ -429,12 +430,12 @@ sky/skylet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
429
430
  sky/skylet/attempt_skylet.py,sha256=BbnCgMDGc1wxZx6Olp7ezhsXC0E1aYhmfug-9NrJ00g,2137
430
431
  sky/skylet/autostop_lib.py,sha256=2eab980ckQ5dA2DFAJlI5bAJ6EI7YI-JSlzFoTA9XwU,9698
431
432
  sky/skylet/configs.py,sha256=nNBnpuzoU696FbC3Nv0qKVSDuTw4GAbr7eCcg0_Sldo,2135
432
- sky/skylet/constants.py,sha256=UeCfXp5MKtsv5gpect4fxUFutzc2WnJrFd1vpIupBk8,25941
433
+ sky/skylet/constants.py,sha256=8g2_npa_-EjUrZvYpO1CqsGafYzpWX8IKXHYWO8NQyY,25941
433
434
  sky/skylet/events.py,sha256=2vlMyR1Df3zB6ggBJNN2lUunH6x-n-m-nvsHuTwQpXc,16481
434
435
  sky/skylet/job_lib.py,sha256=_BlkEQhsTIBfPOaIDVshMTNQPSgkRaNFk5HrP0aH7Qc,53226
435
436
  sky/skylet/log_lib.py,sha256=sl5oc0N-DLauTFAisJ0SeQS4IRnkTtd1U46B7zYXOi0,31964
436
437
  sky/skylet/log_lib.pyi,sha256=cpbQ4oa1C3Vl5rmPKkA4wupgKTOZlPFZHQiqrhxR_X8,5409
437
- sky/skylet/services.py,sha256=NOL83qCcUczYz0TXM41EWZ8wdlPSDm0FyBNnRo5extw,26504
438
+ sky/skylet/services.py,sha256=2uvYp4Cdo1ULfpF_JcHxJRsaJEmCE0fWsvhkNZdOorE,26625
438
439
  sky/skylet/skylet.py,sha256=Hi07DNpTwvWz575iCLeHCpUlpnQrKQD_SSJdL2SPvo0,3019
439
440
  sky/skylet/subprocess_daemon.py,sha256=gcL-_Hea7-SrBUyZfAbo40RBFbaeuBmPCW0dm4YYkPo,3537
440
441
  sky/skylet/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -502,6 +503,7 @@ sky/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
502
503
  sky/utils/accelerator_registry.py,sha256=DUG-KA6LTNvcadD18DK6hjBhqjlfp8FxymhxYSdw-QM,4955
503
504
  sky/utils/admin_policy_utils.py,sha256=VkE3FGzv5a7KnRO0R1PX0buJ274vF__n1xgXJ_9ykTs,7105
504
505
  sky/utils/annotations.py,sha256=No49yFuNIGtFgxU1bmBh2REx_Yn08o7Is-c56QynDIs,1910
506
+ sky/utils/asyncio_utils.py,sha256=5iydD0HIHZLMAGk-uD3VyweEUsi3qDy1LHuNjHdsUC4,440
505
507
  sky/utils/atomic.py,sha256=vrw-7XCnckF0xCx-ttamao7evPdGtVsnjaTtgMlBXIE,1280
506
508
  sky/utils/benchmark_utils.py,sha256=vBqvgS-7XBat9N4UvtmxXS70i2EQUa4BUv4fsF8g58A,1635
507
509
  sky/utils/cluster_utils.py,sha256=PxVIVCBPA8qKkKvrF7bImDC1jhUZeJDADYtV-ELTZXE,15527
@@ -511,7 +513,7 @@ sky/utils/common.py,sha256=SS-NXSqMD34GeUSxMJuZ-Kce_2yPxiPdXhQoNQR5Lho,2834
511
513
  sky/utils/common_utils.py,sha256=3p-x8pU5tAFxJ95eW-KpY-aRPTGqL6ZvMbUO_iSiPVM,39147
512
514
  sky/utils/config_utils.py,sha256=agfDWJi79DH5XKD_GBvUwhRwmB0-ZkYbKCjcEgV6gP4,13861
513
515
  sky/utils/context.py,sha256=ghSrVZLnrPwdFlqnaS_lKoyJGHZljbBt2X4O3MbdQp4,13712
514
- sky/utils/context_utils.py,sha256=6mujJK7cm5f0IrlphotHEfsjB9HR36nslKla94h82SQ,7536
516
+ sky/utils/context_utils.py,sha256=ORTXiN_-4V0pQN1U2XFkGpXcCNamOrNanAJYxVTsAdw,7580
515
517
  sky/utils/control_master_utils.py,sha256=iD4M0onjYOdZ2RuxjwMBl4KhafHXJzuHjvqlBUnu-VE,1450
516
518
  sky/utils/controller_utils.py,sha256=V1xvlC95gi7Rc8MuIbPyHe8Qe4Pc2BlcMfw_377pBW0,61702
517
519
  sky/utils/dag_utils.py,sha256=kPakbl9CVo1RECow7QHnp8Am-qLiTUWEcIPIUBKN1JQ,8563
@@ -575,9 +577,9 @@ sky/workspaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
575
577
  sky/workspaces/core.py,sha256=kRrdh-8MhX1953pML1B_DoStnDuNrsmHcZlnWoAxVo0,27218
576
578
  sky/workspaces/server.py,sha256=Box45DS54xXGHy7I3tGKGy-JP0a8G_z6IhfvGlEXtsA,3439
577
579
  sky/workspaces/utils.py,sha256=IIAiFoS6sdb2t0X5YoX9AietpTanZUQNTK8cePun-sY,2143
578
- skypilot_nightly-1.0.0.dev20251014.dist-info/licenses/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
579
- skypilot_nightly-1.0.0.dev20251014.dist-info/METADATA,sha256=CcLBt1sjoUMZZnXOiWEtLxhzrGhj6XsWkxAWOPO2ZhM,20598
580
- skypilot_nightly-1.0.0.dev20251014.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
581
- skypilot_nightly-1.0.0.dev20251014.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
582
- skypilot_nightly-1.0.0.dev20251014.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
583
- skypilot_nightly-1.0.0.dev20251014.dist-info/RECORD,,
580
+ skypilot_nightly-1.0.0.dev20251016.dist-info/licenses/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
581
+ skypilot_nightly-1.0.0.dev20251016.dist-info/METADATA,sha256=SOJeKlMVeKxQfJwNaz8T94iY-Ctw_q-zMXVSgnTMnkI,20779
582
+ skypilot_nightly-1.0.0.dev20251016.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
583
+ skypilot_nightly-1.0.0.dev20251016.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
584
+ skypilot_nightly-1.0.0.dev20251016.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
585
+ skypilot_nightly-1.0.0.dev20251016.dist-info/RECORD,,