skypilot-nightly 1.0.0.dev20250922__py3-none-any.whl → 1.0.0.dev20250925__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 (111) hide show
  1. sky/__init__.py +2 -2
  2. sky/backends/backend.py +10 -0
  3. sky/backends/backend_utils.py +194 -69
  4. sky/backends/cloud_vm_ray_backend.py +37 -13
  5. sky/backends/local_docker_backend.py +9 -0
  6. sky/client/cli/command.py +104 -53
  7. sky/client/sdk.py +13 -5
  8. sky/client/sdk_async.py +4 -2
  9. sky/clouds/kubernetes.py +2 -1
  10. sky/clouds/runpod.py +20 -7
  11. sky/core.py +7 -53
  12. sky/dashboard/out/404.html +1 -1
  13. sky/dashboard/out/_next/static/{KP6HCNMqb_bnJB17oplgW → bn-NHt5qTzeTN2PefXuDA}/_buildManifest.js +1 -1
  14. sky/dashboard/out/_next/static/chunks/1121-b911fc0a0b4742f0.js +1 -0
  15. sky/dashboard/out/_next/static/chunks/6856-2b3600ff2854d066.js +1 -0
  16. sky/dashboard/out/_next/static/chunks/8969-d8bc3a2b9cf839a9.js +1 -0
  17. sky/dashboard/out/_next/static/chunks/pages/clusters/[cluster]/[job]-2cb9b15e09cda628.js +16 -0
  18. sky/dashboard/out/_next/static/chunks/pages/clusters/{[cluster]-9525660179df3605.js → [cluster]-e052384df65ef200.js} +1 -1
  19. sky/dashboard/out/_next/static/chunks/{webpack-26167a9e6d91fa51.js → webpack-16ba1d7187d2e3b1.js} +1 -1
  20. sky/dashboard/out/clusters/[cluster]/[job].html +1 -1
  21. sky/dashboard/out/clusters/[cluster].html +1 -1
  22. sky/dashboard/out/clusters.html +1 -1
  23. sky/dashboard/out/config.html +1 -1
  24. sky/dashboard/out/index.html +1 -1
  25. sky/dashboard/out/infra/[context].html +1 -1
  26. sky/dashboard/out/infra.html +1 -1
  27. sky/dashboard/out/jobs/[job].html +1 -1
  28. sky/dashboard/out/jobs/pools/[pool].html +1 -1
  29. sky/dashboard/out/jobs.html +1 -1
  30. sky/dashboard/out/users.html +1 -1
  31. sky/dashboard/out/volumes.html +1 -1
  32. sky/dashboard/out/workspace/new.html +1 -1
  33. sky/dashboard/out/workspaces/[name].html +1 -1
  34. sky/dashboard/out/workspaces.html +1 -1
  35. sky/data/mounting_utils.py +19 -10
  36. sky/execution.py +4 -2
  37. sky/global_user_state.py +217 -36
  38. sky/jobs/client/sdk.py +10 -1
  39. sky/jobs/controller.py +7 -7
  40. sky/jobs/server/core.py +3 -3
  41. sky/jobs/server/server.py +15 -11
  42. sky/jobs/utils.py +1 -1
  43. sky/logs/agent.py +30 -3
  44. sky/logs/aws.py +9 -19
  45. sky/provision/__init__.py +2 -1
  46. sky/provision/aws/instance.py +2 -1
  47. sky/provision/azure/instance.py +2 -1
  48. sky/provision/cudo/instance.py +2 -2
  49. sky/provision/do/instance.py +2 -2
  50. sky/provision/docker_utils.py +41 -19
  51. sky/provision/fluidstack/instance.py +2 -2
  52. sky/provision/gcp/instance.py +2 -1
  53. sky/provision/hyperbolic/instance.py +2 -1
  54. sky/provision/instance_setup.py +1 -1
  55. sky/provision/kubernetes/instance.py +134 -8
  56. sky/provision/lambda_cloud/instance.py +2 -1
  57. sky/provision/nebius/instance.py +2 -1
  58. sky/provision/oci/instance.py +2 -1
  59. sky/provision/paperspace/instance.py +2 -2
  60. sky/provision/primeintellect/instance.py +2 -2
  61. sky/provision/provisioner.py +1 -0
  62. sky/provision/runpod/instance.py +2 -2
  63. sky/provision/scp/instance.py +2 -2
  64. sky/provision/seeweb/instance.py +2 -1
  65. sky/provision/vast/instance.py +2 -1
  66. sky/provision/vsphere/instance.py +6 -5
  67. sky/schemas/api/responses.py +2 -1
  68. sky/serve/autoscalers.py +2 -0
  69. sky/serve/client/impl.py +45 -19
  70. sky/serve/replica_managers.py +12 -5
  71. sky/serve/serve_utils.py +5 -7
  72. sky/serve/server/core.py +9 -6
  73. sky/serve/server/impl.py +78 -25
  74. sky/serve/server/server.py +4 -5
  75. sky/serve/service_spec.py +33 -0
  76. sky/server/constants.py +1 -1
  77. sky/server/daemons.py +2 -3
  78. sky/server/requests/executor.py +56 -6
  79. sky/server/requests/payloads.py +31 -8
  80. sky/server/requests/preconditions.py +2 -3
  81. sky/server/rest.py +2 -0
  82. sky/server/server.py +28 -19
  83. sky/server/stream_utils.py +34 -12
  84. sky/setup_files/dependencies.py +4 -1
  85. sky/setup_files/setup.py +44 -44
  86. sky/templates/kubernetes-ray.yml.j2 +16 -15
  87. sky/usage/usage_lib.py +3 -0
  88. sky/utils/cli_utils/status_utils.py +4 -5
  89. sky/utils/context.py +104 -29
  90. sky/utils/controller_utils.py +7 -6
  91. sky/utils/kubernetes/create_cluster.sh +13 -28
  92. sky/utils/kubernetes/delete_cluster.sh +10 -7
  93. sky/utils/kubernetes/generate_kind_config.py +6 -66
  94. sky/utils/kubernetes/kubernetes_deploy_utils.py +170 -37
  95. sky/utils/kubernetes_enums.py +5 -0
  96. sky/utils/ux_utils.py +35 -1
  97. sky/utils/yaml_utils.py +9 -0
  98. sky/volumes/client/sdk.py +44 -8
  99. sky/volumes/server/server.py +33 -7
  100. sky/volumes/volume.py +22 -14
  101. {skypilot_nightly-1.0.0.dev20250922.dist-info → skypilot_nightly-1.0.0.dev20250925.dist-info}/METADATA +40 -35
  102. {skypilot_nightly-1.0.0.dev20250922.dist-info → skypilot_nightly-1.0.0.dev20250925.dist-info}/RECORD +107 -107
  103. sky/dashboard/out/_next/static/chunks/1121-4ff1ec0dbc5792ab.js +0 -1
  104. sky/dashboard/out/_next/static/chunks/6856-9a2538f38c004652.js +0 -1
  105. sky/dashboard/out/_next/static/chunks/8969-a39efbadcd9fde80.js +0 -1
  106. sky/dashboard/out/_next/static/chunks/pages/clusters/[cluster]/[job]-1e9248ddbddcd122.js +0 -16
  107. /sky/dashboard/out/_next/static/{KP6HCNMqb_bnJB17oplgW → bn-NHt5qTzeTN2PefXuDA}/_ssgManifest.js +0 -0
  108. {skypilot_nightly-1.0.0.dev20250922.dist-info → skypilot_nightly-1.0.0.dev20250925.dist-info}/WHEEL +0 -0
  109. {skypilot_nightly-1.0.0.dev20250922.dist-info → skypilot_nightly-1.0.0.dev20250925.dist-info}/entry_points.txt +0 -0
  110. {skypilot_nightly-1.0.0.dev20250922.dist-info → skypilot_nightly-1.0.0.dev20250925.dist-info}/licenses/LICENSE +0 -0
  111. {skypilot_nightly-1.0.0.dev20250922.dist-info → skypilot_nightly-1.0.0.dev20250925.dist-info}/top_level.txt +0 -0
@@ -146,10 +146,9 @@ class ClusterStartCompletePrecondition(Precondition):
146
146
  self.cluster_name = cluster_name
147
147
 
148
148
  async def check(self) -> Tuple[bool, Optional[str]]:
149
- cluster_record = global_user_state.get_cluster_from_name(
149
+ cluster_status = global_user_state.get_status_from_cluster_name(
150
150
  self.cluster_name)
151
- if (cluster_record and
152
- cluster_record['status'] is status_lib.ClusterStatus.UP):
151
+ if cluster_status is status_lib.ClusterStatus.UP:
153
152
  # Shortcut for started clusters, ignore cluster not found
154
153
  # since the cluster record might not yet be created by the
155
154
  # launch task.
sky/server/rest.py CHANGED
@@ -9,6 +9,7 @@ import typing
9
9
  from typing import Any, Callable, cast, Optional, TypeVar
10
10
 
11
11
  import colorama
12
+ import urllib3.exceptions
12
13
 
13
14
  from sky import exceptions
14
15
  from sky import sky_logging
@@ -53,6 +54,7 @@ _session.headers[constants.VERSION_HEADER] = (
53
54
  _transient_errors = [
54
55
  requests.exceptions.RequestException,
55
56
  ConnectionError,
57
+ urllib3.exceptions.HTTPError,
56
58
  ]
57
59
 
58
60
 
sky/server/server.py CHANGED
@@ -445,6 +445,22 @@ async def loop_lag_monitor(loop: asyncio.AbstractEventLoop,
445
445
  loop.call_at(target, tick)
446
446
 
447
447
 
448
+ def schedule_on_boot_check():
449
+ try:
450
+ executor.schedule_request(
451
+ request_id='skypilot-server-on-boot-check',
452
+ request_name='check',
453
+ request_body=payloads.CheckBody(),
454
+ func=sky_check.check,
455
+ schedule_type=requests_lib.ScheduleType.SHORT,
456
+ is_skypilot_system=True,
457
+ )
458
+ except exceptions.RequestAlreadyExistsError:
459
+ # Lifespan will be executed in each uvicorn worker process, we
460
+ # can safely ignore the error if the task is already scheduled.
461
+ logger.debug('Request skypilot-server-on-boot-check already exists.')
462
+
463
+
448
464
  @contextlib.asynccontextmanager
449
465
  async def lifespan(app: fastapi.FastAPI): # pylint: disable=redefined-outer-name
450
466
  """FastAPI lifespan context manager."""
@@ -469,6 +485,7 @@ async def lifespan(app: fastapi.FastAPI): # pylint: disable=redefined-outer-nam
469
485
  # Lifespan will be executed in each uvicorn worker process, we
470
486
  # can safely ignore the error if the task is already scheduled.
471
487
  logger.debug(f'Request {event.id} already exists.')
488
+ schedule_on_boot_check()
472
489
  asyncio.create_task(cleanup_upload_ids())
473
490
  if metrics_utils.METRICS_ENABLED:
474
491
  # Start monitoring the event loop lag in each server worker
@@ -1216,19 +1233,8 @@ async def logs(
1216
1233
  schedule_type=requests_lib.ScheduleType.SHORT,
1217
1234
  request_cluster_name=cluster_job_body.cluster_name,
1218
1235
  )
1219
- task = asyncio.create_task(executor.execute_request_coroutine(request_task))
1220
-
1221
- async def cancel_task():
1222
- try:
1223
- logger.info('Client disconnected for request: '
1224
- f'{request.state.request_id}')
1225
- task.cancel()
1226
- await task
1227
- except asyncio.CancelledError:
1228
- pass
1229
-
1230
- # Cancel the task after the request is done or client disconnects
1231
- background_tasks.add_task(cancel_task)
1236
+ task = executor.execute_request_in_coroutine(request_task)
1237
+ background_tasks.add_task(task.cancel)
1232
1238
  # TODO(zhwu): This makes viewing logs in browser impossible. We should adopt
1233
1239
  # the same approach as /stream.
1234
1240
  return stream_utils.stream_response(
@@ -1354,10 +1360,12 @@ def provision_logs(cluster_body: payloads.ClusterNameBody,
1354
1360
  effective_tail = None if tail is None or tail <= 0 else tail
1355
1361
 
1356
1362
  return fastapi.responses.StreamingResponse(
1357
- content=stream_utils.log_streamer(None,
1358
- log_path,
1359
- tail=effective_tail,
1360
- follow=follow),
1363
+ content=stream_utils.log_streamer(
1364
+ None,
1365
+ log_path,
1366
+ tail=effective_tail,
1367
+ follow=follow,
1368
+ cluster_name=cluster_body.cluster_name),
1361
1369
  media_type='text/plain',
1362
1370
  headers={
1363
1371
  'Cache-Control': 'no-cache, no-transform',
@@ -1419,12 +1427,13 @@ async def local_up(request: fastapi.Request,
1419
1427
 
1420
1428
 
1421
1429
  @app.post('/local_down')
1422
- async def local_down(request: fastapi.Request) -> None:
1430
+ async def local_down(request: fastapi.Request,
1431
+ local_down_body: payloads.LocalDownBody) -> None:
1423
1432
  """Tears down the Kubernetes cluster started by local_up."""
1424
1433
  executor.schedule_request(
1425
1434
  request_id=request.state.request_id,
1426
1435
  request_name='local_down',
1427
- request_body=payloads.RequestBody(),
1436
+ request_body=local_down_body,
1428
1437
  func=core.local_down,
1429
1438
  schedule_type=requests_lib.ScheduleType.LONG,
1430
1439
  )
@@ -8,10 +8,12 @@ from typing import AsyncGenerator, Deque, List, Optional
8
8
  import aiofiles
9
9
  import fastapi
10
10
 
11
+ from sky import global_user_state
11
12
  from sky import sky_logging
12
13
  from sky.server.requests import requests as requests_lib
13
14
  from sky.utils import message_utils
14
15
  from sky.utils import rich_utils
16
+ from sky.utils import status_lib
15
17
 
16
18
  logger = sky_logging.init_logger(__name__)
17
19
 
@@ -22,6 +24,7 @@ logger = sky_logging.init_logger(__name__)
22
24
  _BUFFER_SIZE = 8 * 1024 # 8KB
23
25
  _BUFFER_TIMEOUT = 0.02 # 20ms
24
26
  _HEARTBEAT_INTERVAL = 30
27
+ _CLUSTER_STATUS_INTERVAL = 1
25
28
 
26
29
 
27
30
  async def _yield_log_file_with_payloads_skipped(
@@ -37,11 +40,13 @@ async def _yield_log_file_with_payloads_skipped(
37
40
  yield line_str
38
41
 
39
42
 
40
- async def log_streamer(request_id: Optional[str],
41
- log_path: pathlib.Path,
42
- plain_logs: bool = False,
43
- tail: Optional[int] = None,
44
- follow: bool = True) -> AsyncGenerator[str, None]:
43
+ async def log_streamer(
44
+ request_id: Optional[str],
45
+ log_path: pathlib.Path,
46
+ plain_logs: bool = False,
47
+ tail: Optional[int] = None,
48
+ follow: bool = True,
49
+ cluster_name: Optional[str] = None) -> AsyncGenerator[str, None]:
45
50
  """Streams the logs of a request.
46
51
 
47
52
  Args:
@@ -51,6 +56,8 @@ async def log_streamer(request_id: Optional[str],
51
56
  plain_logs: Whether to show plain logs.
52
57
  tail: The number of lines to tail. If None, tail the whole file.
53
58
  follow: Whether to follow the log file.
59
+ cluster_name: The cluster name to check status for provision logs.
60
+ If provided and cluster status is UP, streaming will terminate.
54
61
  """
55
62
 
56
63
  if request_id is not None:
@@ -104,15 +111,17 @@ async def log_streamer(request_id: Optional[str],
104
111
 
105
112
  async with aiofiles.open(log_path, 'rb') as f:
106
113
  async for chunk in _tail_log_file(f, request_id, plain_logs, tail,
107
- follow):
114
+ follow, cluster_name):
108
115
  yield chunk
109
116
 
110
117
 
111
- async def _tail_log_file(f: aiofiles.threadpool.binary.AsyncBufferedReader,
112
- request_id: Optional[str] = None,
113
- plain_logs: bool = False,
114
- tail: Optional[int] = None,
115
- follow: bool = True) -> AsyncGenerator[str, None]:
118
+ async def _tail_log_file(
119
+ f: aiofiles.threadpool.binary.AsyncBufferedReader,
120
+ request_id: Optional[str] = None,
121
+ plain_logs: bool = False,
122
+ tail: Optional[int] = None,
123
+ follow: bool = True,
124
+ cluster_name: Optional[str] = None) -> AsyncGenerator[str, None]:
116
125
  """Tail the opened log file, buffer the lines and flush in chunks."""
117
126
 
118
127
  if tail is not None:
@@ -128,6 +137,7 @@ async def _tail_log_file(f: aiofiles.threadpool.binary.AsyncBufferedReader,
128
137
  yield line_str
129
138
 
130
139
  last_heartbeat_time = asyncio.get_event_loop().time()
140
+ last_cluster_status_check_time = asyncio.get_event_loop().time()
131
141
 
132
142
  # Buffer the lines in memory and flush them in chunks to improve log
133
143
  # tailing throughput.
@@ -176,7 +186,19 @@ async def _tail_log_file(f: aiofiles.threadpool.binary.AsyncBufferedReader,
176
186
  break
177
187
  if not follow:
178
188
  break
179
-
189
+ # Provision logs pass in cluster_name, check cluster status
190
+ # periodically to see if provisioning is done. We only
191
+ # check once a second to avoid overloading the DB.
192
+ check_status = (current_time - last_cluster_status_check_time
193
+ ) >= _CLUSTER_STATUS_INTERVAL
194
+ if cluster_name is not None and check_status:
195
+ cluster_record = await (
196
+ global_user_state.get_status_from_cluster_name_async(
197
+ cluster_name))
198
+ if (cluster_record is None or
199
+ cluster_record != status_lib.ClusterStatus.INIT):
200
+ break
201
+ last_cluster_status_check_time = current_time
180
202
  if current_time - last_heartbeat_time >= _HEARTBEAT_INTERVAL:
181
203
  # Currently just used to keep the connection busy, refer to
182
204
  # https://github.com/skypilot-org/skypilot/issues/5750 for
@@ -112,6 +112,7 @@ server_dependencies = [
112
112
  GRPC,
113
113
  PROTOBUF,
114
114
  'aiosqlite',
115
+ 'greenlet',
115
116
  ]
116
117
 
117
118
  local_ray = [
@@ -192,7 +193,9 @@ extras_require: Dict[str, List[str]] = {
192
193
  'remote': remote,
193
194
  # For the container registry auth api. Reference:
194
195
  # https://github.com/runpod/runpod-python/releases/tag/1.6.1
195
- 'runpod': ['runpod>=1.6.1'],
196
+ # RunPod needs a TOML parser to read ~/.runpod/config.toml. On Python 3.11+
197
+ # stdlib provides tomllib; on lower versions we depend on tomli explicitly.
198
+ 'runpod': ['runpod>=1.6.1', 'tomli; python_version < "3.11"'],
196
199
  'fluidstack': [], # No dependencies needed for fluidstack
197
200
  'cudo': ['cudo-compute>=0.1.10'],
198
201
  'paperspace': [], # No dependencies needed for paperspace
sky/setup_files/setup.py CHANGED
@@ -148,47 +148,47 @@ if os.path.exists(readme_filepath):
148
148
  long_description = io.open(readme_filepath, 'r', encoding='utf-8').read()
149
149
  long_description = parse_readme(long_description)
150
150
 
151
- atexit.register(revert_commit_hash)
152
- replace_commit_hash()
153
-
154
- setuptools.setup(
155
- # NOTE: this affects the package.whl wheel name. When changing this (if
156
- # ever), you must grep for '.whl' and change all corresponding wheel paths
157
- # (templates/*.j2 and wheel_utils.py).
158
- name='skypilot-nightly',
159
- version=find_version(),
160
- packages=setuptools.find_packages(),
161
- author='SkyPilot Team',
162
- license='Apache 2.0',
163
- readme='README.md',
164
- description='SkyPilot: Run AI on Any Infra — Unified, Faster, Cheaper.',
165
- long_description=long_description,
166
- long_description_content_type='text/markdown',
167
- setup_requires=['wheel'],
168
- requires_python='>=3.7',
169
- install_requires=dependencies['install_requires'],
170
- extras_require=dependencies['extras_require'],
171
- entry_points={
172
- 'console_scripts': ['sky = sky.cli:cli'],
173
- },
174
- include_package_data=True,
175
- classifiers=[
176
- 'Programming Language :: Python :: 3.7',
177
- 'Programming Language :: Python :: 3.8',
178
- 'Programming Language :: Python :: 3.9',
179
- 'Programming Language :: Python :: 3.10',
180
- 'Programming Language :: Python :: 3.11',
181
- 'Programming Language :: Python :: 3.12',
182
- 'Programming Language :: Python :: 3.13',
183
- 'License :: OSI Approved :: Apache Software License',
184
- 'Operating System :: OS Independent',
185
- 'Topic :: Software Development :: Libraries :: Python Modules',
186
- 'Topic :: System :: Distributed Computing',
187
- ],
188
- project_urls={
189
- 'Homepage': 'https://github.com/skypilot-org/skypilot',
190
- 'Issues': 'https://github.com/skypilot-org/skypilot/issues',
191
- 'Discussion': 'https://github.com/skypilot-org/skypilot/discussions',
192
- 'Documentation': 'https://docs.skypilot.co/',
193
- },
194
- )
151
+ if __name__ == '__main__':
152
+ atexit.register(revert_commit_hash)
153
+ replace_commit_hash()
154
+ setuptools.setup(
155
+ # NOTE: this affects the package.whl wheel name. When changing this (if
156
+ # ever), you must grep for '.whl' and change all corresponding wheel paths
157
+ # (templates/*.j2 and wheel_utils.py).
158
+ name='skypilot-nightly',
159
+ version=find_version(),
160
+ packages=setuptools.find_packages(),
161
+ author='SkyPilot Team',
162
+ license='Apache 2.0',
163
+ readme='README.md',
164
+ description='SkyPilot: Run AI on Any Infra — Unified, Faster, Cheaper.',
165
+ long_description=long_description,
166
+ long_description_content_type='text/markdown',
167
+ setup_requires=['wheel'],
168
+ requires_python='>=3.7',
169
+ install_requires=dependencies['install_requires'],
170
+ extras_require=dependencies['extras_require'],
171
+ entry_points={
172
+ 'console_scripts': ['sky = sky.cli:cli'],
173
+ },
174
+ include_package_data=True,
175
+ classifiers=[
176
+ 'Programming Language :: Python :: 3.7',
177
+ 'Programming Language :: Python :: 3.8',
178
+ 'Programming Language :: Python :: 3.9',
179
+ 'Programming Language :: Python :: 3.10',
180
+ 'Programming Language :: Python :: 3.11',
181
+ 'Programming Language :: Python :: 3.12',
182
+ 'Programming Language :: Python :: 3.13',
183
+ 'License :: OSI Approved :: Apache Software License',
184
+ 'Operating System :: OS Independent',
185
+ 'Topic :: Software Development :: Libraries :: Python Modules',
186
+ 'Topic :: System :: Distributed Computing',
187
+ ],
188
+ project_urls={
189
+ 'Homepage': 'https://github.com/skypilot-org/skypilot',
190
+ 'Issues': 'https://github.com/skypilot-org/skypilot/issues',
191
+ 'Discussion': 'https://github.com/skypilot-org/skypilot/discussions',
192
+ 'Documentation': 'https://docs.skypilot.co/',
193
+ },
194
+ )
@@ -510,6 +510,16 @@ available_node_types:
510
510
  valueFrom:
511
511
  fieldRef:
512
512
  fieldPath: metadata.labels['ray-node-type']
513
+ - name: SKYPILOT_POD_CPU_CORE_LIMIT
514
+ valueFrom:
515
+ resourceFieldRef:
516
+ containerName: ray-node
517
+ resource: requests.cpu
518
+ - name: SKYPILOT_POD_MEMORY_BYTES_LIMIT
519
+ valueFrom:
520
+ resourceFieldRef:
521
+ containerName: ray-node
522
+ resource: requests.memory
513
523
  {% for key, value in k8s_env_vars.items() if k8s_env_vars is not none %}
514
524
  - name: {{ key }}
515
525
  value: {{ value }}
@@ -630,13 +640,6 @@ available_node_types:
630
640
  command: ["/bin/bash", "-c", "--"]
631
641
  args:
632
642
  - |
633
- # For backwards compatibility, we put a marker file in the pod
634
- # to indicate that the pod is running with the changes introduced
635
- # in project nimbus: https://github.com/skypilot-org/skypilot/pull/4393
636
- # TODO: Remove this marker file and it's usage in setup_commands
637
- # after v0.10.0 release.
638
- touch /tmp/skypilot_is_nimbus
639
-
640
643
  # Helper function to conditionally use sudo
641
644
  # TODO(zhwu): consolidate the two prefix_cmd and sudo replacements
642
645
  prefix_cmd() { if [ $(id -u) -ne 0 ]; then echo "sudo"; else echo ""; fi; }
@@ -1333,18 +1336,16 @@ setup_commands:
1333
1336
  # Wait for SSH setup to complete before proceeding
1334
1337
  if [ -f /tmp/apt_ssh_setup_started ]; then
1335
1338
  echo "=== Logs for asynchronous SSH setup ===";
1336
- [ -f /tmp/apt_ssh_setup_complete ] && cat /tmp/${STEPS[0]}.log ||
1337
- { tail -f -n +1 /tmp/${STEPS[0]}.log & TAIL_PID=$!; echo "Tail PID: $TAIL_PID"; until [ -f /tmp/apt_ssh_setup_complete ] || [ -f /tmp/${STEPS[0]}.failed ]; do sleep 0.5; done; kill $TAIL_PID || true; };
1339
+ ([ -f /tmp/apt_ssh_setup_complete ]|| [ -f /tmp/${STEPS[0]}.failed ]) && cat /tmp/${STEPS[0]}.log ||
1340
+ { tail -f -n +1 /tmp/${STEPS[0]}.log & TAIL_PID=$!; echo "Tail PID: $TAIL_PID"; sleep 0.5; until [ -f /tmp/apt_ssh_setup_complete ] || [ -f /tmp/${STEPS[0]}.failed ]; do sleep 0.5; done; kill $TAIL_PID || true; };
1338
1341
  [ -f /tmp/${STEPS[0]}.failed ] && { echo "Error: ${STEPS[0]} failed. Exiting."; exit 1; } || true;
1339
1342
  fi
1340
1343
 
1341
1344
  echo "=== Logs for asynchronous ray and skypilot installation ===";
1342
- if [ -f /tmp/skypilot_is_nimbus ]; then
1343
- echo "=== Logs for asynchronous ray and skypilot installation ===";
1344
- [ -f /tmp/ray_skypilot_installation_complete ] && cat /tmp/${STEPS[1]}.log ||
1345
- { tail -f -n +1 /tmp/${STEPS[1]}.log & TAIL_PID=$!; echo "Tail PID: $TAIL_PID"; until [ -f /tmp/ray_skypilot_installation_complete ] || [ -f /tmp/${STEPS[1]}.failed ]; do sleep 0.5; done; kill $TAIL_PID || true; };
1346
- [ -f /tmp/${STEPS[1]}.failed ] && { echo "Error: ${STEPS[1]} failed. Exiting."; exit 1; } || true;
1347
- fi
1345
+ ([ -f /tmp/ray_skypilot_installation_complete ]|| [ -f /tmp/${STEPS[1]}.failed ]) && cat /tmp/${STEPS[1]}.log ||
1346
+ { tail -f -n +1 /tmp/${STEPS[1]}.log & TAIL_PID=$!; echo "Tail PID: $TAIL_PID"; sleep 0.5; until [ -f /tmp/ray_skypilot_installation_complete ] || [ -f /tmp/${STEPS[1]}.failed ]; do sleep 0.5; done; kill $TAIL_PID || true; };
1347
+ [ -f /tmp/${STEPS[1]}.failed ] && { echo "Error: ${STEPS[1]} failed. Exiting."; exit 1; } || true;
1348
+
1348
1349
  end_epoch=$(date +%s);
1349
1350
  echo "=== Ray and skypilot dependencies installation completed in $(($end_epoch - $start_epoch)) secs ===";
1350
1351
  start_epoch=$(date +%s);
sky/usage/usage_lib.py CHANGED
@@ -14,6 +14,7 @@ from typing_extensions import ParamSpec
14
14
 
15
15
  import sky
16
16
  from sky import sky_logging
17
+ from sky import skypilot_config
17
18
  from sky.adaptors import common as adaptors_common
18
19
  from sky.usage import constants
19
20
  from sky.utils import common_utils
@@ -167,6 +168,7 @@ class UsageMessageToReport(MessageToReport):
167
168
  self.runtimes: Dict[str, float] = {} # update_runtime
168
169
  self.exception: Optional[str] = None # entrypoint_context
169
170
  self.stacktrace: Optional[str] = None # entrypoint_context
171
+ self.skypilot_config: Optional[Dict[str, Any]] = None
170
172
 
171
173
  # Whether API server is deployed remotely.
172
174
  self.using_remote_api_server: bool = (
@@ -177,6 +179,7 @@ class UsageMessageToReport(MessageToReport):
177
179
  self.client_entrypoint = common_utils.get_current_client_entrypoint(
178
180
  msg)
179
181
  self.entrypoint = msg
182
+ self.skypilot_config = dict(skypilot_config.to_dict())
180
183
 
181
184
  def set_internal(self):
182
185
  self.internal = True
@@ -11,6 +11,7 @@ from sky.utils import common_utils
11
11
  from sky.utils import log_utils
12
12
  from sky.utils import resources_utils
13
13
  from sky.utils import status_lib
14
+ from sky.utils import ux_utils
14
15
 
15
16
  if typing.TYPE_CHECKING:
16
17
  from sky.provision.kubernetes import utils as kubernetes_utils
@@ -105,11 +106,9 @@ def show_status_table(cluster_records: List[responses.StatusResponse],
105
106
 
106
107
  if query_clusters:
107
108
  cluster_names = {record['name'] for record in cluster_records}
108
- not_found_clusters = [
109
- repr(cluster)
110
- for cluster in query_clusters
111
- if cluster not in cluster_names
112
- ]
109
+ not_found_clusters = ux_utils.get_non_matched_query(
110
+ query_clusters, cluster_names)
111
+ not_found_clusters = [repr(cluster) for cluster in not_found_clusters]
113
112
  if not_found_clusters:
114
113
  cluster_str = 'Cluster'
115
114
  if len(not_found_clusters) > 1:
sky/utils/context.py CHANGED
@@ -2,15 +2,21 @@
2
2
 
3
3
  import asyncio
4
4
  from collections.abc import Mapping
5
- from collections.abc import MutableMapping
6
5
  import contextvars
6
+ import copy
7
7
  import functools
8
+ import inspect
8
9
  import os
9
10
  import pathlib
10
11
  import subprocess
11
12
  import sys
12
- import typing
13
- from typing import Any, Callable, Dict, Optional, TextIO, TypeVar
13
+ from typing import (Callable, Dict, Iterator, MutableMapping, Optional, TextIO,
14
+ TYPE_CHECKING, TypeVar)
15
+
16
+ from typing_extensions import ParamSpec
17
+
18
+ if TYPE_CHECKING:
19
+ from sky.skypilot_config import ConfigContext
14
20
 
15
21
 
16
22
  class Context(object):
@@ -88,7 +94,7 @@ class Context(object):
88
94
  else:
89
95
  self._log_file_handle = open(log_file, 'a', encoding='utf-8')
90
96
  self._log_file = log_file
91
- if original_log_file is not None:
97
+ if original_log_handle is not None:
92
98
  original_log_handle.close()
93
99
  return original_log_file
94
100
 
@@ -102,8 +108,30 @@ class Context(object):
102
108
  for k, v in envs.items():
103
109
  self.env_overrides[k] = v
104
110
 
111
+ def cleanup(self):
112
+ """Clean up the context."""
113
+ if self._log_file_handle is not None:
114
+ self._log_file_handle.close()
115
+ self._log_file_handle = None
116
+
117
+ def copy(self) -> 'Context':
118
+ """Create a copy of the context.
119
+
120
+ Changes to the current context after this call will not affect the copy.
121
+ The new context will get its own handle/fd for the log file.
122
+ The new context will get an independent copy of the env var overrides.
123
+ The new context will get an independent copy of the config context.
124
+ Cancellation of the current context will not be propagated to the copy.
125
+ """
126
+ new_context = Context()
127
+ new_context.redirect_log(self._log_file)
128
+ new_context.env_overrides = self.env_overrides.copy()
129
+ new_context.config_context = copy.deepcopy(self.config_context)
130
+ return new_context
105
131
 
106
- _CONTEXT = contextvars.ContextVar('sky_context', default=None)
132
+
133
+ _CONTEXT = contextvars.ContextVar[Optional[Context]]('sky_context',
134
+ default=None)
107
135
 
108
136
 
109
137
  def get() -> Optional[Context]:
@@ -116,7 +144,7 @@ def get() -> Optional[Context]:
116
144
  return _CONTEXT.get()
117
145
 
118
146
 
119
- class ContextualEnviron(MutableMapping):
147
+ class ContextualEnviron(MutableMapping[str, str]):
120
148
  """Environment variables wrapper with contextual overrides.
121
149
 
122
150
  An instance of ContextualEnviron will typically be used to replace
@@ -155,10 +183,10 @@ class ContextualEnviron(MutableMapping):
155
183
  assert os.environ['FOO'] == 'BAR1'
156
184
  """
157
185
 
158
- def __init__(self, environ):
186
+ def __init__(self, environ: 'os._Environ[str]') -> None:
159
187
  self._environ = environ
160
188
 
161
- def __getitem__(self, key):
189
+ def __getitem__(self, key: str) -> str:
162
190
  ctx = get()
163
191
  if ctx is not None:
164
192
  if key in ctx.env_overrides:
@@ -170,10 +198,10 @@ class ContextualEnviron(MutableMapping):
170
198
  return value
171
199
  return self._environ[key]
172
200
 
173
- def __iter__(self):
174
- ctx = get()
175
- deleted_keys = set()
176
- if ctx is not None:
201
+ def __iter__(self) -> Iterator[str]:
202
+
203
+ def iter_from_context(ctx: Context) -> Iterator[str]:
204
+ deleted_keys = set()
177
205
  for key, value in ctx.env_overrides.items():
178
206
  if value is None:
179
207
  deleted_keys.add(key)
@@ -182,20 +210,24 @@ class ContextualEnviron(MutableMapping):
182
210
  # Deduplicate the keys
183
211
  if key not in ctx.env_overrides and key not in deleted_keys:
184
212
  yield key
213
+
214
+ ctx = get()
215
+ if ctx is not None:
216
+ return iter_from_context(ctx)
185
217
  else:
186
218
  return self._environ.__iter__()
187
219
 
188
- def __len__(self):
220
+ def __len__(self) -> int:
189
221
  return len(dict(self))
190
222
 
191
- def __setitem__(self, key, value):
223
+ def __setitem__(self, key: str, value: str) -> None:
192
224
  ctx = get()
193
225
  if ctx is not None:
194
226
  ctx.env_overrides[key] = value
195
227
  else:
196
228
  self._environ.__setitem__(key, value)
197
229
 
198
- def __delitem__(self, key):
230
+ def __delitem__(self, key: str) -> None:
199
231
  ctx = get()
200
232
  if ctx is not None:
201
233
  if key in ctx.env_overrides:
@@ -211,10 +243,13 @@ class ContextualEnviron(MutableMapping):
211
243
  else:
212
244
  self._environ.__delitem__(key)
213
245
 
214
- def __repr__(self):
215
- return self._environ.__repr__()
246
+ def __repr__(self) -> str:
247
+ # Adapted from os._Environ.__repr__
248
+ formatted_items = ', '.join(
249
+ f'{key!r}: {value!r}' for key, value in self.items())
250
+ return f'ctx_environ({{{formatted_items}}})'
216
251
 
217
- def copy(self):
252
+ def copy(self) -> Dict[str, str]:
218
253
  copied = self._environ.copy()
219
254
  ctx = get()
220
255
  if ctx is not None:
@@ -225,7 +260,7 @@ class ContextualEnviron(MutableMapping):
225
260
  copied[key] = ctx.env_overrides[key]
226
261
  return copied
227
262
 
228
- def setdefault(self, key, default=None):
263
+ def setdefault(self, key: str, default: str) -> str:
229
264
  return self._environ.setdefault(key, default)
230
265
 
231
266
  def __ior__(self, other):
@@ -260,27 +295,67 @@ class Popen(subprocess.Popen):
260
295
  super().__init__(*args, env=env, **kwargs)
261
296
 
262
297
 
263
- F = TypeVar('F', bound=Callable[..., Any])
298
+ P = ParamSpec('P')
299
+ T = TypeVar('T')
264
300
 
265
301
 
266
- def contextual(func: F) -> F:
302
+ def contextual(func: Callable[P, T]) -> Callable[P, T]:
267
303
  """Decorator to initialize a context before executing the function.
268
304
 
269
- If a context is already initialized, this decorator will reset the context,
270
- i.e. all contextual variables set previously will be cleared.
305
+ If a context is already initialized, this decorator will create a new
306
+ context that inherits the values from the existing context.
271
307
  """
272
308
 
273
309
  @functools.wraps(func)
274
- def wrapper(*args, **kwargs):
275
- initialize()
276
- return func(*args, **kwargs)
310
+ def wrapper(*args: P.args, **kwargs: P.kwargs) -> T:
311
+ original_ctx = get()
312
+ initialize(original_ctx)
313
+ ctx = get()
314
+ cleanup_after_await = False
315
+
316
+ def cleanup():
317
+ try:
318
+ if ctx is not None:
319
+ ctx.cleanup()
320
+ finally:
321
+ # Note: _CONTEXT.reset() is not reliable - may fail with
322
+ # ValueError: <Token ... at ...> was created in a different
323
+ # Context
324
+ # We must make sure this happens because otherwise we may try to
325
+ # write to the wrong log.
326
+ _CONTEXT.set(original_ctx)
327
+
328
+ # There are two cases:
329
+ # 1. The function is synchronous (that is, return type is not awaitable)
330
+ # In this case, we use a finally block to cleanup the context.
331
+ # 2. The function is asynchronous (that is, return type is awaitable)
332
+ # In this case, we need to construct an async def wrapper and await
333
+ # the value, then call the cleanup function in the finally block.
334
+
335
+ async def await_with_cleanup(awaitable):
336
+ try:
337
+ return await awaitable
338
+ finally:
339
+ cleanup()
340
+
341
+ try:
342
+ ret = func(*args, **kwargs)
343
+ if inspect.isawaitable(ret):
344
+ cleanup_after_await = True
345
+ return await_with_cleanup(ret)
346
+ else:
347
+ return ret
348
+ finally:
349
+ if not cleanup_after_await:
350
+ cleanup()
277
351
 
278
- return typing.cast(F, wrapper)
352
+ return wrapper
279
353
 
280
354
 
281
- def initialize():
355
+ def initialize(base_context: Optional[Context] = None) -> None:
282
356
  """Initialize the current SkyPilot context."""
283
- _CONTEXT.set(Context())
357
+ new_context = base_context.copy() if base_context is not None else Context()
358
+ _CONTEXT.set(new_context)
284
359
 
285
360
 
286
361
  class _ContextualStream: