File size: 80,148 Bytes
76d6ddf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 | # coding=utf-8
# Copyright 2026-present, the HuggingFace Inc. team.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import hashlib
import hmac
import json
import threading
import time
from concurrent.futures import ThreadPoolExecutor
from contextlib import contextmanager
from dataclasses import dataclass, field
from pathlib import Path
from secrets import token_hex
from typing import Any, BinaryIO, Callable, Iterator, List, Literal, overload
import httpx
from . import constants
from ._sandbox_cache import (
CachedHost,
delete_pool_cache,
read_pool_cache,
save_pool_cache,
)
from ._space_api import Volume
from .errors import HfHubHTTPError, SandboxCommandError, SandboxError
from .hf_api import HfApi, JobInfo
from .utils import get_token, logging
from .utils._parsing import parse_duration
logger = logging.get_logger(__name__)
# Port the sandbox server listens on inside the job. Deliberately uncommon so that typical user ports stay free.
SANDBOX_SERVER_PORT = 49983
# Stable marker present on every sandbox job to ease filtering
SANDBOX_LABEL = "hf-sandbox"
# Sandbox mode: "dedicated" or "pool" to ease filtering
MODE_LABEL = "hf-sandbox-mode"
MODE_DEDICATED = "dedicated"
MODE_POOL = "pool"
# Pool name, to scope host reuse to a named group (see SandboxPool(name=...)). Present on pool
# host jobs only. Pool config (capacity, idle timeout) lives in the host's env vars, read via
# inspect_job β labels are kept for filtering/grouping only.
POOL_LABEL = "hf-sandbox-pool"
# Per-job public nonce the sandbox token is derived from (see _derive_sandbox_token), so
# `Sandbox.connect(id)` can recompute the token from any machine with no local state.
NONCE_LABEL = "hf-sandbox-nonce"
DEFAULT_IMAGE = "python:3.12"
DEFAULT_IDLE_TIMEOUT = 10 * 60 # 10 minutes
SANDBOX_MAX_LIFETIME = "24h"
DEFAULT_SANDBOXES_PER_HOST = 50
SHARED_ID_SEP = "."
# Job stages in which a sandbox/host is finished and needs no teardown.
_TERMINAL_STAGES = ("COMPLETED", "ERROR", "DELETED", "CANCELED")
# Safety bound on create()'s pack-retry loop
_MAX_PACK_ROUNDS = 8
# hf-mount path where the server bucket is mounted on every sandbox job
_SERVER_MOUNT_PATH = "/.hf-sbx-server"
# Job startup script (needs only /bin/sh). The server bucket is public, so the download is
# unauthenticated: no HF credential is ever placed in the job environment (see `_derive_sandbox_token`).
_BOOTSTRAP_DOWNLOAD = """\
set -e
d=/tmp/.sbx-server
if command -v wget >/dev/null 2>&1; then wget -q -O "$d" "$SBX_SERVER_URL"
elif command -v curl >/dev/null 2>&1; then curl -fsSL -o "$d" "$SBX_SERVER_URL"
else cp "$SBX_SERVER_MOUNT/sbx-server" "$d"; fi
chmod +x "$d"
unset SBX_SERVER_URL SBX_SERVER_MOUNT
exec "$d"
"""
def _derive_sandbox_token(hf_token: str, nonce: str) -> str:
"""Derive the per-sandbox auth token from the user's HF token and the sandbox nonce.
Stateless: any machine holding the same HF token can recompute it from the
nonce stored in the job's labels, so `Sandbox.connect(job_id)` needs no local state.
The HF token itself is never sent to the sandbox.
"""
return hmac.new(hf_token.encode(), f"hf-sandbox:{nonce}".encode(), hashlib.sha256).hexdigest()
def _duration_to_secs(duration: int | float | str) -> int:
"""Parse a duration like 300, "300s", "10m", "2h", "1d" into seconds."""
if isinstance(duration, (int, float)):
return int(duration)
return parse_duration(duration)
@dataclass
class SandboxCommandResult:
"""Result of a command executed in a sandbox with [`Sandbox.run`]."""
exit_code: int | None
stdout: str
stderr: str
signal: int | None = None
timed_out: bool = False
duration_ms: int = 0
@property
def ok(self) -> bool:
return self.exit_code == 0
def __repr__(self) -> str:
out = self.stdout if len(self.stdout) <= 80 else self.stdout[:77] + "..."
return f"SandboxCommandResult(exit_code={self.exit_code}, stdout={out!r}, duration_ms={self.duration_ms})"
@dataclass
class SandboxProcess:
"""A background process started in a sandbox with [`Sandbox.run`]`(..., background=True)`.
List a sandbox's processes with [`Sandbox.processes`] and stop one with [`SandboxProcess.kill`].
Completed processes stay in the listing until the sandbox is deleted, so `running` and
`exit_code` tell whether a process is still alive or already exited (as of when it was listed).
"""
pid: int
cmd: str | List[str]
# Back-reference to the sandbox, used by `kill()`. Excluded from repr/eq so a process
# stays a plain data object (and two with the same pid compare equal).
_sandbox: "Sandbox" = field(repr=False, compare=False)
tag: str | None = None
started_at_ms: int | None = None
running: bool = True
exit_code: int | None = None
def kill(self) -> None:
"""Terminate the background process (idempotent server-side)."""
self._sandbox._request("DELETE", f"/processes/{self.pid}")
@dataclass
class FileEntry:
"""A file or directory inside a sandbox."""
name: str
path: str
type: Literal["file", "dir", "symlink"]
size: int
mtime_ms: int | None = None
mode: str = ""
class SandboxFiles:
"""Filesystem operations inside a sandbox, available as [`Sandbox.files`].
In shared (pool) mode, paths are rooted at the sandbox's private home β the
only place its code can write β so a leading `/` is taken relative to that
home. In dedicated mode, paths are absolute on the container filesystem.
"""
# Above this size, transfers are split into ranged requests over parallel
# connections: a single TCP stream through the jobs proxy is limited by the
# bandwidth-delay product (~2 MiB/s at ~100ms RTT); parallel streams scale it.
PARALLEL_THRESHOLD = 2 * 1024 * 1024
PARALLEL_CHUNK_SIZE = 1 * 1024 * 1024
PARALLEL_MAX_WORKERS = 16
def __init__(self, sandbox: "Sandbox") -> None:
self._sandbox = sandbox
def read(self, path: str) -> bytes:
"""Read a file from the sandbox and return its content as bytes."""
size = self.stat(path).size
if size > self.PARALLEL_THRESHOLD:
return b"".join(self._read_ranges(path, size))
response = self._sandbox._request("GET", "/files/read", params={"path": path})
return response.content
def read_text(self, path: str, encoding: str = "utf-8") -> str:
"""Read a file from the sandbox and return its content as a string."""
return self.read(path).decode(encoding)
def write(self, path: str, data: str | bytes | BinaryIO, mode: str | None = None) -> None:
"""Write content to a file in the sandbox (parent directories are created)."""
if isinstance(data, str):
data = data.encode()
elif not isinstance(data, bytes):
data = data.read() # binary file object
if len(data) > self.PARALLEL_THRESHOLD:
self._write_ranges(path, data, mode)
return
params = {"path": path}
if mode is not None:
params["mode"] = mode
self._sandbox._request("PUT", "/files/write", params=params, content=data)
def upload(self, local_path: str | Path, path: str, mode: str | None = None) -> None:
"""Upload a local file to the sandbox."""
size = Path(local_path).stat().st_size
if size > self.PARALLEL_THRESHOLD:
self._write_ranges(path, Path(local_path).read_bytes(), mode)
return
with open(local_path, "rb") as f:
self.write(path, f, mode=mode)
def download(self, path: str, local_path: str | Path) -> None:
"""Download a file from the sandbox."""
size = self.stat(path).size
if size > self.PARALLEL_THRESHOLD:
with open(local_path, "wb") as f:
for part in self._read_ranges(path, size):
f.write(part)
return
with self._sandbox._stream("GET", "/files/read", params={"path": path}) as response:
with open(local_path, "wb") as f:
for chunk in response.iter_bytes(chunk_size=1024 * 1024):
f.write(chunk)
def _ranges(self, size: int) -> List[tuple[int, int]]:
chunk = self.PARALLEL_CHUNK_SIZE
return [(offset, min(chunk, size - offset)) for offset in range(0, size, chunk)]
def _parallel(self, items: List[Any], fn: Callable[[Any], Any]) -> List[Any]:
"""Run `fn(item)` over items concurrently.
All workers share the sandbox's `httpx.Client`, which is thread-safe and pools
connections, so parallel transfers fan out over several streams at once.
"""
workers = min(self.PARALLEL_MAX_WORKERS, len(items))
with ThreadPoolExecutor(workers) as executor:
return list(executor.map(fn, items))
def _read_ranges(self, path: str, size: int) -> List[bytes]:
def fetch(rng: tuple[int, int]) -> bytes:
offset, length = rng
response = self._sandbox._request(
"GET", "/files/read", params={"path": path, "offset": offset, "length": length}
)
return response.content
return self._parallel(self._ranges(size), fetch)
def _write_ranges(self, path: str, data: bytes, mode: str | None) -> None:
def push(rng: tuple[int, int]) -> None:
offset, length = rng
params: dict[str, Any] = {"path": path, "offset": offset}
if mode is not None:
params["mode"] = mode
self._sandbox._request("PUT", "/files/write", params=params, content=data[offset : offset + length])
self._parallel(self._ranges(len(data)), push)
def list(self, path: str) -> List[FileEntry]:
"""List a directory in the sandbox."""
response = self._sandbox._request("GET", "/files/list", params={"path": path})
return [FileEntry(**entry) for entry in response.json()["entries"]]
def stat(self, path: str) -> FileEntry:
"""Get metadata of a file or directory in the sandbox."""
response = self._sandbox._request("GET", "/files/stat", params={"path": path})
return FileEntry(**response.json())
def exists(self, path: str) -> bool:
"""Check whether a path exists in the sandbox."""
try:
self.stat(path)
return True
except SandboxError as e:
if e.status_code == 404:
return False
raise # network/auth/server errors must not be silently reported as "missing"
def delete(self, path: str, recursive: bool = False) -> None:
"""Delete a file or directory in the sandbox."""
params = {"path": path}
if recursive:
params["recursive"] = "1"
self._sandbox._request("DELETE", "/files/delete", params=params)
def mkdir(self, path: str) -> None:
"""Create a directory (and parents) in the sandbox."""
self._sandbox._request("POST", "/files/mkdir", params={"path": path})
def _exec_payload(cmd: str | List[str], shell: bool | None) -> dict[str, Any]:
"""Build the `cmd`/`shell` part of an `/exec` payload, validating their consistency."""
if shell is True and not isinstance(cmd, str):
raise ValueError("shell=True requires `cmd` to be a shell command string, not a list.")
if shell is False and isinstance(cmd, str):
raise ValueError("shell=False requires `cmd` to be an argv list (e.g. ['echo', 'hi']), not a string.")
payload: dict[str, Any] = {"cmd": cmd}
if shell is not None:
payload["shell"] = shell
return payload
def _iter_events(response: httpx.Response) -> Iterator[dict]:
"""Iterate NDJSON events from a streaming response, skipping keepalive pings."""
for line in response.iter_lines():
if not line:
continue
event = json.loads(line)
if event.get("event") != "ping":
yield event
def _raise_for_status(response: httpx.Response) -> None:
"""Read the error body and raise a SandboxError (works for streaming responses too)."""
response.read() # no-op for buffered responses, reads the body for streaming ones
try:
message = response.json()["error"]
except Exception:
message = response.text[:500]
raise SandboxError(f"Sandbox API error ({response.status_code}): {message}", status_code=response.status_code)
class _SandboxServer:
"""HTTP transport to one `sbx-server` instance β a dedicated job or a shared host.
Owns the `httpx.Client`, the base URL and the auth headers.
In dedicated mode a server is paired 1:1 with its [`Sandbox`
In pool mode one server (one host job) is shared by many sandboxes, and `live`/`capacity` track packing.
"""
def __init__(
self,
*,
job_id: str,
owner: str,
image: str | None,
base_url: str,
nonce: str,
sandbox_token: str,
api: HfApi,
max_connections: int = 10,
capacity: int = 0,
) -> None:
self.job_id = job_id
self.owner = owner
self._image = image
self.base_url = base_url
# Public nonce the sandbox token is derived from; kept so a host can be persisted
# to (and rebuilt from) the pool cache without re-reading the job labels.
self.nonce = nonce
self._api = api
self._auth_token = _effective_token(api)
self._sandbox_token = sandbox_token
# Packing bookkeeping (shared mode only).
self.capacity = capacity
self.live = 0
# False only for hosts rebuilt from the (best-effort) pool cache: their job may
# be gone, so the first failed request drops them instead of failing the create.
self.verified = True
# httpx.Client is thread-safe, so a single client serves both sequential requests
# and the concurrent workers used for parallel file transfers / many sandboxes.
self._client = httpx.Client(
headers={
"Authorization": f"Bearer {self._auth_token}",
"X-Sandbox-Token": sandbox_token,
},
limits=httpx.Limits(max_connections=max_connections, max_keepalive_connections=max_connections),
follow_redirects=True,
)
@classmethod
def from_job(
cls,
*,
job: JobInfo,
nonce: str,
sandbox_token: str,
api: HfApi,
max_connections: int = 10,
capacity: int = 0,
) -> "_SandboxServer":
"""Build a server from a freshly fetched job (reads its exposed server URL)."""
return cls(
job_id=job.id,
owner=job.owner.name,
image=job.docker_image or job.space_id,
base_url=_find_server_url(job),
nonce=nonce,
sandbox_token=sandbox_token,
api=api,
max_connections=max_connections,
capacity=capacity,
)
@property
def image(self) -> str | None:
return self._image
def request(self, method: str, path: str, **kwargs) -> httpx.Response:
"""Request to the in-job server. Raises SandboxError on API errors."""
timeout = kwargs.pop("timeout", httpx.Timeout(60.0, connect=10.0))
response = self._client.request(method, self.base_url + path, timeout=timeout, **kwargs)
if response.status_code >= 400:
_raise_for_status(response)
return response
@contextmanager
def stream(self, method: str, path: str, **kwargs) -> Iterator[httpx.Response]:
"""Streaming request to the in-job server. Raises SandboxError on API errors."""
timeout = kwargs.pop("timeout", httpx.Timeout(70.0, connect=10.0)) # server pings every 15s
with self._client.stream(method, self.base_url + path, timeout=timeout, **kwargs) as response:
if response.status_code >= 400:
_raise_for_status(response)
yield response
def close(self) -> None:
self._client.close()
def cancel_job(self) -> None:
self._api.cancel_job(job_id=self.job_id, namespace=self.owner)
def wait_ready(self, start_timeout: float) -> None:
"""Poll /health until the server answers; fail fast (with logs) if the job dies."""
deadline = time.time() + start_timeout
last_job_check = 0.0
while time.time() < deadline:
try:
response = self._client.get(self.base_url + "/health", timeout=httpx.Timeout(5.0))
if response.status_code == 200:
return
except httpx.RequestError:
pass
if time.time() - last_job_check > 2.0:
last_job_check = time.time()
job = self._api.inspect_job(job_id=self.job_id, namespace=self.owner)
if job.status.stage in _TERMINAL_STAGES:
logs = _tail_job_logs(self._api, self.job_id, namespace=self.owner)
raise SandboxError(
f"Sandbox job {self.job_id} terminated during startup "
f"(status: {job.status.stage}, message: {job.status.message}).{logs}"
)
time.sleep(0.15)
raise SandboxError(f"Sandbox job {self.job_id} did not become ready within {start_timeout:.0f}s.")
class _KillMethod:
"""Lets `kill` work both as a classmethod and an instance method."""
@overload
def __get__(self, instance: None, owner: type) -> Callable[..., None]: ...
@overload
def __get__(self, instance: "Sandbox", owner: type) -> Callable[[], None]: ...
def __get__(self, instance: "Sandbox | None", owner: type) -> Callable[..., None]:
if instance is not None:
return instance._kill
def kill(sandbox_id: str, *, namespace: str | None = None, token: str | None = None) -> None:
owner.connect(sandbox_id, namespace=namespace, token=token).kill() # type: ignore[attr-defined]
return kill
class Sandbox:
"""An isolated cloud machine running on Hugging Face Jobs.
Create a dedicated one with [`Sandbox.create`] (one job per sandbox), or get many cheap shared ones from a [`SandboxPool`].
Reattach to a running sandbox from anywhere with [`Sandbox.connect`]. Use as a context manager to terminate it on exit:
```python
>>> from huggingface_hub import Sandbox
>>> with Sandbox.create(image="python:3.12") as sbx:
... print(sbx.run("python --version").stdout)
```
"""
def __init__(
self,
*,
id: str,
server: _SandboxServer,
local_id: str | None,
owns_sandbox: bool,
owns_server: bool,
) -> None:
self.id = id
self._server = server
# None in dedicated mode; the host-local sandbox id in shared mode.
self._local_id = local_id
# Path prefix for all in-server operations: dedicated routes live under
# /v1/*, shared ones under /v1/sandboxes/<local_id>/*.
self._base_path = "/v1" if local_id is None else f"/v1/sandboxes/{local_id}"
# Whether exiting a `with` block terminates the sandbox (True for sandboxes
# we created, False for ones reattached via connect()).
self._owns_sandbox = owns_sandbox
# Whether closing/killing this sandbox also closes the HTTP client. False
# for pool sandboxes, whose client (the host) is owned by the pool.
self._owns_server = owns_server
# Set by SandboxPool to free a packing slot when a shared sandbox is killed.
self._on_kill: Callable[["Sandbox"], None] | None = None
self._killed = False
self.files = SandboxFiles(self)
# ------------------------------------------------------------------ lifecycle
@classmethod
def create(
cls,
image: str = DEFAULT_IMAGE,
*,
flavor: str = "cpu-basic",
idle_timeout: int | float | str | None = DEFAULT_IDLE_TIMEOUT,
env: dict[str, Any] | None = None,
secrets: dict[str, Any] | None = None,
volumes: List[Volume] | None = None,
namespace: str | None = None,
forward_hf_token: bool = False,
start_timeout: float = 120.0,
token: str | None = None,
) -> "Sandbox":
"""Create a dedicated sandbox (one HF Job) and block until it is ready (~7s on cpu-basic).
Each sandbox is a full isolated VM, so this is the right choice for GPU
workloads or untrusted code. To fan out many cheap CPU sandboxes instead, use
[`SandboxPool`].
The job runs with a fixed 24h maximum lifetime; `idle_timeout` is the real
keeper β an idle sandbox shuts itself down well before that.
Args:
image (`str`, *optional*, defaults to `"python:3.12"`):
Any Docker image with `/bin/sh` (Docker Hub or `hf.co/spaces/...`).
flavor (`str`, *optional*, defaults to `"cpu-basic"`):
Hardware flavor, e.g. `"cpu-basic"`, `"a10g-small"`. See `hf jobs hardware`.
idle_timeout (`int` or `float` or `str`, *optional*, defaults to `600`):
Auto-shutdown after this much inactivity (no API calls, no running
processes). Defaults to 10 minutes; pass `None` to disable.
env (`dict[str, Any]`, *optional*):
Environment variables available in the sandbox.
secrets (`dict[str, Any]`, *optional*):
Secret environment variables (encrypted server-side).
volumes (`List[Volume]`, *optional*):
HF repos/buckets to mount, see [`Volume`].
namespace (`str`, *optional*):
User or org namespace to run under (defaults to current user).
forward_hf_token (`bool`, *optional*, defaults to `False`):
If True, your HF token is injected as `HF_TOKEN` (opt-in).
start_timeout (`float`, *optional*, defaults to `120.0`):
Max seconds to wait for the sandbox to become ready.
token (`str`, *optional*):
HF token override.
The image only needs `/bin/sh`. The sandbox server is downloaded at startup with
`wget`/`curl` if available, otherwise read off an always-mounted server bucket (which
adds ~2-3s to cold start, so shipping `wget`/`curl` keeps it fast).
"""
api = HfApi(token=token)
hf_token = _effective_token(api)
nonce = token_hex(16)
sandbox_token = _derive_sandbox_token(hf_token, nonce)
command, job_env, job_secrets, job_volumes = _bootstrap_job_spec(
api,
hf_token,
env=env,
secrets=secrets,
volumes=volumes,
idle_timeout=idle_timeout,
forward_hf_token=forward_hf_token,
sandbox_token=sandbox_token,
)
job = api.run_job(
image=image,
command=command,
env=job_env,
secrets=job_secrets,
flavor=flavor,
timeout=SANDBOX_MAX_LIFETIME,
labels={SANDBOX_LABEL: "1", MODE_LABEL: MODE_DEDICATED, NONCE_LABEL: nonce},
volumes=job_volumes or None,
expose=[SANDBOX_SERVER_PORT],
namespace=namespace,
)
server: "_SandboxServer | None" = None
try:
server = _SandboxServer.from_job(
job=job,
nonce=nonce,
sandbox_token=sandbox_token,
api=api,
max_connections=SandboxFiles.PARALLEL_MAX_WORKERS + 2,
)
server.wait_ready(start_timeout)
except Exception:
# run_job already started a billable job; cancel it before re-raising so it
# doesn't linger as an orphan (e.g. if the server port isn't exposed or startup fails).
try:
api.cancel_job(job_id=job.id, namespace=job.owner.name)
except Exception as e:
logger.warning(f"Failed to cancel sandbox job {job.id} after startup failure: {e}")
if server is not None:
server.close()
raise
return cls(id=job.id, server=server, local_id=None, owns_sandbox=True, owns_server=True)
@classmethod
def connect(cls, sandbox_id: str, *, namespace: str | None = None, token: str | None = None) -> "Sandbox":
"""Reattach to a running sandbox from anywhere, using only its id."""
api = HfApi(token=token)
sandbox_id, namespace = _split_sandbox_id(sandbox_id, namespace)
if SHARED_ID_SEP in sandbox_id:
host_job_id, local_id = sandbox_id.split(SHARED_ID_SEP, 1)
server = _connect_host(api, host_job_id, namespace=namespace)
try:
existing = {item["id"] for item in server.request("GET", "/v1/sandboxes").json()}
if local_id not in existing:
raise SandboxError(f"Sandbox {sandbox_id} no longer exists on host {host_job_id}.")
except Exception:
server.close() # don't leak the HTTP client when the host is gone/unreachable
raise
return cls(id=sandbox_id, server=server, local_id=local_id, owns_sandbox=False, owns_server=True)
job = api.inspect_job(job_id=sandbox_id, namespace=namespace)
labels = job.labels or {}
nonce = labels.get(NONCE_LABEL)
if labels.get(SANDBOX_LABEL) != "1" or nonce is None:
raise SandboxError(f"Job {sandbox_id} is not a sandbox (missing '{SANDBOX_LABEL}' label).")
if labels.get(MODE_LABEL) == MODE_POOL:
raise SandboxError(
f"Job {sandbox_id} is a sandbox host, not a single sandbox. Connect to one of its "
f"sandboxes with id '<host_job_id>{SHARED_ID_SEP}<local_id>'."
)
if job.status.stage != "RUNNING":
raise SandboxError(f"Sandbox {sandbox_id} is not running (status: {job.status.stage}).")
sandbox_token = _derive_sandbox_token(_effective_token(api), nonce)
server = _SandboxServer.from_job(
job=job,
nonce=nonce,
sandbox_token=sandbox_token,
api=api,
max_connections=SandboxFiles.PARALLEL_MAX_WORKERS + 2,
)
return cls(id=job.id, server=server, local_id=None, owns_sandbox=False, owns_server=True)
# `kill` is both a classmethod (`Sandbox.kill(id)`) and an instance method (`sbx.kill()`),
# dispatched by the `_KillMethod` descriptor; `_kill` holds the instance behaviour.
kill = _KillMethod()
def _kill(self) -> None:
"""Terminate the sandbox. Idempotent.
Dedicated sandboxes cancel their underlying job; shared sandboxes are
removed from their host (freeing a slot) while the host keeps running.
"""
if self._killed:
return
try:
if self._local_id is None:
self._server.cancel_job()
else:
self._server.request("DELETE", f"/v1/sandboxes/{self._local_id}")
except Exception as e:
# Don't mark as killed: a later kill() call should retry so nothing leaks.
logger.warning(f"Failed to kill sandbox {self.id}: {e}")
return
self._killed = True
if self._on_kill is not None:
self._on_kill(self)
if self._owns_server:
self._server.close()
def close(self) -> None:
"""Release the local HTTP client without terminating the sandbox. Idempotent.
No-op for pool sandboxes (the client belongs to the pool's host).
"""
if self._owns_server:
self._server.close()
def __enter__(self) -> "Sandbox":
return self
def __exit__(self, *exc_info) -> None:
if self._owns_sandbox:
self.kill()
else:
self.close()
# ------------------------------------------------------------------ exec
@overload
def run(
self,
cmd: str | List[str],
*,
shell: bool | None = ...,
env: dict[str, Any] | None = ...,
cwd: str | None = ...,
timeout: float | None = ...,
stdin: str | None = ...,
on_stdout: Callable[[str], None] | None = ...,
on_stderr: Callable[[str], None] | None = ...,
check: bool = ...,
background: Literal[False] = ...,
) -> SandboxCommandResult: ...
@overload
def run(
self,
cmd: str | List[str],
*,
shell: bool | None = ...,
env: dict[str, Any] | None = ...,
cwd: str | None = ...,
background: Literal[True],
) -> SandboxProcess: ...
def run(
self,
cmd: str | List[str],
*,
shell: bool | None = None,
env: dict[str, Any] | None = None,
cwd: str | None = None,
timeout: float | None = None,
stdin: str | None = None,
on_stdout: Callable[[str], None] | None = None,
on_stderr: Callable[[str], None] | None = None,
check: bool = True,
background: bool = False,
) -> SandboxCommandResult | SandboxProcess:
"""Run a command in the sandbox and wait for it, streaming output live.
With `background=True` the command is started detached and `run` returns a
[`SandboxProcess`] immediately, without waiting for it to finish β handy for
servers and other long-running processes. List them later with [`Sandbox.processes`]
and stop one with [`SandboxProcess.kill`]. The streaming/wait-only options
(`timeout`, `stdin`, `on_stdout`, `on_stderr`, `check`) don't apply in that mode.
Args:
cmd (`str` or `List[str]`):
A shell command string (run with `/bin/sh -c`) or an argv list (exec'd directly).
shell (`bool`, *optional*):
Force the execution mode instead of inferring it from the type of `cmd`.
`True` runs through `/bin/sh -c` and requires `cmd` to be a string; `False`
exec's `cmd` directly and requires it to be an argv list. `None` (default)
infers from the type. Set it explicitly to avoid the type-driven footgun (e.g.
`["echo hi"]` being exec'd as a single program named `"echo hi"`).
env (`dict[str, Any]`, *optional*):
Extra environment variables for this command.
cwd (`str`, *optional*):
Working directory.
timeout (`float`, *optional*):
Kill the command (whole process group) after this many seconds.
stdin (`str`, *optional*):
Data to write to the command's stdin.
on_stdout (`Callable[[str], None]`, *optional*):
Callback invoked with stdout chunks as they arrive.
on_stderr (`Callable[[str], None]`, *optional*):
Callback invoked with stderr chunks as they arrive.
check (`bool`, *optional*, defaults to `True`):
If True, raise [`SandboxCommandError`] on non-zero exit.
background (`bool`, *optional*, defaults to `False`):
If True, start the command detached and return a [`SandboxProcess`] right
away instead of waiting for it and returning a [`SandboxCommandResult`].
Returns: a [`SandboxCommandResult`] (with `exit_code`, `stdout`, `stderr`,
`duration_ms`), or a [`SandboxProcess`] when `background=True`.
"""
payload = _exec_payload(cmd, shell)
if env:
payload["env"] = env
if cwd:
payload["cwd"] = cwd
if background:
data = self._request("POST", "/processes", json=payload).json()
return SandboxProcess(pid=data["pid"], cmd=cmd, tag=data.get("tag"), _sandbox=self)
if timeout is not None:
payload["timeout"] = timeout
if stdin is not None:
payload["stdin"] = stdin
stdout_parts: list[str] = []
stderr_parts: list[str] = []
result: SandboxCommandResult | None = None
with self._stream("POST", "/exec", json=payload) as response:
for event in _iter_events(response):
if event["event"] == "stdout":
stdout_parts.append(event["data"])
if on_stdout is not None:
on_stdout(event["data"])
elif event["event"] == "stderr":
stderr_parts.append(event["data"])
if on_stderr is not None:
on_stderr(event["data"])
elif event["event"] == "exit":
result = SandboxCommandResult(
exit_code=event["exit_code"],
stdout="".join(stdout_parts),
stderr="".join(stderr_parts),
signal=event.get("signal"),
timed_out=event.get("timed_out", False),
duration_ms=event.get("duration_ms", 0),
)
if result is None:
raise SandboxError("connection lost while running command")
if check and (result.exit_code != 0 or result.timed_out):
raise SandboxCommandError(cmd=cmd, result=result)
return result
def processes(self) -> List[SandboxProcess]:
"""List the background processes of this sandbox.
Returns the processes started with [`Sandbox.run`]`(..., background=True)`; stop one
with [`SandboxProcess.kill`]. Completed processes stay listed (with `running=False` and
their `exit_code`) until the sandbox is deleted.
"""
data = self._request("GET", "/processes").json()
return [
SandboxProcess(
pid=p["pid"],
cmd=p["cmd"],
tag=p.get("tag"),
started_at_ms=p.get("started_at_ms"),
running=p["running"],
exit_code=p.get("exit_code"),
_sandbox=self,
)
for p in data
]
# ------------------------------------------------------------------ misc
@property
def image(self) -> str | None:
return self._server.image
@property
def host_id(self) -> str | None:
"""For a shared/pool sandbox, the job id of the host running it (else None)."""
return self._server.job_id if self._local_id is not None else None
# ------------------------------------------------------------------ port proxy
def proxy_url_for(self, port: int | str, path: str = "/", *, scheme: str = "https://") -> str:
"""Public URL that proxies through to a server running *inside* this sandbox.
Requests to the returned URL are forwarded by the in-job sandbox server to a
server you started in the sandbox on `port`, including WebSocket (`ws(s)://`)
upgrades and streamed responses. Pair it with [`proxy_headers`] for auth.
How the sandbox must listen on `port`:
- **Pool / shared sandbox**: it cannot bind a TCP port (Landlock), so bind a
**unix socket** at `$SBX_PROXY_DIR/<port>.sock` (the `SBX_PROXY_DIR` env var
is set in every sandbox). E.g. `uvicorn app:app --uds $SBX_PROXY_DIR/8000.sock`.
- **Dedicated sandbox**: bind a normal TCP port on `127.0.0.1:<port>`. (You can
also expose the port directly via the job proxy without going through here.)
Args:
port (`int` or `str`):
The port (pool: the `<port>` of the unix socket) the inner server listens on.
path (`str`, *optional*, defaults to `"/"`):
Path on the inner server to point at, e.g. `"/ws"`.
scheme (`str`, *optional*, defaults to `"https://"`):
URL scheme to build the link with. Defaults to `"https://"`; pass
`"wss://"` for a WebSocket client (the proxy is protocol-agnostic, so only
the client-side scheme changes).
Returns:
`str`: a URL like `https://<job_id>--49983.hf.jobs/v1/.../proxy/8000/ws` (or
`wss://...` with `scheme="wss://"`).
Example:
```python
>>> url = sandbox.proxy_url_for(8000, "/ws", scheme="wss://")
>>> import websockets
>>> async with websockets.connect(url, additional_headers=sandbox.proxy_headers) as ws:
... await ws.send("hello")
```
"""
# base_url is always https://...; swap in the requested scheme (e.g. wss://) for the client.
host_and_rest = self._server.base_url.split("://", 1)[-1]
path = path if path.startswith("/") else "/" + path
return f"{scheme}{host_and_rest}{self._base_path}/proxy/{port}{path}"
@property
def proxy_headers(self) -> dict[str, str]:
"""Auth headers to send with [`proxy_url_for`] requests (HF token + sandbox token)."""
return {
"Authorization": f"Bearer {self._server._auth_token}",
"X-Sandbox-Token": self._server._sandbox_token,
}
def __repr__(self) -> str:
return f"Sandbox(id={self.id!r}, image={self.image!r})"
# ------------------------------------------------------------------ internals
def _request(self, method: str, resource: str, **kwargs) -> httpx.Response:
return self._server.request(method, self._base_path + resource, **kwargs)
@contextmanager
def _stream(self, method: str, resource: str, **kwargs) -> Iterator[httpx.Response]:
with self._server.stream(method, self._base_path + resource, **kwargs) as response:
yield response
class SandboxPool:
"""A fleet of shared "host" jobs, each packing many landlock-isolated sandboxes.
One host is one billed HF Job (a VM); it runs the sandbox server and multiplexes
up to `sandboxes_per_host` lightweight sandboxes, isolated from each other by
uid + the Landlock LSM. This makes large fan-outs cheap (the VM cost is shared
across all its sandboxes) and fast (creating a sandbox is ~one proxy round-trip
once a host is warm). Best for many parallel CPU sandboxes such as RL rollouts;
for GPU or strong VM-level isolation between mutually-distrusting workloads, use
[`Sandbox.create`] instead.
The constructor pre-provisions `warm_up` hosts (default 1) and blocks until they are
ready; further hosts are then provisioned on demand as sandboxes are requested, and all
are torn down on `close()` (or when idle, via `idle_timeout`). The user never manages jobs:
```python
>>> from huggingface_hub import SandboxPool
>>> with SandboxPool(image="python:3.12", flavor="cpu-basic", warm_up=2) as pool:
... boxes = [pool.create() for _ in range(100)] # packed across the warm hosts
... print(boxes[0].run("echo hi").stdout)
hi
```
`create()` makes **one** sandbox at a time: it reuses a host that still has free
capacity before booting a new one, so you grow on demand as work arrives. To avoid
a cold start on the first few calls, pre-provision hosts with `warm_up` (or
[`warm`]). Warm hosts are discovered via job labels, so reuse works **across
processes** too (a fresh pool with the same `image`/`flavor`/`name` attaches to
hosts an earlier run left behind):
```python
>>> pool = SandboxPool(image="python:3.12")
>>> sbx = pool.create() # finds a warm host (here or in another process), else boots one
```
"""
def __init__(
self,
image: str = DEFAULT_IMAGE,
*,
flavor: str = "cpu-basic",
sandboxes_per_host: int = DEFAULT_SANDBOXES_PER_HOST,
warm_up: int = 1,
max_hosts: int | None = None,
name: str | None = None,
idle_timeout: int | float | str | None = DEFAULT_IDLE_TIMEOUT,
namespace: str | None = None,
start_timeout: float = 120.0,
token: str | None = None,
_connect_mode: bool = False,
) -> None:
"""Configure a pool and pre-provision `warm_up` hosts (blocks until they are ready).
Env/secrets are *not* set here: they belong to each sandbox and are passed to
`create(env=...)`, so sandboxes in the same pool can have different environments.
Args:
image (`str`, *optional*, defaults to `"python:3.12"`):
Docker image for the hosts (needs `/bin/sh`). All sandboxes in the
pool share this image.
flavor (`str`, *optional*, defaults to `"cpu-basic"`):
Hardware flavor for the host jobs (e.g. `"cpu-basic"`).
sandboxes_per_host (`int`, *optional*, defaults to `50`):
How many sandboxes to pack per host (per VM density).
warm_up (`int`, *optional*, defaults to `1`):
How many hosts to pre-provision in the constructor (which blocks
until they are ready), so an initial burst of `create()` calls doesn't pay
a host cold start each. Existing warm hosts (from the cache / other processes)
count towards it, so only the shortfall is booted; capped by `max_hosts`.
Defaults to 1 (a single host).
max_hosts (`int`, *optional*):
Optional cap on the number of host jobs (a cost ceiling). When
reached and all hosts are full, `create()` raises.
name (`str`, *optional*):
Pool name, used as the `hf-sandbox-pool` job label so the pool is
discoverable (e.g. `hf sandbox pool ls`, `connect()`). `create()` reuses
running hosts carrying this label (including from other processes) before
booting new ones, so distinct names keep separate pools from sharing hosts.
A random name is generated when omitted.
idle_timeout (`int` or `float` or `str`, *optional*, defaults to `600`):
Host idle timeout β a host shuts down once it has had no
sandboxes for this long (a billing backstop). Each sandbox also has its
own idle timeout, set at `create()`. Pass `None` to disable.
namespace (`str`, *optional*):
User or org namespace to run hosts under.
start_timeout (`float`, *optional*, defaults to `120.0`):
Max seconds to wait for a host to become ready.
token (`str`, *optional*):
HF token override.
"""
if sandboxes_per_host < 1:
raise ValueError("sandboxes_per_host must be >= 1.")
if warm_up < 1:
raise ValueError("warm_up must be >= 1.")
self._api = HfApi(token=token)
self.image = image
self.flavor = flavor
self.sandboxes_per_host = sandboxes_per_host
self._warm_up = warm_up
self.max_hosts = max_hosts
self.name = name if name is not None else f"pool-{token_hex(6)}"
self._idle_timeout = idle_timeout
self._namespace = namespace
self._start_timeout = start_timeout
self._hosts: List[_SandboxServer] = []
self._lock = threading.Lock()
# Held across the whole one-time warm-up so concurrent first create() calls block until
# it finishes (and see the warm hosts) instead of racing past a half-set flag.
self._warmup_lock = threading.Lock()
# Serializes on-demand host creation within the process: a burst of create() calls that
# all find every host full boots one host at a time (each new host frees
# `sandboxes_per_host` slots for the threads still queued behind the lock) instead of
# one host per thread. The CLI is a single process per command, so this is a no-op there.
self._boot_lock = threading.Lock()
self._closed = False
# Whether the one-time warm-up (seed cache + pre-provision `warm_up` hosts) ran.
self._warmed_up = False
# Set for connect()'d handles: the pool must already exist, so create() refuses to
# silently resurrect it by booting a fresh host if discovery confirms every host is gone.
# Such a handle also never boots during construction β it attaches lazily on create().
self._require_live_host = _connect_mode
# Whether close()/`__exit__` cancels the host jobs. True for a pool we created; False
# for a connect()'d handle, which only releases its HTTP clients on exit β the shared
# hosts (possibly serving other clients) are left running, like Sandbox.connect().
self._owns_hosts = not _connect_mode
# Job ids of cached hosts we found dead this session; pruned from the cache on save.
self._dead_host_ids: set[str] = set()
# Pre-provision `warm_up` hosts now so the constructor returns only once the pool is
# warm. A connect()'d handle skips this: it must never boot during construction (it can
# only attach to existing hosts, lazily on the first create()).
if not _connect_mode:
self._ensure_warmed_up()
# ------------------------------------------------------------------ public API
@classmethod
def connect(cls, pool_id: str, *, namespace: str | None = None, token: str | None = None) -> "SandboxPool":
"""Reattach to a running pool by id, from any machine β no local state needed.
Finds a running host labelled with `pool_id` and rebuilds the pool's config
(image/flavor/density/host-idle) from that host job's spec and env vars, returning
a [`SandboxPool`] ready to `create()` more sandboxes β packing onto the running
hosts, or booting a duplicate (same config) when they are full.
Raises [`SandboxError`] if no running host is found (a pool stops existing once
all of its hosts are gone β idle-timed-out or killed).
Args:
pool_id (`str`):
The id returned when the pool was first created.
namespace (`str`, *optional*):
Namespace to search for the pool's hosts (defaults to yours).
token (`str`, *optional*):
HF token override.
"""
# Fast path: rebuild the pool from the local best-effort cache, with no HTTP at all.
# The cached hosts are seeded (and verified) lazily on the next create(); if they are
# all stale, create() falls back to label discovery exactly like a cold connect would.
cache = read_pool_cache(pool_id)
if cache is not None:
return cls(
image=cache.image,
flavor=cache.flavor,
sandboxes_per_host=cache.sandboxes_per_host,
max_hosts=cache.max_hosts,
name=pool_id,
idle_timeout=cache.idle_timeout,
namespace=cache.namespace if namespace is None else namespace,
token=token,
_connect_mode=True, # attach to existing hosts; never boot during construction
)
# Cold path: find a running host via labels and rebuild the config from its job spec.
api = HfApi(token=token)
job = _find_pool_host_job(api, pool_id, namespace=namespace)
env = _host_env(api, job, namespace=namespace)
idle_raw = env.get("SBX_IDLE_TIMEOUT")
max_hosts_raw = env.get("SBX_MAX_HOSTS")
return cls(
image=job.docker_image or job.space_id or DEFAULT_IMAGE,
flavor=str(job.flavor) if job.flavor is not None else "cpu-basic",
sandboxes_per_host=int(env.get("SBX_CAPACITY", DEFAULT_SANDBOXES_PER_HOST)),
max_hosts=int(max_hosts_raw) if max_hosts_raw is not None else None,
name=pool_id,
idle_timeout=int(idle_raw) if idle_raw is not None else None,
namespace=namespace,
token=token,
_connect_mode=True, # attach to existing hosts; never boot during construction
)
def warm(self, num_hosts: int = 1) -> List[str]:
"""Ensure `num_hosts` empty host(s) are running and leave them running. Returns the
pool's host job ids.
Used to "create" a pool up front: the hosts carry the pool label and config (in
their env vars), so a later `SandboxPool.connect(pool_id)` (even from another
machine) finds them and spawns sandboxes without a cold start. The hosts keep
billing until killed or idle.
Adopts hosts already running for this pool (found via job labels) before booting,
so a `warm()` after `connect()` β or a repeated `warm()` β tops up to `num_hosts`
instead of duplicating live hosts and blowing past `max_hosts`.
"""
if self._closed:
raise SandboxError("This SandboxPool is closed.")
self._discover_hosts()
with self._lock:
shortfall = num_hosts - len(self._hosts)
if shortfall > 0:
booted = self._provision_hosts(shortfall)
with self._lock:
self._hosts.extend(booted)
with self._warmup_lock:
self._warmed_up = True # explicit warm-up satisfies create()'s one-time warm-up
self._save_cache()
return self.host_ids
def create(
self,
*,
env: dict[str, Any] | None = None,
idle_timeout: int | float | str | None = DEFAULT_IDLE_TIMEOUT,
forward_hf_token: bool = False,
) -> "Sandbox":
"""Create one sandbox, provisioning a host if needed.
Reuses a host with free capacity (this pool's, or a warm host found via job labels
/ the local cache) before booting a new one, so a `create()` against a warm host
costs ~one round-trip. Call it repeatedly to fan out; use `warm_up` (or [`warm`])
to pre-provision hosts and avoid a cold start on the first calls. If a host fills
up under us (another process packed it) or a cached host is gone, the sandbox is
re-placed on another host (or a fresh one).
Args:
env (`dict[str, Any]`, *optional*):
Environment variables for this sandbox (each sandbox gets its own).
idle_timeout (`int` or `float` or `str`, *optional*, defaults to `600`):
Per-sandbox idle timeout β a sandbox is evicted from its host
after this much inactivity (no API calls, no running process). Distinct
from the host idle timeout. Pass `None` to disable.
forward_hf_token (`bool`, *optional*, defaults to `False`):
If True, inject your HF token as `HF_TOKEN` in the sandbox
(opt-in). Unlike a dedicated sandbox's `secrets`, a pooled sandbox's env is
delivered to the host server at creation (never stored in the host job), so
it doesn't appear in any job's metadata.
"""
if self._closed:
raise SandboxError("This SandboxPool is closed.")
sandbox_env = dict(env or {})
if forward_hf_token:
sandbox_env["HF_TOKEN"] = _effective_token(self._api)
# None disables per-sandbox idle eviction (mirrors Sandbox.create): leave it out of
# the create body entirely rather than sending 0, which the server reads as "evict now".
idle_secs = _duration_to_secs(idle_timeout) if idle_timeout is not None else None
new_hosts: List[_SandboxServer] = []
discovered = False
rounds = 0
try:
# One-time warm-up: seed from cache (no HTTP) and pre-provision `warm_up` hosts.
# Warm-up hosts are pool-level (like `warm()`), so they survive a failed create().
self._ensure_warmed_up()
while True:
# 1. Reserve a slot on a host we already track.
host = self._reserve_one()
# 2. If none free, attach (once) to warm hosts discovered via labels.
if host is None and not discovered:
discovered = True
self._discover_hosts()
host = self._reserve_one()
# 3. Still none? Boot one host (unless we must not resurrect a dead pool).
if host is None:
if self._require_live_host and discovered and not self._hosts:
# connect()'d to a pool whose hosts are all gone (stale cache + nothing
# found via labels): don't resurrect it under the same id, just report it.
delete_pool_cache(self.name)
raise SandboxError(
f"No running host found for pool '{self.name}'. The pool has stopped "
"(all its hosts were killed or idle-timed-out); create a new one."
)
host = self._boot_one_host(new_hosts)
# 4. Create the sandbox on the reserved host. `None` means the host filled up
# (another process packed it) or a stale cached host is gone β retry.
if host is not None:
try:
sandbox = self._create_one(host, sandbox_env, idle_secs)
except Exception:
# The create POST failed on a live host: release the slot we optimistically
# reserved so the host isn't left permanently one sandbox short.
with self._lock:
host.live = max(0, host.live - 1)
raise
if sandbox is not None:
self._save_cache()
return sandbox
# sandbox is None: the host is full (packed by another process) or gone.
# Either way it's no longer a host we exclusively own, so stop tracking it
# for teardown β cancelling it on a later round's failure would kill another
# tenant's sandboxes (full host) or hit an already-dead job (gone host).
if host in new_hosts:
new_hosts.remove(host)
discovered = False # re-scan for room / boot a host next round
rounds += 1
if rounds > _MAX_PACK_ROUNDS:
raise SandboxError(
"Could not place sandbox: hosts kept reporting full. Raise max_hosts or sandboxes_per_host."
)
except Exception:
# All-or-nothing: tear down hosts we booted in this call.
with self._lock:
self._hosts = [h for h in self._hosts if h not in new_hosts]
for host in new_hosts:
try:
host.cancel_job()
except Exception:
pass
finally:
host.close()
raise
@property
def num_hosts(self) -> int:
"""Number of host jobs currently provisioned."""
with self._lock:
return len(self._hosts)
@property
def num_sandboxes(self) -> int:
"""Number of sandboxes currently handed out (across all hosts)."""
with self._lock:
return sum(host.live for host in self._hosts)
@property
def host_ids(self) -> List[str]:
"""Job ids of the provisioned hosts."""
with self._lock:
return [host.job_id for host in self._hosts]
def close(self) -> None:
"""Release the pool. Idempotent.
For a pool we created, this terminates all host jobs (and therefore all their
sandboxes). For a `connect()`'d handle it only releases the local HTTP clients: the
shared hosts may be serving other clients, so β like [`Sandbox.connect`] β leaving a
`with` block must not tear them down. Terminate a connected pool's hosts explicitly
with `hf sandbox pool delete <id>`.
"""
with self._lock:
hosts = self._hosts
self._hosts = []
self._closed = True
for host in hosts:
try:
if self._owns_hosts:
host.cancel_job()
except Exception as e:
logger.warning(f"Failed to cancel sandbox host {host.job_id}: {e}")
finally:
host.close()
if self._owns_hosts:
delete_pool_cache(self.name) # the pool's hosts are gone; don't leave a stale entry
def __enter__(self) -> "SandboxPool":
return self
def __exit__(self, *exc_info) -> None:
self.close()
# ------------------------------------------------------------------ internals
def _ensure_warmed_up(self) -> None:
"""One-time: seed from the cache and pre-provision up to `warm_up` hosts.
Cheap by default: seeding is local (no HTTP), and if the cache already gives at
least `warm_up` hosts we trust them and skip discovery/booting (dead ones are
pruned lazily by `create()`). Only when short do we list_jobs and boot the
shortfall in parallel, capped by `max_hosts`.
Runs at most once per pool, under `_warmup_lock`: concurrent first `create()` calls
block here until the warm-up completes β and see its hosts β rather than racing past
a half-set flag and each booting their own. `_warmed_up` is only set once the work
succeeds, so a failed warm-up is retried (seeding/discovery dedupe by job id).
Warm-up hosts are pool-level (like [`warm`]): they are not torn down if the
triggering `create()` later fails β `close()` (or the `with` block) reclaims them.
"""
with self._warmup_lock:
if self._warmed_up:
return
self._seed_hosts_from_cache()
target = self._warm_up if self.max_hosts is None else min(self._warm_up, self.max_hosts)
with self._lock:
shortfall = target - len(self._hosts)
if shortfall > 0:
self._discover_hosts()
# A connect()'d pool must never boot during warm-up: it may only attach to
# existing hosts. Booting is left to create()'s loop, guarded by
# `_require_live_host`, so a stopped pool is reported instead of resurrected.
if not self._require_live_host:
with self._lock:
shortfall = target - len(self._hosts)
if shortfall > 0:
booted = self._provision_hosts(shortfall)
with self._lock:
self._hosts.extend(booted)
self._warmed_up = True
# Persist the warmed hosts so the next process (e.g. `hf sandbox create --pool` after a
# bare `hf sandbox pool create`) hits the cache fast path instead of re-discovering.
if self._hosts:
self._save_cache()
def _reserve_one(self) -> "_SandboxServer | None":
"""Reserve one slot on the first host with free capacity (under lock), else None."""
with self._lock:
for host in self._hosts:
if host.capacity - host.live > 0:
host.live += 1
return host
return None
def _boot_one_host(self, new_hosts: List["_SandboxServer"]) -> "_SandboxServer | None":
"""Provision (or adopt) one host and reserve a slot on it. Returns None to retry.
Held under `_boot_lock` so that, within a process, only one host is booted at a time:
a burst of create() calls that all found every host full queue here, and each new host
frees `sandboxes_per_host` slots for the threads still waiting β so they reuse it instead
of each booting their own. Before booting, we reuse a slot freed by a concurrent boot and,
failing that, adopt a host already SCHEDULING for this pool (here or in another process)
rather than piling on a duplicate.
"""
with self._boot_lock:
# A concurrent boot (this process) may have added a host with free slots while we
# waited for the lock β reuse it instead of booting another.
host = self._reserve_one()
if host is not None:
return host
# A host already coming up for this pool (ours, or another process'): wait for it
# to start and adopt it instead of booting a duplicate.
if self._adopt_pending_host():
host = self._reserve_one()
if host is not None:
return host
booted = self._provision_hosts(1)
new_hosts.extend(booted)
with self._lock:
self._hosts.extend(booted)
return self._reserve_one()
def _adopt_pending_host(self) -> bool:
"""Wait for and adopt a host already SCHEDULING for this pool, if any.
Avoids over-provisioning when a host is already on its way up for this pool (started by
another process, or an earlier create() in this one): rather than booting a duplicate,
wait for it to reach RUNNING and adopt it via discovery. Returns True if a pending host
was found (whether or not it eventually came up), False if none is scheduling.
"""
known = {host.job_id for host in self._hosts}
pending = next(
(
job
for job in self._api.list_jobs(
status="SCHEDULING",
labels={MODE_LABEL: MODE_POOL, POOL_LABEL: self.name},
namespace=self._namespace,
)
if job.id not in known
),
None,
)
if pending is None:
return False
logger.debug(f"Pool '{self.name}' host {pending.id} is already SCHEDULING; waiting for it instead of booting.")
deadline = time.time() + self._start_timeout
while time.time() < deadline:
stage = self._api.inspect_job(job_id=pending.id, namespace=self._namespace).status.stage
if stage not in ("SCHEDULING", "RUNNING"):
return False # it died before starting up; let the caller boot a fresh one
if stage == "RUNNING":
# RUNNING precedes "server ready" (the host still has to fetch + exec sbx-server),
# so discovery only adopts it once its server answers β keep polling until it does.
self._discover_hosts()
if any(host.job_id == pending.id for host in self._hosts):
return True
time.sleep(1.0)
return False
def _discover_hosts(self) -> None:
"""Attach to running host jobs that match this pool (image/flavor/name).
Lets `create()` reuse a host warmed by an earlier call or another process
instead of booting a new one. Hosts are found via job labels; each adopted
host's free capacity is read from the server, so packing stays accurate.
"""
known = {host.job_id for host in self._hosts}
matches = [
job
for job in self._api.list_jobs(
status="RUNNING",
labels={MODE_LABEL: MODE_POOL, POOL_LABEL: self.name},
namespace=self._namespace,
)
if job.id not in known
]
for job in matches:
server = None
try:
server = _connect_host(self._api, job.id, namespace=self._namespace)
# Capacity comes from the host's SBX_CAPACITY env; otherwise an adopted host
# would silently pack at the pool default and mis-pack.
env = _host_env(self._api, job, namespace=self._namespace)
server.capacity = int(env.get("SBX_CAPACITY", self.sandboxes_per_host))
server.live = len(server.request("GET", "/v1/sandboxes").json())
except (SandboxError, httpx.HTTPError, HfHubHTTPError) as e:
# Host died (e.g. deleted between list_jobs and inspect_job), is still starting
# up, or is unreachable: skip it, closing the client if one was opened.
logger.debug(f"Skipping host {job.id} during discovery: {e}")
if server is not None:
server.close()
continue
with self._lock:
if any(host.job_id == job.id for host in self._hosts):
server.close() # adopted concurrently by another thread
else:
self._hosts.append(server)
def _provision_hosts(self, num_new: int) -> List[_SandboxServer]:
"""Boot `num_new` host jobs in parallel, respecting `max_hosts`."""
with self._lock:
current = len(self._hosts)
if self.max_hosts is not None and current + num_new > self.max_hosts:
allowed = self.max_hosts - current
raise SandboxError(
f"Pool needs {num_new} more host(s) but max_hosts={self.max_hosts} "
f"allows only {max(0, allowed)} more. Raise max_hosts or kill some sandboxes."
)
# Boot in parallel, but collect every result before re-raising: if one boot fails,
# the others may have already started billable host jobs, so cancel those instead of
# leaking them (executor.map would surface the first error and drop the rest).
with ThreadPoolExecutor(max_workers=min(num_new, 32)) as executor:
futures = [executor.submit(self._boot_host) for _ in range(num_new)]
booted: List[_SandboxServer] = []
error: Exception | None = None
for future in futures:
try:
booted.append(future.result())
except Exception as e:
error = e
if error is not None:
for server in booted:
try:
server.cancel_job()
except Exception:
pass
finally:
server.close()
raise error
return booted
def _boot_host(self) -> _SandboxServer:
"""Start one host job and wait until its server is ready."""
hf_token = _effective_token(self._api)
nonce = token_hex(16)
sandbox_token = _derive_sandbox_token(hf_token, nonce)
command, job_env, job_secrets, job_volumes = _bootstrap_job_spec(
self._api,
hf_token,
env=None, # host job carries no user env; sandboxes get env per create request
secrets=None,
volumes=None,
idle_timeout=self._idle_timeout,
forward_hf_token=False,
sandbox_token=sandbox_token,
)
# Host mode: per-sandbox idle eviction + empty-host shutdown (vs the dedicated
# whole-job watchdog).
job_env["SBX_HOST_MODE"] = "1"
# Server-authoritative packing cap: the host refuses creates past this (the client
# then packs onto / boots another host). Avoids cross-process over-commit. Read
# back (with SBX_IDLE_TIMEOUT) by `connect()` to rebuild the pool β labels stay for
# filtering only.
job_env["SBX_CAPACITY"] = str(self.sandboxes_per_host)
# Persist the optional cost ceiling on the host too, so a later connect() (e.g. the CLI
# `pool create --max-hosts N` then `create --pool <id>` flow) rebuilds the cap instead of
# defaulting to unlimited and provisioning past it.
if self.max_hosts is not None:
job_env["SBX_MAX_HOSTS"] = str(self.max_hosts)
labels = {SANDBOX_LABEL: "1", MODE_LABEL: MODE_POOL, POOL_LABEL: self.name, NONCE_LABEL: nonce}
job = self._api.run_job(
image=self.image,
command=command,
env=job_env,
secrets=job_secrets,
flavor=self.flavor,
timeout=SANDBOX_MAX_LIFETIME,
labels=labels,
volumes=job_volumes or None,
expose=[SANDBOX_SERVER_PORT],
namespace=self._namespace,
)
server: "_SandboxServer | None" = None
try:
# from_job is inside the try: if it raises (e.g. the server port isn't exposed),
# the already-started host job must still be cancelled so it doesn't linger billing.
server = _SandboxServer.from_job(
job=job,
nonce=nonce,
sandbox_token=sandbox_token,
api=self._api,
max_connections=min(self.sandboxes_per_host + 8, 256),
capacity=self.sandboxes_per_host,
)
server.wait_ready(self._start_timeout)
except Exception:
try:
self._api.cancel_job(job_id=job.id, namespace=job.owner.name)
except Exception as e:
logger.warning(f"Failed to cancel sandbox host {job.id} after startup failure: {e}")
if server is not None:
server.close()
raise
return server
def _create_one(self, host: "_SandboxServer", env: dict[str, Any], idle_secs: int | None) -> "Sandbox | None":
"""Create one sandbox on a reserved `host`. Returns the sandbox, or None to retry.
None means either the host filled up between our reservation and the create
(server-authoritative capacity β another client packed it, so we mark it full and
place the sandbox elsewhere) or a host rebuilt from the cache is gone/unreachable
(dropped and re-placed via discovery / a fresh boot).
"""
body: dict[str, Any] = {"count": 1}
if idle_secs is not None:
body["idle_timeout_secs"] = idle_secs
if env:
body["env"] = env
try:
data = host.request("POST", "/v1/sandboxes", json=body).json()
except (SandboxError, httpx.HTTPError) as e:
if host.verified:
raise # a host we booted/discovered this session failing is a real error
logger.debug(f"Dropping unreachable cached host {host.job_id}: {e}")
self._drop_host(host)
return None
host.verified = True # it answered, so it's a real live host now
sandboxes = data.get("sandboxes") or []
if int(data.get("rejected", 0)) or not sandboxes:
with self._lock:
host.live = host.capacity # the host is full; stop reserving it
return None
item = sandboxes[0]
sandbox = Sandbox(
id=f"{host.job_id}{SHARED_ID_SEP}{item['id']}",
server=host,
local_id=item["id"],
owns_sandbox=True,
owns_server=False,
)
sandbox._on_kill = self._on_sandbox_killed
return sandbox
def _on_sandbox_killed(self, sandbox: Sandbox) -> None:
"""Free the packing slot of a shared sandbox that was killed."""
with self._lock:
sandbox._server.live = max(0, sandbox._server.live - 1)
def _drop_host(self, host: _SandboxServer) -> None:
"""Forget a host found dead this session (and mark it for cache pruning)."""
with self._lock:
self._hosts = [h for h in self._hosts if h is not host]
self._dead_host_ids.add(host.job_id)
host.close()
# ------------------------------------------------------------------ cache (best effort)
def _seed_hosts_from_cache(self) -> None:
"""Adopt the pool's cached hosts without any HTTP (rebuilt from cached URL + nonce).
Best-effort and unverified: each adopted host is confirmed on the first successful
request (and dropped on the first failure, see `_create_one`). Hosts the cache
believes are full are skipped β label discovery re-checks them with fresh counts if
the seeded ones don't satisfy the request, so a stale-full entry never blocks a create.
"""
cache = read_pool_cache(self.name)
if cache is None:
return
hf_token = _effective_token(self._api)
with self._lock:
known = {host.job_id for host in self._hosts}
for ch in cache.hosts:
if ch.job_id in known or ch.live >= ch.capacity:
continue
server = _SandboxServer(
job_id=ch.job_id,
owner=ch.owner,
image=self.image,
base_url=ch.base_url,
nonce=ch.nonce,
sandbox_token=_derive_sandbox_token(hf_token, ch.nonce),
api=self._api,
max_connections=min(self.sandboxes_per_host + 8, 256),
capacity=ch.capacity,
)
server.live = ch.live
server.verified = False
self._hosts.append(server)
def _save_cache(self) -> None:
"""Persist the pool config + current hosts (with their live counts) for next time."""
with self._lock:
hosts = [
CachedHost(
job_id=host.job_id,
owner=host.owner,
base_url=host.base_url,
nonce=host.nonce,
capacity=host.capacity,
live=host.live,
updated_at=time.time(),
)
for host in self._hosts
]
dead = set(self._dead_host_ids)
save_pool_cache(
self.name,
image=self.image,
flavor=self.flavor,
sandboxes_per_host=self.sandboxes_per_host,
max_hosts=self.max_hosts,
idle_timeout=_duration_to_secs(self._idle_timeout) if self._idle_timeout is not None else None,
namespace=self._namespace,
hosts=hosts,
dead_host_ids=dead,
)
def _effective_token(api: HfApi) -> str:
token = api.token if isinstance(api.token, str) else get_token()
if not token:
raise SandboxError("A Hugging Face token is required to use sandboxes. Run `hf auth login` first.")
return token
def _bootstrap_job_spec(
api: HfApi,
hf_token: str,
*,
env: dict[str, Any] | None,
secrets: dict[str, Any] | None,
volumes: List[Volume] | None,
idle_timeout: int | float | str | None,
forward_hf_token: bool,
sandbox_token: str,
) -> tuple[list[str], dict[str, Any], dict[str, Any], List[Volume]]:
"""Build the (command, env, secrets, volumes) to launch a job running sbx-server.
Shared by dedicated sandboxes and shared hosts: both fetch and exec the same unified
`sbx-server` binary at startup (via `/bin/sh`), downloading it with wget/curl, or
reading it off the always-mounted server bucket when the image ships neither.
"""
# Reserved SBX_* keys go last so user-provided env/secrets can't override them
# (e.g. clobbering SBX_PORT would break the proxy, SBX_TOKEN would break auth).
job_env: dict[str, Any] = {**(env or {}), "SBX_PORT": str(SANDBOX_SERVER_PORT)}
job_secrets: dict[str, Any] = {**(secrets or {}), "SBX_TOKEN": sandbox_token}
job_volumes = list(volumes or [])
if idle_timeout is not None:
job_env["SBX_IDLE_TIMEOUT"] = str(_duration_to_secs(idle_timeout))
if forward_hf_token:
job_secrets["HF_TOKEN"] = hf_token
job_env["SBX_SERVER_URL"] = f"{api.endpoint}/buckets/{constants.SANDBOX_SERVER_BUCKET}/resolve/sbx-server"
# Always mount the server bucket as a transparent fallback for images without wget/curl.
# It's only read (paying the ~2-3s FUSE cost) when the bootstrap script can't download.
job_env["SBX_SERVER_MOUNT"] = _SERVER_MOUNT_PATH
job_volumes.append(
Volume(type="bucket", source=constants.SANDBOX_SERVER_BUCKET, mount_path=_SERVER_MOUNT_PATH, read_only=True)
)
command = ["/bin/sh", "-c", _BOOTSTRAP_DOWNLOAD]
return command, job_env, job_secrets, job_volumes
def _host_env(api: HfApi, job: JobInfo, *, namespace: str | None) -> dict[str, Any]:
"""Return a host job's env vars (where pool config lives)"""
env = job.environment if isinstance(job.environment, dict) else {}
if "SBX_CAPACITY" not in env:
env = api.inspect_job(job_id=job.id, namespace=namespace).environment or {}
env = env if isinstance(env, dict) else {}
return env
def _find_pool_host_job(api: HfApi, pool_id: str, *, namespace: str | None = None) -> JobInfo:
"""Return any running host job belonging to `pool_id` (found via the pool label)."""
for job in api.list_jobs(
status="RUNNING", labels={MODE_LABEL: MODE_POOL, POOL_LABEL: pool_id}, namespace=namespace
):
return job
raise SandboxError(
f"No running host found for pool '{pool_id}'. The pool has stopped "
"(all its hosts were killed or idle-timed-out); create a new one."
)
def _connect_host(api: HfApi, host_job_id: str, *, namespace: str | None = None) -> _SandboxServer:
"""Reattach to a running host job and return its server transport."""
job = api.inspect_job(job_id=host_job_id, namespace=namespace)
labels = job.labels or {}
nonce = labels.get(NONCE_LABEL)
if nonce is None or labels.get(MODE_LABEL) != MODE_POOL:
raise SandboxError(f"Job {host_job_id} is not a sandbox host.")
if job.status.stage != "RUNNING":
raise SandboxError(f"Sandbox host {host_job_id} is not running (status: {job.status.stage}).")
return _SandboxServer.from_job(
job=job,
nonce=nonce,
sandbox_token=_derive_sandbox_token(_effective_token(api), nonce),
api=api,
max_connections=SandboxFiles.PARALLEL_MAX_WORKERS + 2,
)
def _split_sandbox_id(sandbox_id: str, namespace: str | None) -> tuple[str, str | None]:
"""Accept `namespace/sandbox_id` ids (as shown in the Hub UI), like `hf jobs` does."""
if "/" not in sandbox_id:
return sandbox_id, namespace
extracted_namespace, parsed_id = sandbox_id.split("/", 1)
if not extracted_namespace or not parsed_id or "/" in parsed_id:
raise SandboxError(f"Sandbox id must be 'sandbox_id' or 'namespace/sandbox_id', got {sandbox_id!r}.")
if namespace is not None and namespace != extracted_namespace:
raise SandboxError(
f"Conflicting namespace: got namespace={namespace!r} but sandbox id implies namespace={extracted_namespace!r}."
)
return parsed_id, extracted_namespace
def _find_server_url(job: JobInfo) -> str:
for url in job.status.expose_urls or []:
if f"--{SANDBOX_SERVER_PORT}." in url:
return url
raise SandboxError(f"Job {job.id} does not expose the sandbox server port {SANDBOX_SERVER_PORT}.")
def _tail_job_logs(api: HfApi, job_id: str, *, namespace: str | None = None, limit: int = 20) -> str:
try:
lines = list(api.fetch_job_logs(job_id=job_id, namespace=namespace))[-limit:]
except Exception:
return ""
return " Last logs:\n" + "\n".join(f" {line}" for line in lines) if lines else ""
|