File size: 75,077 Bytes
e8a93e7 | 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 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 | import asyncio
import binascii
from collections import defaultdict
import contextlib
import errno
import functools
import importlib
import inspect
import json
import logging
import multiprocessing
import os
import platform
import re
import signal
import subprocess
import sys
import tempfile
import threading
import time
from urllib.parse import urlencode, unquote, urlparse, parse_qsl, urlunparse
import warnings
from inspect import signature
from pathlib import Path
from subprocess import list2cmdline
from typing import (
TYPE_CHECKING,
Any,
Dict,
Optional,
Sequence,
Tuple,
Union,
Coroutine,
List,
Mapping,
)
# Import psutil after ray so the packaged version is used.
import psutil
from google.protobuf import json_format
import ray
import ray._private.ray_constants as ray_constants
from ray.core.generated.runtime_env_common_pb2 import (
RuntimeEnvInfo as ProtoRuntimeEnvInfo,
)
if TYPE_CHECKING:
from ray.runtime_env import RuntimeEnv
pwd = None
if sys.platform != "win32":
import pwd
logger = logging.getLogger(__name__)
# Linux can bind child processes' lifetimes to that of their parents via prctl.
# prctl support is detected dynamically once, and assumed thereafter.
linux_prctl = None
# Windows can bind processes' lifetimes to that of kernel-level "job objects".
# We keep a global job object to tie its lifetime to that of our own process.
win32_job = None
win32_AssignProcessToJobObject = None
ENV_DISABLE_DOCKER_CPU_WARNING = "RAY_DISABLE_DOCKER_CPU_WARNING" in os.environ
_PYARROW_VERSION = None
# This global variable is used for testing only
_CALLED_FREQ = defaultdict(lambda: 0)
_CALLED_FREQ_LOCK = threading.Lock()
PLACEMENT_GROUP_INDEXED_BUNDLED_RESOURCE_PATTERN = re.compile(
r"(.+)_group_(\d+)_([0-9a-zA-Z]+)"
)
PLACEMENT_GROUP_WILDCARD_RESOURCE_PATTERN = re.compile(r"(.+)_group_([0-9a-zA-Z]+)")
def get_user_temp_dir():
if "RAY_TMPDIR" in os.environ:
return os.environ["RAY_TMPDIR"]
elif sys.platform.startswith("linux") and "TMPDIR" in os.environ:
return os.environ["TMPDIR"]
elif sys.platform.startswith("darwin") or sys.platform.startswith("linux"):
# Ideally we wouldn't need this fallback, but keep it for now for
# for compatibility
tempdir = os.path.join(os.sep, "tmp")
else:
tempdir = tempfile.gettempdir()
return tempdir
def get_ray_temp_dir():
return os.path.join(get_user_temp_dir(), "ray")
def get_ray_address_file(temp_dir: Optional[str]):
if temp_dir is None:
temp_dir = get_ray_temp_dir()
return os.path.join(temp_dir, "ray_current_cluster")
def write_ray_address(ray_address: str, temp_dir: Optional[str] = None):
address_file = get_ray_address_file(temp_dir)
if os.path.exists(address_file):
with open(address_file, "r") as f:
prev_address = f.read()
if prev_address == ray_address:
return
logger.info(
f"Overwriting previous Ray address ({prev_address}). "
"Running ray.init() on this node will now connect to the new "
f"instance at {ray_address}. To override this behavior, pass "
f"address={prev_address} to ray.init()."
)
with open(address_file, "w+") as f:
f.write(ray_address)
def reset_ray_address(temp_dir: Optional[str] = None):
address_file = get_ray_address_file(temp_dir)
if os.path.exists(address_file):
try:
os.remove(address_file)
except OSError:
pass
def read_ray_address(temp_dir: Optional[str] = None) -> str:
address_file = get_ray_address_file(temp_dir)
if not os.path.exists(address_file):
return None
with open(address_file, "r") as f:
return f.read().strip()
def format_error_message(exception_message: str, task_exception: bool = False):
"""Improve the formatting of an exception thrown by a remote function.
This method takes a traceback from an exception and makes it nicer by
removing a few uninformative lines and adding some space to indent the
remaining lines nicely.
Args:
exception_message: A message generated by traceback.format_exc().
Returns:
A string of the formatted exception message.
"""
lines = exception_message.split("\n")
if task_exception:
# For errors that occur inside of tasks, remove lines 1 and 2 which are
# always the same, they just contain information about the worker code.
lines = lines[0:1] + lines[3:]
pass
return "\n".join(lines)
def push_error_to_driver(
worker, error_type: str, message: str, job_id: Optional[str] = None
):
"""Push an error message to the driver to be printed in the background.
Args:
worker: The worker to use.
error_type: The type of the error.
message: The message that will be printed in the background
on the driver.
job_id: The ID of the driver to push the error message to. If this
is None, then the message will be pushed to all drivers.
"""
if job_id is None:
job_id = ray.JobID.nil()
assert isinstance(job_id, ray.JobID)
worker.core_worker.push_error(job_id, error_type, message, time.time())
def publish_error_to_driver(
error_type: str,
message: str,
gcs_publisher,
job_id=None,
num_retries=None,
):
"""Push an error message to the driver to be printed in the background.
Normally the push_error_to_driver function should be used. However, in some
instances, the raylet client is not available, e.g., because the
error happens in Python before the driver or worker has connected to the
backend processes.
Args:
error_type: The type of the error.
message: The message that will be printed in the background
on the driver.
gcs_publisher: The GCS publisher to use.
job_id: The ID of the driver to push the error message to. If this
is None, then the message will be pushed to all drivers.
"""
if job_id is None:
job_id = ray.JobID.nil()
assert isinstance(job_id, ray.JobID)
try:
gcs_publisher.publish_error(
job_id.hex().encode(), error_type, message, job_id, num_retries
)
except Exception:
logger.exception(f"Failed to publish error: {message} [type {error_type}]")
def decode(byte_str: str, allow_none: bool = False, encode_type: str = "utf-8"):
"""Make this unicode in Python 3, otherwise leave it as bytes.
Args:
byte_str: The byte string to decode.
allow_none: If true, then we will allow byte_str to be None in which
case we will return an empty string. TODO(rkn): Remove this flag.
This is only here to simplify upgrading to flatbuffers 1.10.0.
Returns:
A byte string in Python 2 and a unicode string in Python 3.
"""
if byte_str is None and allow_none:
return ""
if not isinstance(byte_str, bytes):
raise ValueError(f"The argument {byte_str} must be a bytes object.")
return byte_str.decode(encode_type)
def ensure_str(s, encoding="utf-8", errors="strict"):
"""Coerce *s* to `str`.
- `str` -> `str`
- `bytes` -> decoded to `str`
"""
if isinstance(s, str):
return s
else:
assert isinstance(s, bytes), f"Expected str or bytes, got {type(s)}"
return s.decode(encoding, errors)
def binary_to_object_ref(binary_object_ref):
return ray.ObjectRef(binary_object_ref)
def binary_to_task_id(binary_task_id):
return ray.TaskID(binary_task_id)
def binary_to_hex(identifier):
hex_identifier = binascii.hexlify(identifier)
hex_identifier = hex_identifier.decode()
return hex_identifier
def hex_to_binary(hex_identifier):
return binascii.unhexlify(hex_identifier)
# TODO(qwang): Remove these hepler functions
# once we separate `WorkerID` from `UniqueID`.
def compute_job_id_from_driver(driver_id):
assert isinstance(driver_id, ray.WorkerID)
return ray.JobID(driver_id.binary()[0 : ray.JobID.size()])
def compute_driver_id_from_job(job_id):
assert isinstance(job_id, ray.JobID)
rest_length = ray_constants.ID_SIZE - job_id.size()
driver_id_str = job_id.binary() + (rest_length * b"\xff")
return ray.WorkerID(driver_id_str)
def get_visible_accelerator_ids() -> Mapping[str, Optional[List[str]]]:
"""Get the mapping from accelerator resource name
to the visible ids."""
from ray._private.accelerators import (
get_all_accelerator_resource_names,
get_accelerator_manager_for_resource,
)
return {
accelerator_resource_name: get_accelerator_manager_for_resource(
accelerator_resource_name
).get_current_process_visible_accelerator_ids()
for accelerator_resource_name in get_all_accelerator_resource_names()
}
def set_omp_num_threads_if_unset() -> bool:
"""Set the OMP_NUM_THREADS to default to num cpus assigned to the worker
This function sets the environment variable OMP_NUM_THREADS for the worker,
if the env is not previously set and it's running in worker (WORKER_MODE).
Returns True if OMP_NUM_THREADS is set in this function.
"""
num_threads_from_env = os.environ.get("OMP_NUM_THREADS")
if num_threads_from_env is not None:
# No ops if it's set
return False
# If unset, try setting the correct CPU count assigned.
runtime_ctx = ray.get_runtime_context()
if runtime_ctx.worker.mode != ray._private.worker.WORKER_MODE:
# Non worker mode, no ops.
return False
num_assigned_cpus = runtime_ctx.get_assigned_resources().get("CPU")
if num_assigned_cpus is None:
# This is an actor task w/o any num_cpus specified, set it to 1
logger.debug(
"[ray] Forcing OMP_NUM_THREADS=1 to avoid performance "
"degradation with many workers (issue #6998). You can override this "
"by explicitly setting OMP_NUM_THREADS, or changing num_cpus."
)
num_assigned_cpus = 1
import math
# For num_cpu < 1: Set to 1.
# For num_cpus >= 1: Set to the floor of the actual assigned cpus.
omp_num_threads = max(math.floor(num_assigned_cpus), 1)
os.environ["OMP_NUM_THREADS"] = str(omp_num_threads)
return True
def set_visible_accelerator_ids() -> None:
"""Set (CUDA_VISIBLE_DEVICES, ONEAPI_DEVICE_SELECTOR, ROCR_VISIBLE_DEVICES,
NEURON_RT_VISIBLE_CORES, TPU_VISIBLE_CHIPS , HABANA_VISIBLE_MODULES ,...)
environment variables based on the accelerator runtime.
"""
for resource_name, accelerator_ids in (
ray.get_runtime_context().get_accelerator_ids().items()
):
ray._private.accelerators.get_accelerator_manager_for_resource(
resource_name
).set_current_process_visible_accelerator_ids(accelerator_ids)
def resources_from_ray_options(options_dict: Dict[str, Any]) -> Dict[str, Any]:
"""Determine a task's resource requirements.
Args:
options_dict: The dictionary that contains resources requirements.
Returns:
A dictionary of the resource requirements for the task.
"""
resources = (options_dict.get("resources") or {}).copy()
if "CPU" in resources or "GPU" in resources:
raise ValueError(
"The resources dictionary must not contain the key 'CPU' or 'GPU'"
)
elif "memory" in resources or "object_store_memory" in resources:
raise ValueError(
"The resources dictionary must not "
"contain the key 'memory' or 'object_store_memory'"
)
elif ray_constants.PLACEMENT_GROUP_BUNDLE_RESOURCE_NAME in resources:
raise ValueError(
"The resource should not include `bundle` which "
f"is reserved for Ray. resources: {resources}"
)
num_cpus = options_dict.get("num_cpus")
num_gpus = options_dict.get("num_gpus")
memory = options_dict.get("memory")
object_store_memory = options_dict.get("object_store_memory")
accelerator_type = options_dict.get("accelerator_type")
if num_cpus is not None:
resources["CPU"] = num_cpus
if num_gpus is not None:
resources["GPU"] = num_gpus
if memory is not None:
resources["memory"] = int(memory)
if object_store_memory is not None:
resources["object_store_memory"] = object_store_memory
if accelerator_type is not None:
resources[
f"{ray_constants.RESOURCE_CONSTRAINT_PREFIX}{accelerator_type}"
] = 0.001
return resources
class Unbuffered(object):
"""There's no "built-in" solution to programatically disabling buffering of
text files. Ray expects stdout/err to be text files, so creating an
unbuffered binary file is unacceptable.
See
https://mail.python.org/pipermail/tutor/2003-November/026645.html.
https://docs.python.org/3/library/functions.html#open
"""
def __init__(self, stream):
self.stream = stream
def write(self, data):
self.stream.write(data)
self.stream.flush()
def writelines(self, datas):
self.stream.writelines(datas)
self.stream.flush()
def __getattr__(self, attr):
return getattr(self.stream, attr)
def open_log(path, unbuffered=False, **kwargs):
"""
Opens the log file at `path`, with the provided kwargs being given to
`open`.
"""
# Disable buffering, see test_advanced_3.py::test_logging_to_driver
kwargs.setdefault("buffering", 1)
kwargs.setdefault("mode", "a")
kwargs.setdefault("encoding", "utf-8")
stream = open(path, **kwargs)
if unbuffered:
return Unbuffered(stream)
else:
return stream
def get_system_memory(
# For cgroups v1:
memory_limit_filename="/sys/fs/cgroup/memory/memory.limit_in_bytes",
# For cgroups v2:
memory_limit_filename_v2="/sys/fs/cgroup/memory.max",
):
"""Return the total amount of system memory in bytes.
Returns:
The total amount of system memory in bytes.
"""
# Try to accurately figure out the memory limit if we are in a docker
# container. Note that this file is not specific to Docker and its value is
# often much larger than the actual amount of memory.
docker_limit = None
if os.path.exists(memory_limit_filename):
with open(memory_limit_filename, "r") as f:
docker_limit = int(f.read().strip())
elif os.path.exists(memory_limit_filename_v2):
with open(memory_limit_filename_v2, "r") as f:
# Don't forget to strip() the newline:
max_file = f.read().strip()
if max_file.isnumeric():
docker_limit = int(max_file)
else:
# max_file is "max", i.e. is unset.
docker_limit = None
# Use psutil if it is available.
psutil_memory_in_bytes = psutil.virtual_memory().total
if docker_limit is not None:
# We take the min because the cgroup limit is very large if we aren't
# in Docker.
return min(docker_limit, psutil_memory_in_bytes)
return psutil_memory_in_bytes
def _get_docker_cpus(
cpu_quota_file_name="/sys/fs/cgroup/cpu/cpu.cfs_quota_us",
cpu_period_file_name="/sys/fs/cgroup/cpu/cpu.cfs_period_us",
cpuset_file_name="/sys/fs/cgroup/cpuset/cpuset.cpus",
cpu_max_file_name="/sys/fs/cgroup/cpu.max",
) -> Optional[float]:
# TODO (Alex): Don't implement this logic oursleves.
# Docker has 2 underyling ways of implementing CPU limits:
# https://docs.docker.com/config/containers/resource_constraints/#configure-the-default-cfs-scheduler
# 1. --cpuset-cpus 2. --cpus or --cpu-quota/--cpu-period (--cpu-shares is a
# soft limit so we don't worry about it). For Ray's purposes, if we use
# docker, the number of vCPUs on a machine is whichever is set (ties broken
# by smaller value).
cpu_quota = None
# See: https://bugs.openjdk.java.net/browse/JDK-8146115
if os.path.exists(cpu_quota_file_name) and os.path.exists(cpu_period_file_name):
try:
with open(cpu_quota_file_name, "r") as quota_file, open(
cpu_period_file_name, "r"
) as period_file:
cpu_quota = float(quota_file.read()) / float(period_file.read())
except Exception:
logger.exception("Unexpected error calculating docker cpu quota.")
# Look at cpu.max for cgroups v2
elif os.path.exists(cpu_max_file_name):
try:
max_file = open(cpu_max_file_name).read()
quota_str, period_str = max_file.split()
if quota_str.isnumeric() and period_str.isnumeric():
cpu_quota = float(quota_str) / float(period_str)
else:
# quota_str is "max" meaning the cpu quota is unset
cpu_quota = None
except Exception:
logger.exception("Unexpected error calculating docker cpu quota.")
if (cpu_quota is not None) and (cpu_quota < 0):
cpu_quota = None
elif cpu_quota == 0:
# Round up in case the cpu limit is less than 1.
cpu_quota = 1
cpuset_num = None
if os.path.exists(cpuset_file_name):
try:
with open(cpuset_file_name) as cpuset_file:
ranges_as_string = cpuset_file.read()
ranges = ranges_as_string.split(",")
cpu_ids = []
for num_or_range in ranges:
if "-" in num_or_range:
start, end = num_or_range.split("-")
cpu_ids.extend(list(range(int(start), int(end) + 1)))
else:
cpu_ids.append(int(num_or_range))
cpuset_num = len(cpu_ids)
except Exception:
logger.exception("Unexpected error calculating docker cpuset ids.")
# Possible to-do: Parse cgroups v2's cpuset.cpus.effective for the number
# of accessible CPUs.
if cpu_quota and cpuset_num:
return min(cpu_quota, cpuset_num)
return cpu_quota or cpuset_num
def get_num_cpus(
override_docker_cpu_warning: bool = ENV_DISABLE_DOCKER_CPU_WARNING,
) -> int:
"""
Get the number of CPUs available on this node.
Depending on the situation, use multiprocessing.cpu_count() or cgroups.
Args:
override_docker_cpu_warning: An extra flag to explicitly turn off the Docker
warning. Setting this flag True has the same effect as setting the env
RAY_DISABLE_DOCKER_CPU_WARNING. By default, whether or not to log
the warning is determined by the env variable
RAY_DISABLE_DOCKER_CPU_WARNING.
"""
cpu_count = multiprocessing.cpu_count()
if os.environ.get("RAY_USE_MULTIPROCESSING_CPU_COUNT"):
logger.info(
"Detected RAY_USE_MULTIPROCESSING_CPU_COUNT=1: Using "
"multiprocessing.cpu_count() to detect the number of CPUs. "
"This may be inconsistent when used inside docker. "
"To correctly detect CPUs, unset the env var: "
"`RAY_USE_MULTIPROCESSING_CPU_COUNT`."
)
return cpu_count
try:
# Not easy to get cpu count in docker, see:
# https://bugs.python.org/issue36054
docker_count = _get_docker_cpus()
if docker_count is not None and docker_count != cpu_count:
# Don't log this warning if we're on K8s or if the warning is
# explicitly disabled.
if (
"KUBERNETES_SERVICE_HOST" not in os.environ
and not ENV_DISABLE_DOCKER_CPU_WARNING
and not override_docker_cpu_warning
):
logger.warning(
"Detecting docker specified CPUs. In "
"previous versions of Ray, CPU detection in containers "
"was incorrect. Please ensure that Ray has enough CPUs "
"allocated. As a temporary workaround to revert to the "
"prior behavior, set "
"`RAY_USE_MULTIPROCESSING_CPU_COUNT=1` as an env var "
"before starting Ray. Set the env var: "
"`RAY_DISABLE_DOCKER_CPU_WARNING=1` to mute this warning."
)
# TODO (Alex): We should probably add support for fractional cpus.
if int(docker_count) != float(docker_count):
logger.warning(
f"Ray currently does not support initializing Ray "
f"with fractional cpus. Your num_cpus will be "
f"truncated from {docker_count} to "
f"{int(docker_count)}."
)
docker_count = int(docker_count)
cpu_count = docker_count
except Exception:
# `nproc` and cgroup are linux-only. If docker only works on linux
# (will run in a linux VM on other platforms), so this is fine.
pass
return cpu_count
# TODO(clarng): merge code with c++
def get_cgroup_used_memory(
memory_stat_filename: str,
memory_usage_filename: str,
inactive_file_key: str,
active_file_key: str,
):
"""
The calculation logic is the same with `GetCGroupMemoryUsedBytes`
in `memory_monitor.cc` file.
"""
inactive_file_bytes = -1
active_file_bytes = -1
with open(memory_stat_filename, "r") as f:
lines = f.readlines()
for line in lines:
if f"{inactive_file_key} " in line:
inactive_file_bytes = int(line.split()[1])
elif f"{active_file_key} " in line:
active_file_bytes = int(line.split()[1])
with open(memory_usage_filename, "r") as f:
lines = f.readlines()
cgroup_usage_in_bytes = int(lines[0].strip())
if (
inactive_file_bytes == -1
or cgroup_usage_in_bytes == -1
or active_file_bytes == -1
):
return None
return cgroup_usage_in_bytes - inactive_file_bytes - active_file_bytes
def get_used_memory():
"""Return the currently used system memory in bytes
Returns:
The total amount of used memory
"""
# Try to accurately figure out the memory usage if we are in a docker
# container.
docker_usage = None
# For cgroups v1:
memory_usage_filename_v1 = "/sys/fs/cgroup/memory/memory.usage_in_bytes"
memory_stat_filename_v1 = "/sys/fs/cgroup/memory/memory.stat"
# For cgroups v2:
memory_usage_filename_v2 = "/sys/fs/cgroup/memory.current"
memory_stat_filename_v2 = "/sys/fs/cgroup/memory.stat"
if os.path.exists(memory_usage_filename_v1) and os.path.exists(
memory_stat_filename_v1
):
docker_usage = get_cgroup_used_memory(
memory_stat_filename_v1,
memory_usage_filename_v1,
"total_inactive_file",
"total_active_file",
)
elif os.path.exists(memory_usage_filename_v2) and os.path.exists(
memory_stat_filename_v2
):
docker_usage = get_cgroup_used_memory(
memory_stat_filename_v2,
memory_usage_filename_v2,
"inactive_file",
"active_file",
)
if docker_usage is not None:
return docker_usage
return psutil.virtual_memory().used
def estimate_available_memory():
"""Return the currently available amount of system memory in bytes.
Returns:
The total amount of available memory in bytes. Based on the used
and total memory.
"""
return get_system_memory() - get_used_memory()
def get_shared_memory_bytes():
"""Get the size of the shared memory file system.
Returns:
The size of the shared memory file system in bytes.
"""
# Make sure this is only called on Linux.
assert sys.platform == "linux" or sys.platform == "linux2"
shm_fd = os.open("/dev/shm", os.O_RDONLY)
try:
shm_fs_stats = os.fstatvfs(shm_fd)
# The value shm_fs_stats.f_bsize is the block size and the
# value shm_fs_stats.f_bavail is the number of available
# blocks.
shm_avail = shm_fs_stats.f_bsize * shm_fs_stats.f_bavail
finally:
os.close(shm_fd)
return shm_avail
def check_oversized_function(
pickled: bytes, name: str, obj_type: str, worker: "ray.Worker"
) -> None:
"""Send a warning message if the pickled function is too large.
Args:
pickled: the pickled function.
name: name of the pickled object.
obj_type: type of the pickled object, can be 'function',
'remote function', or 'actor'.
worker: the worker used to send warning message. message will be logged
locally if None.
"""
length = len(pickled)
if length <= ray_constants.FUNCTION_SIZE_WARN_THRESHOLD:
return
elif length < ray_constants.FUNCTION_SIZE_ERROR_THRESHOLD:
warning_message = (
"The {} {} is very large ({} MiB). "
"Check that its definition is not implicitly capturing a large "
"array or other object in scope. Tip: use ray.put() to put large "
"objects in the Ray object store."
).format(obj_type, name, length // (1024 * 1024))
if worker:
push_error_to_driver(
worker,
ray_constants.PICKLING_LARGE_OBJECT_PUSH_ERROR,
"Warning: " + warning_message,
job_id=worker.current_job_id,
)
else:
error = (
"The {} {} is too large ({} MiB > FUNCTION_SIZE_ERROR_THRESHOLD={}"
" MiB). Check that its definition is not implicitly capturing a "
"large array or other object in scope. Tip: use ray.put() to "
"put large objects in the Ray object store."
).format(
obj_type,
name,
length // (1024 * 1024),
ray_constants.FUNCTION_SIZE_ERROR_THRESHOLD // (1024 * 1024),
)
raise ValueError(error)
def is_main_thread():
return threading.current_thread().getName() == "MainThread"
def detect_fate_sharing_support_win32():
global win32_job, win32_AssignProcessToJobObject
if win32_job is None and sys.platform == "win32":
import ctypes
try:
from ctypes.wintypes import BOOL, DWORD, HANDLE, LPCWSTR, LPVOID
kernel32 = ctypes.WinDLL("kernel32")
kernel32.CreateJobObjectW.argtypes = (LPVOID, LPCWSTR)
kernel32.CreateJobObjectW.restype = HANDLE
sijo_argtypes = (HANDLE, ctypes.c_int, LPVOID, DWORD)
kernel32.SetInformationJobObject.argtypes = sijo_argtypes
kernel32.SetInformationJobObject.restype = BOOL
kernel32.AssignProcessToJobObject.argtypes = (HANDLE, HANDLE)
kernel32.AssignProcessToJobObject.restype = BOOL
kernel32.IsDebuggerPresent.argtypes = ()
kernel32.IsDebuggerPresent.restype = BOOL
except (AttributeError, TypeError, ImportError):
kernel32 = None
job = kernel32.CreateJobObjectW(None, None) if kernel32 else None
job = subprocess.Handle(job) if job else job
if job:
from ctypes.wintypes import DWORD, LARGE_INTEGER, ULARGE_INTEGER
class JOBOBJECT_BASIC_LIMIT_INFORMATION(ctypes.Structure):
_fields_ = [
("PerProcessUserTimeLimit", LARGE_INTEGER),
("PerJobUserTimeLimit", LARGE_INTEGER),
("LimitFlags", DWORD),
("MinimumWorkingSetSize", ctypes.c_size_t),
("MaximumWorkingSetSize", ctypes.c_size_t),
("ActiveProcessLimit", DWORD),
("Affinity", ctypes.c_size_t),
("PriorityClass", DWORD),
("SchedulingClass", DWORD),
]
class IO_COUNTERS(ctypes.Structure):
_fields_ = [
("ReadOperationCount", ULARGE_INTEGER),
("WriteOperationCount", ULARGE_INTEGER),
("OtherOperationCount", ULARGE_INTEGER),
("ReadTransferCount", ULARGE_INTEGER),
("WriteTransferCount", ULARGE_INTEGER),
("OtherTransferCount", ULARGE_INTEGER),
]
class JOBOBJECT_EXTENDED_LIMIT_INFORMATION(ctypes.Structure):
_fields_ = [
("BasicLimitInformation", JOBOBJECT_BASIC_LIMIT_INFORMATION),
("IoInfo", IO_COUNTERS),
("ProcessMemoryLimit", ctypes.c_size_t),
("JobMemoryLimit", ctypes.c_size_t),
("PeakProcessMemoryUsed", ctypes.c_size_t),
("PeakJobMemoryUsed", ctypes.c_size_t),
]
debug = kernel32.IsDebuggerPresent()
# Defined in <WinNT.h>; also available here:
# https://docs.microsoft.com/en-us/windows/win32/api/jobapi2/nf-jobapi2-setinformationjobobject
JobObjectExtendedLimitInformation = 9
JOB_OBJECT_LIMIT_BREAKAWAY_OK = 0x00000800
JOB_OBJECT_LIMIT_DIE_ON_UNHANDLED_EXCEPTION = 0x00000400
JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE = 0x00002000
buf = JOBOBJECT_EXTENDED_LIMIT_INFORMATION()
buf.BasicLimitInformation.LimitFlags = (
(0 if debug else JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE)
| JOB_OBJECT_LIMIT_DIE_ON_UNHANDLED_EXCEPTION
| JOB_OBJECT_LIMIT_BREAKAWAY_OK
)
infoclass = JobObjectExtendedLimitInformation
if not kernel32.SetInformationJobObject(
job, infoclass, ctypes.byref(buf), ctypes.sizeof(buf)
):
job = None
win32_AssignProcessToJobObject = (
kernel32.AssignProcessToJobObject if kernel32 is not None else False
)
win32_job = job if job else False
return bool(win32_job)
def detect_fate_sharing_support_linux():
global linux_prctl
if linux_prctl is None and sys.platform.startswith("linux"):
try:
from ctypes import CDLL, c_int, c_ulong
prctl = CDLL(None).prctl
prctl.restype = c_int
prctl.argtypes = [c_int, c_ulong, c_ulong, c_ulong, c_ulong]
except (AttributeError, TypeError):
prctl = None
linux_prctl = prctl if prctl else False
return bool(linux_prctl)
def detect_fate_sharing_support():
result = None
if sys.platform == "win32":
result = detect_fate_sharing_support_win32()
elif sys.platform.startswith("linux"):
result = detect_fate_sharing_support_linux()
return result
def set_kill_on_parent_death_linux():
"""Ensures this process dies if its parent dies (fate-sharing).
Linux-only. Must be called in preexec_fn (i.e. by the child).
"""
if detect_fate_sharing_support_linux():
import signal
PR_SET_PDEATHSIG = 1
if linux_prctl(PR_SET_PDEATHSIG, signal.SIGKILL, 0, 0, 0) != 0:
import ctypes
raise OSError(ctypes.get_errno(), "prctl(PR_SET_PDEATHSIG) failed")
else:
assert False, "PR_SET_PDEATHSIG used despite being unavailable"
def set_kill_child_on_death_win32(child_proc):
"""Ensures the child process dies if this process dies (fate-sharing).
Windows-only. Must be called by the parent, after spawning the child.
Args:
child_proc: The subprocess.Popen or subprocess.Handle object.
"""
if isinstance(child_proc, subprocess.Popen):
child_proc = child_proc._handle
assert isinstance(child_proc, subprocess.Handle)
if detect_fate_sharing_support_win32():
if not win32_AssignProcessToJobObject(win32_job, int(child_proc)):
import ctypes
raise OSError(ctypes.get_last_error(), "AssignProcessToJobObject() failed")
else:
assert False, "AssignProcessToJobObject used despite being unavailable"
def set_sigterm_handler(sigterm_handler):
"""Registers a handler for SIGTERM in a platform-compatible manner."""
if sys.platform == "win32":
# Note that these signal handlers only work for console applications.
# TODO(mehrdadn): implement graceful process termination mechanism
# SIGINT is Ctrl+C, SIGBREAK is Ctrl+Break.
signal.signal(signal.SIGBREAK, sigterm_handler)
else:
signal.signal(signal.SIGTERM, sigterm_handler)
def try_make_directory_shared(directory_path):
try:
os.chmod(directory_path, 0o0777)
except OSError as e:
# Silently suppress the PermissionError that is thrown by the chmod.
# This is done because the user attempting to change the permissions
# on a directory may not own it. The chmod is attempted whether the
# directory is new or not to avoid race conditions.
# ray-project/ray/#3591
if e.errno in [errno.EACCES, errno.EPERM]:
pass
else:
raise
def try_to_create_directory(directory_path):
"""Attempt to create a directory that is globally readable/writable.
Args:
directory_path: The path of the directory to create.
"""
directory_path = os.path.expanduser(directory_path)
os.makedirs(directory_path, exist_ok=True)
# Change the log directory permissions so others can use it. This is
# important when multiple people are using the same machine.
try_make_directory_shared(directory_path)
def try_to_symlink(symlink_path, target_path):
"""Attempt to create a symlink.
If the symlink path exists and isn't a symlink, the symlink will not be
created. If a symlink exists in the path, it will be attempted to be
removed and replaced.
Args:
symlink_path: The path at which to create the symlink.
target_path: The path the symlink should point to.
"""
symlink_path = os.path.expanduser(symlink_path)
target_path = os.path.expanduser(target_path)
if os.path.exists(symlink_path):
if os.path.islink(symlink_path):
# Try to remove existing symlink.
try:
os.remove(symlink_path)
except OSError:
return
else:
# There's an existing non-symlink file, don't overwrite it.
return
try:
os.symlink(target_path, symlink_path)
except OSError:
return
def get_user():
if pwd is None:
return ""
try:
return pwd.getpwuid(os.getuid()).pw_name
except Exception:
return ""
def get_function_args(callable):
all_parameters = frozenset(signature(callable).parameters)
return list(all_parameters)
def get_conda_bin_executable(executable_name):
"""
Return path to the specified executable, assumed to be discoverable within
the 'bin' subdirectory of a conda installation. Adapted from
https://github.com/mlflow/mlflow.
"""
# Use CONDA_EXE as per https://github.com/conda/conda/issues/7126
if "CONDA_EXE" in os.environ:
conda_bin_dir = os.path.dirname(os.environ["CONDA_EXE"])
return os.path.join(conda_bin_dir, executable_name)
return executable_name
def get_conda_env_dir(env_name):
"""Find and validate the conda directory for a given conda environment.
For example, given the environment name `tf1`, this function checks
the existence of the corresponding conda directory, e.g.
`/Users/scaly/anaconda3/envs/tf1`, and returns it.
"""
conda_prefix = os.environ.get("CONDA_PREFIX")
if conda_prefix is None:
# The caller is neither in a conda env or in (base) env. This is rare
# because by default, new terminals start in (base), but we can still
# support this case.
conda_exe = os.environ.get("CONDA_EXE")
if conda_exe is None:
raise ValueError(
"Cannot find environment variables set by conda. "
"Please verify conda is installed."
)
# Example: CONDA_EXE=$HOME/anaconda3/bin/python
# Strip out /bin/python by going up two parent directories.
conda_prefix = str(Path(conda_exe).parent.parent)
# There are two cases:
# 1. We are in a conda (base) env: CONDA_DEFAULT_ENV=base and
# CONDA_PREFIX=$HOME/anaconda3
# 2. We are in a user-created conda env: CONDA_DEFAULT_ENV=$env_name and
# CONDA_PREFIX=$HOME/anaconda3/envs/$current_env_name
if os.environ.get("CONDA_DEFAULT_ENV") == "base":
# Caller's curent environment is (base).
# Not recommended by conda, but we can still support it.
if env_name == "base":
# Desired environment is (base), located at e.g. $HOME/anaconda3
env_dir = conda_prefix
else:
# Desired environment is user-created, e.g.
# $HOME/anaconda3/envs/$env_name
env_dir = os.path.join(conda_prefix, "envs", env_name)
else:
# Now `conda_prefix` should be something like
# $HOME/anaconda3/envs/$current_env_name
# We want to replace the last component with the desired env name.
conda_envs_dir = os.path.split(conda_prefix)[0]
env_dir = os.path.join(conda_envs_dir, env_name)
if not os.path.isdir(env_dir):
raise ValueError(
"conda env "
+ env_name
+ " not found in conda envs directory. Run `conda env list` to "
+ "verify the name is correct."
)
return env_dir
def get_call_location(back: int = 1):
"""
Get the location (filename and line number) of a function caller, `back`
frames up the stack.
Args:
back: The number of frames to go up the stack, not including this
function.
"""
stack = inspect.stack()
try:
frame = stack[back + 1]
return f"{frame.filename}:{frame.lineno}"
except IndexError:
return "UNKNOWN"
def get_ray_doc_version():
"""Get the docs.ray.io version corresponding to the ray.__version__."""
# The ray.__version__ can be official Ray release (such as 1.12.0), or
# dev (3.0.0dev0) or release candidate (2.0.0rc0). For the later we map
# to the master doc version at docs.ray.io.
if re.match(r"^\d+\.\d+\.\d+$", ray.__version__) is None:
return "master"
# For the former (official Ray release), we have corresponding doc version
# released as well.
return f"releases-{ray.__version__}"
# Used to only print a deprecation warning once for a given function if we
# don't wish to spam the caller.
_PRINTED_WARNING = set()
# The following is inspired by
# https://github.com/tensorflow/tensorflow/blob/dec8e0b11f4f87693b67e125e67dfbc68d26c205/tensorflow/python/util/deprecation.py#L274-L329
def deprecated(
instructions: Optional[str] = None,
removal_release: Optional[str] = None,
removal_date: Optional[str] = None,
warn_once: bool = True,
stacklevel=2,
):
"""
Creates a decorator for marking functions as deprecated. The decorator
will log a deprecation warning on the first (or all, see `warn_once` arg)
invocations, and will otherwise leave the wrapped function unchanged.
Args:
instructions: Instructions for the caller to update their code.
removal_release: The release in which this deprecated function
will be removed. Only one of removal_release and removal_date
should be specified. If neither is specfieid, we'll warning that
the function will be removed "in a future release".
removal_date: The date on which this deprecated function will be
removed. Only one of removal_release and removal_date should be
specified. If neither is specfieid, we'll warning that
the function will be removed "in a future release".
warn_once: If true, the deprecation warning will only be logged
on the first invocation. Otherwise, the deprecation warning will
be logged on every invocation. Defaults to True.
stacklevel: adjust the warnings stacklevel to trace the source call
Returns:
A decorator to be used for wrapping deprecated functions.
"""
if removal_release is not None and removal_date is not None:
raise ValueError(
"Only one of removal_release and removal_date should be specified."
)
def deprecated_wrapper(func):
@functools.wraps(func)
def new_func(*args, **kwargs):
global _PRINTED_WARNING
if func not in _PRINTED_WARNING:
if warn_once:
_PRINTED_WARNING.add(func)
msg = (
"From {}: {} (from {}) is deprecated and will ".format(
get_call_location(), func.__name__, func.__module__
)
+ "be removed "
+ (
f"in version {removal_release}."
if removal_release is not None
else f"after {removal_date}"
if removal_date is not None
else "in a future version"
)
+ (f" {instructions}" if instructions is not None else "")
)
warnings.warn(msg, stacklevel=stacklevel)
return func(*args, **kwargs)
return new_func
return deprecated_wrapper
def import_attr(full_path: str, *, reload_module: bool = False):
"""Given a full import path to a module attr, return the imported attr.
If `reload_module` is set, the module will be reloaded using `importlib.reload`.
For example, the following are equivalent:
MyClass = import_attr("module.submodule:MyClass")
MyClass = import_attr("module.submodule.MyClass")
from module.submodule import MyClass
Returns:
Imported attr
"""
if full_path is None:
raise TypeError("import path cannot be None")
if ":" in full_path:
if full_path.count(":") > 1:
raise ValueError(
f'Got invalid import path "{full_path}". An '
"import path may have at most one colon."
)
module_name, attr_name = full_path.split(":")
else:
last_period_idx = full_path.rfind(".")
module_name = full_path[:last_period_idx]
attr_name = full_path[last_period_idx + 1 :]
module = importlib.import_module(module_name)
if reload_module:
importlib.reload(module)
return getattr(module, attr_name)
def get_wheel_filename(
sys_platform: str = sys.platform,
ray_version: str = ray.__version__,
py_version: Tuple[int, int] = (sys.version_info.major, sys.version_info.minor),
architecture: Optional[str] = None,
) -> str:
"""Returns the filename used for the nightly Ray wheel.
Args:
sys_platform: The platform as returned by sys.platform. Examples:
"darwin", "linux", "win32"
ray_version: The Ray version as returned by ray.__version__ or
`ray --version`. Examples: "3.0.0.dev0"
py_version: The Python version as returned by sys.version_info. A
tuple of (major, minor). Examples: (3, 8)
architecture: Architecture, e.g. ``x86_64`` or ``aarch64``. If None, will
be determined by calling ``platform.processor()``.
Returns:
The wheel file name. Examples:
ray-3.0.0.dev0-cp38-cp38-manylinux2014_x86_64.whl
"""
assert py_version in ray_constants.RUNTIME_ENV_CONDA_PY_VERSIONS, py_version
py_version_str = "".join(map(str, py_version))
architecture = architecture or platform.processor()
if py_version_str in ["311", "310", "39", "38"] and architecture == "arm64":
darwin_os_string = "macosx_11_0_arm64"
else:
darwin_os_string = "macosx_10_15_x86_64"
if architecture == "aarch64":
linux_os_string = "manylinux2014_aarch64"
else:
linux_os_string = "manylinux2014_x86_64"
os_strings = {
"darwin": darwin_os_string,
"linux": linux_os_string,
"win32": "win_amd64",
}
assert sys_platform in os_strings, sys_platform
wheel_filename = (
f"ray-{ray_version}-cp{py_version_str}-"
f"cp{py_version_str}{'m' if py_version_str in ['37'] else ''}"
f"-{os_strings[sys_platform]}.whl"
)
return wheel_filename
def get_master_wheel_url(
ray_commit: str = ray.__commit__,
sys_platform: str = sys.platform,
ray_version: str = ray.__version__,
py_version: Tuple[int, int] = sys.version_info[:2],
) -> str:
"""Return the URL for the wheel from a specific commit."""
filename = get_wheel_filename(
sys_platform=sys_platform, ray_version=ray_version, py_version=py_version
)
return (
f"https://s3-us-west-2.amazonaws.com/ray-wheels/master/"
f"{ray_commit}/{filename}"
)
def get_release_wheel_url(
ray_commit: str = ray.__commit__,
sys_platform: str = sys.platform,
ray_version: str = ray.__version__,
py_version: Tuple[int, int] = sys.version_info[:2],
) -> str:
"""Return the URL for the wheel for a specific release."""
filename = get_wheel_filename(
sys_platform=sys_platform, ray_version=ray_version, py_version=py_version
)
return (
f"https://ray-wheels.s3-us-west-2.amazonaws.com/releases/"
f"{ray_version}/{ray_commit}/{filename}"
)
# e.g. https://ray-wheels.s3-us-west-2.amazonaws.com/releases/1.4.0rc1/e7c7
# f6371a69eb727fa469e4cd6f4fbefd143b4c/ray-1.4.0rc1-cp36-cp36m-manylinux201
# 4_x86_64.whl
def validate_namespace(namespace: str):
if not isinstance(namespace, str):
raise TypeError("namespace must be None or a string.")
elif namespace == "":
raise ValueError(
'"" is not a valid namespace. ' "Pass None to not specify a namespace."
)
def init_grpc_channel(
address: str,
options: Optional[Sequence[Tuple[str, Any]]] = None,
asynchronous: bool = False,
):
import grpc
try:
from grpc import aio as aiogrpc
except ImportError:
from grpc.experimental import aio as aiogrpc
from ray._private.tls_utils import load_certs_from_env
grpc_module = aiogrpc if asynchronous else grpc
options = options or []
options_dict = dict(options)
options_dict["grpc.keepalive_time_ms"] = options_dict.get(
"grpc.keepalive_time_ms", ray._config.grpc_client_keepalive_time_ms()
)
options_dict["grpc.keepalive_timeout_ms"] = options_dict.get(
"grpc.keepalive_timeout_ms", ray._config.grpc_client_keepalive_timeout_ms()
)
options = options_dict.items()
if os.environ.get("RAY_USE_TLS", "0").lower() in ("1", "true"):
server_cert_chain, private_key, ca_cert = load_certs_from_env()
credentials = grpc.ssl_channel_credentials(
certificate_chain=server_cert_chain,
private_key=private_key,
root_certificates=ca_cert,
)
channel = grpc_module.secure_channel(address, credentials, options=options)
else:
channel = grpc_module.insecure_channel(address, options=options)
return channel
def check_dashboard_dependencies_installed() -> bool:
"""Returns True if Ray Dashboard dependencies are installed.
Checks to see if we should start the dashboard agent or not based on the
Ray installation version the user has installed (ray vs. ray[default]).
Unfortunately there doesn't seem to be a cleaner way to detect this other
than just blindly importing the relevant packages.
"""
try:
import ray.dashboard.optional_deps # noqa: F401
return True
except ImportError:
return False
def check_ray_client_dependencies_installed() -> bool:
"""Returns True if Ray Client dependencies are installed.
See documents for check_dashboard_dependencies_installed.
"""
try:
import grpc # noqa: F401
return True
except ImportError:
return False
connect_error = (
"Unable to connect to GCS (ray head) at {}. "
"Check that (1) Ray with matching version started "
"successfully at the specified address, (2) this "
"node can reach the specified address, and (3) there is "
"no firewall setting preventing access."
)
def internal_kv_list_with_retry(gcs_client, prefix, namespace, num_retries=20):
result = None
if isinstance(prefix, str):
prefix = prefix.encode()
if isinstance(namespace, str):
namespace = namespace.encode()
for _ in range(num_retries):
try:
result = gcs_client.internal_kv_keys(prefix, namespace)
except Exception as e:
if isinstance(e, ray.exceptions.RpcError) and e.rpc_code in (
ray._raylet.GRPC_STATUS_CODE_UNAVAILABLE,
ray._raylet.GRPC_STATUS_CODE_UNKNOWN,
):
logger.warning(connect_error.format(gcs_client.address))
else:
logger.exception("Internal KV List failed")
result = None
if result is not None:
break
else:
logger.debug(f"Fetched {prefix}=None from KV. Retrying.")
time.sleep(2)
if result is None:
raise ConnectionError(
f"Could not list '{prefix}' from GCS. Did GCS start successfully?"
)
return result
def internal_kv_get_with_retry(gcs_client, key, namespace, num_retries=20):
result = None
if isinstance(key, str):
key = key.encode()
for _ in range(num_retries):
try:
result = gcs_client.internal_kv_get(key, namespace)
except Exception as e:
if isinstance(e, ray.exceptions.RpcError) and e.rpc_code in (
ray._raylet.GRPC_STATUS_CODE_UNAVAILABLE,
ray._raylet.GRPC_STATUS_CODE_UNKNOWN,
):
logger.warning(connect_error.format(gcs_client.address))
else:
logger.exception("Internal KV Get failed")
result = None
if result is not None:
break
else:
logger.debug(f"Fetched {key}=None from KV. Retrying.")
time.sleep(2)
if not result:
raise ConnectionError(
f"Could not read '{key.decode()}' from GCS. Did GCS start successfully?"
)
return result
def parse_resources_json(
resources: str, cli_logger, cf, command_arg="--resources"
) -> Dict[str, float]:
try:
resources = json.loads(resources)
if not isinstance(resources, dict):
raise ValueError("The format after deserialization is not a dict")
except Exception as e:
cli_logger.error(
"`{}` is not a valid JSON string, detail error:{}",
cf.bold(f"{command_arg}={resources}"),
str(e),
)
cli_logger.abort(
"Valid values look like this: `{}`",
cf.bold(
f'{command_arg}=\'{{"CustomResource3": 1, "CustomResource2": 2}}\''
),
)
return resources
def parse_metadata_json(
metadata: str, cli_logger, cf, command_arg="--metadata-json"
) -> Dict[str, str]:
try:
metadata = json.loads(metadata)
if not isinstance(metadata, dict):
raise ValueError("The format after deserialization is not a dict")
except Exception as e:
cli_logger.error(
"`{}` is not a valid JSON string, detail error:{}",
cf.bold(f"{command_arg}={metadata}"),
str(e),
)
cli_logger.abort(
"Valid values look like this: `{}`",
cf.bold(f'{command_arg}=\'{{"key1": "value1", "key2": "value2"}}\''),
)
return metadata
def internal_kv_put_with_retry(gcs_client, key, value, namespace, num_retries=20):
if isinstance(key, str):
key = key.encode()
if isinstance(value, str):
value = value.encode()
if isinstance(namespace, str):
namespace = namespace.encode()
error = None
for _ in range(num_retries):
try:
return gcs_client.internal_kv_put(
key, value, overwrite=True, namespace=namespace
)
except ray.exceptions.RpcError as e:
if e.rpc_code in (
ray._raylet.GRPC_STATUS_CODE_UNAVAILABLE,
ray._raylet.GRPC_STATUS_CODE_UNKNOWN,
):
logger.warning(connect_error.format(gcs_client.address))
else:
logger.exception("Internal KV Put failed")
time.sleep(2)
error = e
# Reraise the last error.
raise error
def compute_version_info():
"""Compute the versions of Python, and Ray.
Returns:
A tuple containing the version information.
"""
ray_version = ray.__version__
python_version = ".".join(map(str, sys.version_info[:3]))
return ray_version, python_version
def get_directory_size_bytes(path: Union[str, Path] = ".") -> int:
"""Get the total size of a directory in bytes, including subdirectories."""
total_size_bytes = 0
for dirpath, dirnames, filenames in os.walk(path):
for f in filenames:
fp = os.path.join(dirpath, f)
# skip if it is a symbolic link or a .pyc file
if not os.path.islink(fp) and not f.endswith(".pyc"):
total_size_bytes += os.path.getsize(fp)
return total_size_bytes
def check_version_info(
cluster_metadata,
this_process_address,
raise_on_mismatch=True,
python_version_match_level="patch",
):
"""Check if the Python and Ray versions stored in GCS matches this process.
Args:
cluster_metadata: Ray cluster metadata from GCS.
this_process_address: Informational only. The address of this process.
e.g. "node address:port" or "Ray Client".
raise_on_mismatch: Raise an exception on True, log a warning otherwise.
python_version_match_level: "minor" or "patch". To which python version level we
try to match. Note if "minor" and the patch is different, we will still log
a warning.
Behavior:
- We raise or log a warning, based on raise_on_mismatch, if:
- Ray versions do not match; OR
- Python (major, minor) versions do not match,
if python_version_match_level == 'minor'; OR
- Python (major, minor, patch) versions do not match,
if python_version_match_level == 'patch'.
- We also log a warning if:
- Python (major, minor) versions match, AND
- Python patch versions do not match, AND
- python_version_match_level == 'minor' AND
- raise_on_mismatch == False.
Raises:
Exception: An exception is raised if there is a version mismatch.
"""
cluster_version_info = (
cluster_metadata["ray_version"],
cluster_metadata["python_version"],
)
my_version_info = compute_version_info()
# Calculate: ray_matches, python_matches, python_full_matches
ray_matches = cluster_version_info[0] == my_version_info[0]
python_full_matches = cluster_version_info[1] == my_version_info[1]
if python_version_match_level == "patch":
python_matches = cluster_version_info[1] == my_version_info[1]
elif python_version_match_level == "minor":
my_python_versions = my_version_info[1].split(".")
cluster_python_versions = cluster_version_info[1].split(".")
python_matches = my_python_versions[:2] == cluster_python_versions[:2]
else:
raise ValueError(
f"Invalid python_version_match_level: {python_version_match_level}, "
"want: 'minor' or 'patch'"
)
mismatch_msg = (
"The cluster was started with:\n"
f" Ray: {cluster_version_info[0]}\n"
f" Python: {cluster_version_info[1]}\n"
f"This process on {this_process_address} was started with:\n"
f" Ray: {my_version_info[0]}\n"
f" Python: {my_version_info[1]}\n"
)
if ray_matches and python_matches:
if not python_full_matches:
logger.warning(f"Python patch version mismatch: {mismatch_msg}")
else:
error_message = f"Version mismatch: {mismatch_msg}"
if raise_on_mismatch:
raise RuntimeError(error_message)
else:
logger.warning(error_message)
def get_runtime_env_info(
runtime_env: "RuntimeEnv",
*,
is_job_runtime_env: bool = False,
serialize: bool = False,
):
"""Create runtime env info from runtime env.
In the user interface, the argument `runtime_env` contains some fields
which not contained in `ProtoRuntimeEnv` but in `ProtoRuntimeEnvInfo`,
such as `eager_install`. This function will extract those fields from
`RuntimeEnv` and create a new `ProtoRuntimeEnvInfo`, and serialize it
into json format.
"""
from ray.runtime_env import RuntimeEnvConfig
proto_runtime_env_info = ProtoRuntimeEnvInfo()
if runtime_env.working_dir_uri():
proto_runtime_env_info.uris.working_dir_uri = runtime_env.working_dir_uri()
if len(runtime_env.py_modules_uris()) > 0:
proto_runtime_env_info.uris.py_modules_uris[:] = runtime_env.py_modules_uris()
# TODO(Catch-Bull): overload `__setitem__` for `RuntimeEnv`, change the
# runtime_env of all internal code from dict to RuntimeEnv.
runtime_env_config = runtime_env.get("config")
if runtime_env_config is None:
runtime_env_config = RuntimeEnvConfig.default_config()
else:
runtime_env_config = RuntimeEnvConfig.parse_and_validate_runtime_env_config(
runtime_env_config
)
proto_runtime_env_info.runtime_env_config.CopyFrom(
runtime_env_config.build_proto_runtime_env_config()
)
# Normally, `RuntimeEnv` should guarantee the accuracy of field eager_install,
# but so far, the internal code has not completely prohibited direct
# modification of fields in RuntimeEnv, so we should check it for insurance.
eager_install = (
runtime_env_config.get("eager_install")
if runtime_env_config is not None
else None
)
if is_job_runtime_env or eager_install is not None:
if eager_install is None:
eager_install = True
elif not isinstance(eager_install, bool):
raise TypeError(
f"eager_install must be a boolean. got {type(eager_install)}"
)
proto_runtime_env_info.runtime_env_config.eager_install = eager_install
proto_runtime_env_info.serialized_runtime_env = runtime_env.serialize()
if not serialize:
return proto_runtime_env_info
return json_format.MessageToJson(proto_runtime_env_info)
def parse_runtime_env(runtime_env: Optional[Union[Dict, "RuntimeEnv"]]):
from ray.runtime_env import RuntimeEnv
# Parse local pip/conda config files here. If we instead did it in
# .remote(), it would get run in the Ray Client server, which runs on
# a remote node where the files aren't available.
if runtime_env:
if isinstance(runtime_env, dict):
return RuntimeEnv(**(runtime_env or {}))
raise TypeError(
"runtime_env must be dict or RuntimeEnv, ",
f"but got: {type(runtime_env)}",
)
else:
# Keep the new_runtime_env as None. In .remote(), we need to know
# if runtime_env is None to know whether or not to fall back to the
# runtime_env specified in the @ray.remote decorator.
return None
def split_address(address: str) -> Tuple[str, str]:
"""Splits address into a module string (scheme) and an inner_address.
We use a custom splitting function instead of urllib because
PEP allows "underscores" in a module names, while URL schemes do not
allow them.
Args:
address: The address to split.
Returns:
A tuple of (scheme, inner_address).
Raises:
ValueError: If the address does not contain '://'.
Examples:
>>> split_address("ray://my_cluster")
('ray', 'my_cluster')
"""
if "://" not in address:
raise ValueError("Address must contain '://'")
module_string, inner_address = address.split("://", maxsplit=1)
return (module_string, inner_address)
def get_or_create_event_loop() -> asyncio.AbstractEventLoop:
"""Get a running async event loop if one exists, otherwise create one.
This function serves as a proxy for the deprecating get_event_loop().
It tries to get the running loop first, and if no running loop
could be retrieved:
- For python version <3.10: it falls back to the get_event_loop
call.
- For python version >= 3.10: it uses the same python implementation
of _get_event_loop() at asyncio/events.py.
Ideally, one should use high level APIs like asyncio.run() with python
version >= 3.7, if not possible, one should create and manage the event
loops explicitly.
"""
vers_info = sys.version_info
if vers_info.major >= 3 and vers_info.minor >= 10:
# This follows the implementation of the deprecating `get_event_loop`
# in python3.10's asyncio. See python3.10/asyncio/events.py
# _get_event_loop()
try:
loop = asyncio.get_running_loop()
assert loop is not None
return loop
except RuntimeError as e:
# No running loop, relying on the error message as for now to
# differentiate runtime errors.
assert "no running event loop" in str(e)
return asyncio.get_event_loop_policy().get_event_loop()
return asyncio.get_event_loop()
def get_entrypoint_name():
"""Get the entrypoint of the current script."""
prefix = ""
try:
curr = psutil.Process()
# Prepend `interactive_shell` for interactive shell scripts.
# https://stackoverflow.com/questions/2356399/tell-if-python-is-in-interactive-mode # noqa
if hasattr(sys, "ps1"):
prefix = "(interactive_shell) "
return prefix + list2cmdline(curr.cmdline())
except Exception:
return "unknown"
def _add_url_query_params(url: str, params: Dict[str, str]) -> str:
"""Add params to the provided url as query parameters.
If url already contains query parameters, they will be merged with params, with the
existing query parameters overriding any in params with the same parameter name.
Args:
url: The URL to add query parameters to.
params: The query parameters to add.
Returns:
URL with params added as query parameters.
"""
# Unquote URL first so we don't lose existing args.
url = unquote(url)
# Parse URL.
parsed_url = urlparse(url)
# Merge URL query string arguments dict with new params.
base_params = params
params = dict(parse_qsl(parsed_url.query))
base_params.update(params)
# bool and dict values should be converted to json-friendly values.
base_params.update(
{
k: json.dumps(v)
for k, v in base_params.items()
if isinstance(v, (bool, dict))
}
)
# Convert URL arguments to proper query string.
encoded_params = urlencode(base_params, doseq=True)
# Replace query string in parsed URL with updated query string.
parsed_url = parsed_url._replace(query=encoded_params)
# Convert back to URL.
return urlunparse(parsed_url)
def _add_creatable_buckets_param_if_s3_uri(uri: str) -> str:
"""If the provided URI is an S3 URL, add allow_bucket_creation=true as a query
parameter. For pyarrow >= 9.0.0, this is required in order to allow
``S3FileSystem.create_dir()`` to create S3 buckets.
If the provided URI is not an S3 URL or if pyarrow < 9.0.0 is installed, we return
the URI unchanged.
Args:
uri: The URI that we'll add the query parameter to, if it's an S3 URL.
Returns:
A URI with the added allow_bucket_creation=true query parameter, if the provided
URI is an S3 URL; uri will be returned unchanged otherwise.
"""
from packaging.version import parse as parse_version
pyarrow_version = _get_pyarrow_version()
if pyarrow_version is not None:
pyarrow_version = parse_version(pyarrow_version)
if pyarrow_version is not None and pyarrow_version < parse_version("9.0.0"):
# This bucket creation query parameter is not required for pyarrow < 9.0.0.
return uri
parsed_uri = urlparse(uri)
if parsed_uri.scheme == "s3":
uri = _add_url_query_params(uri, {"allow_bucket_creation": True})
return uri
def _get_pyarrow_version() -> Optional[str]:
"""Get the version of the installed pyarrow package, returned as a tuple of ints.
Returns None if the package is not found.
"""
global _PYARROW_VERSION
if _PYARROW_VERSION is None:
try:
import pyarrow
except ModuleNotFoundError:
# pyarrow not installed, short-circuit.
pass
else:
if hasattr(pyarrow, "__version__"):
_PYARROW_VERSION = pyarrow.__version__
return _PYARROW_VERSION
class DeferSigint(contextlib.AbstractContextManager):
"""Context manager that defers SIGINT signals until the context is left."""
# This is used by Ray's task cancellation to defer cancellation interrupts during
# problematic areas, e.g. task argument deserialization.
def __init__(self):
# Whether a SIGINT signal was received during the context.
self.signal_received = False
# The overridden SIGINT handler
self.overridden_sigint_handler = None
# The original signal method.
self.orig_signal = None
@classmethod
def create_if_main_thread(cls) -> contextlib.AbstractContextManager:
"""Creates a DeferSigint context manager if running on the main thread,
returns a no-op context manager otherwise.
"""
if threading.current_thread() == threading.main_thread():
return cls()
else:
return contextlib.nullcontext()
def _set_signal_received(self, signum, frame):
"""SIGINT handler that defers the signal."""
self.signal_received = True
def _signal_monkey_patch(self, signum, handler):
"""Monkey patch for signal.signal that defers the setting of new signal
handler after the DeferSigint context exits."""
# Only handle it in the main thread because if setting a handler in a non-main
# thread, signal.signal will raise an error because Python doesn't allow it.
if (
threading.current_thread() == threading.main_thread()
and signum == signal.SIGINT
):
orig_sigint_handler = self.overridden_sigint_handler
self.overridden_sigint_handler = handler
return orig_sigint_handler
return self.orig_signal(signum, handler)
def __enter__(self):
# Save original SIGINT handler for later restoration.
self.overridden_sigint_handler = signal.getsignal(signal.SIGINT)
# Set SIGINT signal handler that defers the signal.
signal.signal(signal.SIGINT, self._set_signal_received)
# Monkey patch signal.signal to raise an error if a SIGINT handler is registered
# within the context.
self.orig_signal = signal.signal
signal.signal = self._signal_monkey_patch
return self
def __exit__(self, exc_type, exc, exc_tb):
assert self.overridden_sigint_handler is not None
assert self.orig_signal is not None
# Restore original signal.signal function.
signal.signal = self.orig_signal
# Restore overridden SIGINT handler.
signal.signal(signal.SIGINT, self.overridden_sigint_handler)
if exc_type is None and self.signal_received:
# No exception raised in context, call the original SIGINT handler.
# By default, this means raising KeyboardInterrupt.
self.overridden_sigint_handler(signal.SIGINT, None)
else:
# If exception was raised in context, returning False will cause it to be
# reraised.
return False
background_tasks = set()
def run_background_task(coroutine: Coroutine) -> asyncio.Task:
"""Schedule a task reliably to the event loop.
This API is used when you don't want to cache the reference of `asyncio.Task`.
For example,
```
get_event_loop().create_task(coroutine(*args))
```
The above code doesn't guarantee to schedule the coroutine to the event loops
When using create_task in a "fire and forget" way, we should keep the references
alive for the reliable execution. This API is used to fire and forget
asynchronous execution.
https://docs.python.org/3/library/asyncio-task.html#creating-tasks
"""
task = get_or_create_event_loop().create_task(coroutine)
# Add task to the set. This creates a strong reference.
background_tasks.add(task)
# To prevent keeping references to finished tasks forever,
# make each task remove its own reference from the set after
# completion:
task.add_done_callback(background_tasks.discard)
return task
def try_import_each_module(module_names_to_import: List[str]) -> None:
"""
Make a best-effort attempt to import each named Python module.
This is used by the Python default_worker.py to preload modules.
"""
for module_to_preload in module_names_to_import:
try:
importlib.import_module(module_to_preload)
except ImportError:
logger.exception(f'Failed to preload the module "{module_to_preload}"')
def remove_ray_internal_flags_from_env(env: dict):
"""
Remove Ray internal flags from `env`.
Defined in ray/common/ray_internal_flag_def.h
"""
for flag in ray_constants.RAY_INTERNAL_FLAGS:
env.pop(flag, None)
def update_envs(env_vars: Dict[str, str]):
"""
When updating the environment variable, if there is ${X},
it will be replaced with the current environment variable.
"""
if not env_vars:
return
for key, value in env_vars.items():
expanded = os.path.expandvars(value)
# Replace non-existant env vars with an empty string.
result = re.sub(r"\$\{[A-Z0-9_]+\}", "", expanded)
os.environ[key] = result
def parse_node_labels_json(
labels_json: str, cli_logger, cf, command_arg="--labels"
) -> Dict[str, str]:
try:
labels = json.loads(labels_json)
if not isinstance(labels, dict):
raise ValueError(
"The format after deserialization is not a key-value pair map"
)
for key, value in labels.items():
if not isinstance(key, str):
raise ValueError("The key is not string type.")
if not isinstance(value, str):
raise ValueError(f'The value of the "{key}" is not string type')
except Exception as e:
cli_logger.abort(
"`{}` is not a valid JSON string, detail error:{}"
"Valid values look like this: `{}`",
cf.bold(f"{command_arg}={labels_json}"),
str(e),
cf.bold(f'{command_arg}=\'{{"gpu_type": "A100", "region": "us"}}\''),
)
return labels
def validate_node_labels(labels: Dict[str, str]):
if labels is None:
return
for key in labels.keys():
if key.startswith(ray_constants.RAY_DEFAULT_LABEL_KEYS_PREFIX):
raise ValueError(
f"Custom label keys `{key}` cannot start with the prefix "
f"`{ray_constants.RAY_DEFAULT_LABEL_KEYS_PREFIX}`. "
f"This is reserved for Ray defined labels."
)
def parse_pg_formatted_resources_to_original(
pg_formatted_resources: Dict[str, float]
) -> Dict[str, float]:
original_resources = {}
for key, value in pg_formatted_resources.items():
result = PLACEMENT_GROUP_INDEXED_BUNDLED_RESOURCE_PATTERN.match(key)
if result and len(result.groups()) == 3:
# Filter out resources that have bundle_group_[pg_id] since
# it is an implementation detail.
# This resource is automatically added to the resource
# request for all tasks that require placement groups.
if result.group(1) == ray_constants.PLACEMENT_GROUP_BUNDLE_RESOURCE_NAME:
continue
original_resources[result.group(1)] = value
continue
result = PLACEMENT_GROUP_WILDCARD_RESOURCE_PATTERN.match(key)
if result and len(result.groups()) == 2:
if result.group(1) == "bundle":
continue
original_resources[result.group(1)] = value
continue
original_resources[key] = value
return original_resources
def load_class(path):
"""Load a class at runtime given a full path.
Example of the path: mypkg.mysubpkg.myclass
"""
class_data = path.split(".")
if len(class_data) < 2:
raise ValueError("You need to pass a valid path like mymodule.provider_class")
module_path = ".".join(class_data[:-1])
class_str = class_data[-1]
module = importlib.import_module(module_path)
return getattr(module, class_str)
def validate_actor_state_name(actor_state_name):
if actor_state_name is None:
return
actor_state_names = [
"DEPENDENCIES_UNREADY",
"PENDING_CREATION",
"ALIVE",
"RESTARTING",
"DEAD",
]
if actor_state_name not in actor_state_names:
raise ValueError(
f'"{actor_state_name}" is not a valid actor state name, '
'it must be one of the following: "DEPENDENCIES_UNREADY", '
'"PENDING_CREATION", "ALIVE", "RESTARTING", or "DEAD"'
)
def get_current_node_cpu_model_name() -> Optional[str]:
if not sys.platform.startswith("linux"):
return None
try:
"""
/proc/cpuinfo content example:
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8259CL CPU @ 2.50GHz
stepping : 7
"""
with open("/proc/cpuinfo", "r") as f:
for line in f:
if line.startswith("model name"):
return line.split(":")[1].strip()
return None
except Exception:
logger.debug("Failed to get CPU model name", exc_info=True)
return None
|