import copy import json import os import shutil import sys import tempfile import time import unittest from dataclasses import asdict from datetime import datetime from functools import partial from time import sleep from unittest import mock import pytest import yaml import ray import ray._private.ray_constants from ray._private.gcs_utils import PlacementGroupTableData from ray._private.test_utils import same_elements from ray.autoscaler._private.autoscaler import AutoscalerSummary from ray.autoscaler._private.commands import get_or_create_head_node from ray.autoscaler._private.constants import ( AUTOSCALER_MAX_RESOURCE_DEMAND_VECTOR_SIZE, AUTOSCALER_UTILIZATION_SCORER_KEY, ) from ray.autoscaler._private.load_metrics import LoadMetrics from ray.autoscaler._private.node_provider_availability_tracker import ( NodeAvailabilityRecord, NodeAvailabilitySummary, UnavailableNodeInformation, ) from ray.autoscaler._private.providers import _NODE_PROVIDERS, _clear_provider_cache from ray.autoscaler._private.resource_demand_scheduler import ( ResourceDemandScheduler, _add_min_workers_nodes, _default_utilization_scorer, _resource_based_utilization_scorer, get_bin_pack_residual, get_nodes_for as _get, ) from ray.autoscaler._private.util import ( LoadMetricsSummary, format_info_string, is_placement_group_resource, ) from ray.autoscaler.tags import ( NODE_KIND_HEAD, NODE_KIND_WORKER, STATUS_UNINITIALIZED, STATUS_UP_TO_DATE, STATUS_WAITING_FOR_SSH, TAG_RAY_NODE_KIND, TAG_RAY_NODE_STATUS, TAG_RAY_USER_NODE_TYPE, ) from ray.core.generated.common_pb2 import Bundle, PlacementStrategy from ray.tests.test_autoscaler import ( MULTI_WORKER_CLUSTER, TYPES_A, MockAutoscaler, MockGcsClient, MockProcessRunner, MockProvider, fill_in_node_ids, mock_node_id, ) GET_DEFAULT_METHOD = "ray.autoscaler._private.util._get_default_config" EMPTY_AVAILABILITY_SUMMARY = NodeAvailabilitySummary({}) DUMMY_IDLE_DURATION_S = 3 utilization_scorer = partial( _default_utilization_scorer, node_availability_summary=EMPTY_AVAILABILITY_SUMMARY ) def get_nodes_for(*a, **kw): return _get( *a, utilization_scorer=utilization_scorer, **kw, )[0] def test_util_score(): assert ( _resource_based_utilization_scorer( {"CPU": 64}, [{"TPU": 16}], node_availability_summary=EMPTY_AVAILABILITY_SUMMARY, ) is None ) assert _resource_based_utilization_scorer( {"GPU": 4}, [{"GPU": 2}], node_availability_summary=EMPTY_AVAILABILITY_SUMMARY ) == (True, 1, 0.5, 0.5) assert _resource_based_utilization_scorer( {"GPU": 4}, [{"GPU": 1}, {"GPU": 1}], node_availability_summary=EMPTY_AVAILABILITY_SUMMARY, ) == (True, 1, 0.5, 0.5) assert _resource_based_utilization_scorer( {"GPU": 2}, [{"GPU": 2}], node_availability_summary=EMPTY_AVAILABILITY_SUMMARY ) == (True, 1, 2, 2) assert _resource_based_utilization_scorer( {"GPU": 2}, [{"GPU": 1}, {"GPU": 1}], node_availability_summary=EMPTY_AVAILABILITY_SUMMARY, ) == (True, 1, 2, 2) assert _resource_based_utilization_scorer( {"GPU": 1}, [{"GPU": 1, "CPU": 1}, {"GPU": 1}], node_availability_summary=EMPTY_AVAILABILITY_SUMMARY, ) == (True, 1, 1, 1) assert _resource_based_utilization_scorer( {"GPU": 1, "CPU": 1}, [{"GPU": 1, "CPU": 1}, {"GPU": 1}], node_availability_summary=EMPTY_AVAILABILITY_SUMMARY, ) == (True, 2, 1, 1) assert _resource_based_utilization_scorer( {"GPU": 2, "TPU": 1}, [{"GPU": 2}], node_availability_summary=EMPTY_AVAILABILITY_SUMMARY, ) == (True, 1, 0, 1) assert _resource_based_utilization_scorer( {"CPU": 64}, [{"CPU": 64}], node_availability_summary=EMPTY_AVAILABILITY_SUMMARY ) == (True, 1, 64, 64) assert _resource_based_utilization_scorer( {"CPU": 64}, [{"CPU": 32}], node_availability_summary=EMPTY_AVAILABILITY_SUMMARY ) == (True, 1, 8, 8) assert _resource_based_utilization_scorer( {"CPU": 64}, [{"CPU": 16}, {"CPU": 16}], node_availability_summary=EMPTY_AVAILABILITY_SUMMARY, ) == (True, 1, 8, 8) def test_gpu_node_util_score(): # Avoid scheduling CPU tasks on GPU node. utilization_score = _resource_based_utilization_scorer( {"GPU": 1, "CPU": 1}, [{"CPU": 1}], node_availability_summary=EMPTY_AVAILABILITY_SUMMARY, ) gpu_ok = utilization_score[0] assert gpu_ok is False assert _resource_based_utilization_scorer( {"GPU": 1, "CPU": 1}, [{"CPU": 1, "GPU": 1}], node_availability_summary=EMPTY_AVAILABILITY_SUMMARY, ) == (True, 2, 1.0, 1.0) assert _resource_based_utilization_scorer( {"GPU": 1, "CPU": 1}, [{"GPU": 1}], node_availability_summary=EMPTY_AVAILABILITY_SUMMARY, ) == (True, 1, 0.0, 0.5) def test_zero_resource(): # Test edge case of node type with all zero resource values. assert ( _resource_based_utilization_scorer( {"CPU": 0, "custom": 0}, [{"custom": 1}], node_availability_summary=EMPTY_AVAILABILITY_SUMMARY, ) is None ) # Just check that we don't have a division-by-zero error. _resource_based_utilization_scorer( {"CPU": 0, "custom": 1}, [{"custom": 1}], node_availability_summary=EMPTY_AVAILABILITY_SUMMARY, ) def test_bin_pack(): assert get_bin_pack_residual([], [{"GPU": 2}, {"GPU": 2}])[0] == [ {"GPU": 2}, {"GPU": 2}, ] assert get_bin_pack_residual([{"GPU": 2}], [{"GPU": 2}, {"GPU": 2}])[0] == [ {"GPU": 2} ] assert get_bin_pack_residual([{"GPU": 4}], [{"GPU": 2}, {"GPU": 2}])[0] == [] arg = [{"GPU": 2}, {"GPU": 2, "CPU": 2}] assert get_bin_pack_residual(arg, [{"GPU": 2}, {"GPU": 2}])[0] == [] arg = [{"CPU": 2}, {"GPU": 2}] assert get_bin_pack_residual(arg, [{"GPU": 2}, {"GPU": 2}])[0] == [{"GPU": 2}] arg = [{"GPU": 3}] assert ( get_bin_pack_residual(arg, [{"GPU": 1}, {"GPU": 1}], strict_spread=False)[0] == [] ) assert get_bin_pack_residual(arg, [{"GPU": 1}, {"GPU": 1}], strict_spread=True) == ( [{"GPU": 1}], [{"GPU": 2}], ) arg = [{"GPU": 2}, {"GPU": 0.5}, {"GPU": 2}, {"GPU": 3}] assert get_bin_pack_residual(arg, [{"GPU": 1}, {"GPU": 1}], strict_spread=True) == ( [], # the below output order should not be changed. [{"GPU": 1}, {"GPU": 0.5}, {"GPU": 1}, {"GPU": 3}], ) implicit_resource = ray._raylet.IMPLICIT_RESOURCE_PREFIX + "a" assert ( get_bin_pack_residual( [{"CPU": 1}], [{implicit_resource: 0.5}, {implicit_resource: 0.5}] )[0] == [] ) assert get_bin_pack_residual( [{"CPU": 1}], [{implicit_resource: 1}, {implicit_resource: 0.5}] ) == ([{implicit_resource: 0.5}], [{"CPU": 1, implicit_resource: 0}]) def test_get_nodes_packing_heuristic(): assert get_nodes_for(TYPES_A, {}, "empty_node", 9999, [{"GPU": 8}]) == { "p2.8xlarge": 1 } assert get_nodes_for(TYPES_A, {}, "empty_node", 9999, [{"GPU": 1}] * 6) == { "p2.8xlarge": 1 } assert get_nodes_for(TYPES_A, {}, "empty_node", 9999, [{"GPU": 1}] * 4) == { "p2.xlarge": 4 } assert get_nodes_for( TYPES_A, {}, "empty_node", 9999, [{"CPU": 32, "GPU": 1}] * 3 ) == {"p2.8xlarge": 3} assert ( get_nodes_for(TYPES_A, {}, "empty_node", 9999, [{"CPU": 64, "GPU": 1}] * 3) == {} ) assert get_nodes_for(TYPES_A, {}, "empty_node", 9999, [{"CPU": 64}] * 3) == { "m4.16xlarge": 3 } assert get_nodes_for( TYPES_A, {}, "empty_node", 9999, [{"CPU": 64}, {"CPU": 1}] ) == {"m4.16xlarge": 1, "m4.large": 1} assert get_nodes_for( TYPES_A, {}, "empty_node", 9999, [{"CPU": 64}, {"CPU": 9}, {"CPU": 9}] ) == {"m4.16xlarge": 1, "m4.4xlarge": 2} assert get_nodes_for(TYPES_A, {}, "empty_node", 9999, [{"CPU": 16}] * 5) == { "m4.16xlarge": 1, "m4.4xlarge": 1, } assert get_nodes_for(TYPES_A, {}, "empty_node", 9999, [{"CPU": 8}] * 10) == { "m4.16xlarge": 1, "m4.4xlarge": 1, } assert get_nodes_for(TYPES_A, {}, "empty_node", 9999, [{"CPU": 1}] * 100) == { "m4.16xlarge": 1, "m4.4xlarge": 2, "m4.large": 2, } assert get_nodes_for( TYPES_A, {}, "empty_node", 9999, [{"GPU": 1}] + ([{"CPU": 1}] * 64) ) == {"m4.16xlarge": 1, "p2.xlarge": 1} assert get_nodes_for( TYPES_A, {}, "empty_node", 9999, ([{"GPU": 1}] * 8) + ([{"CPU": 1}] * 64) ) == {"m4.4xlarge": 2, "p2.8xlarge": 1} assert get_nodes_for( TYPES_A, {}, "empty_node", 9999, [{"GPU": 1}] * 8, strict_spread=False ) == {"p2.8xlarge": 1} assert get_nodes_for( TYPES_A, {}, "empty_node", 9999, [{"GPU": 1}] * 8, strict_spread=True ) == {"p2.xlarge": 8} def test_node_packing_gpu_cpu_bundles(): TYPES = { "cpu": { "resources": { "CPU": 16, }, "max_workers": 10, }, "gpu": { "resources": { "CPU": 16, "GPU": 1, }, "max_workers": 10, }, } nodes = get_nodes_for( TYPES, {}, "cpu", 9999, ([{"CPU": 1}] * 30 + [{"GPU": 1, "CPU": 1}]), ) assert nodes == {"gpu": 1, "cpu": 1} nodes = get_nodes_for( TYPES, {}, "cpu", 9999, ([{"GPU": 1, "CPU": 1}] + [{"CPU": 1}] * 30), ) assert nodes == {"gpu": 1, "cpu": 1} nodes = get_nodes_for( TYPES, {}, "cpu", 9999, ([{"GPU": 1, "CPU": 1}] + [{"CPU": 1}] * 15), ) assert nodes == {"gpu": 1} def test_gpu_node_avoid_cpu_task(): types = { "cpu": { "resources": {"CPU": 1}, "max_workers": 10, }, "gpu": { "resources": { "GPU": 1, "CPU": 100, }, "max_workers": 10, }, } r1 = [{"CPU": 1}] * 100 # max_to_add ten nodes allowed. All chosen to be "cpu". assert get_nodes_for( types, {}, "empty_node", 10, r1, ) == {"cpu": 10} # max_to_add eleven nodes allowed. First ten chosen to be "cpu", # last chosen to be "gpu" due max_workers constraint on "cpu". assert get_nodes_for( types, {}, "empty_node", 11, r1, ) == {"cpu": 10, "gpu": 1} r2 = [{"GPU": 1}] + [{"CPU": 1}] * 100 assert get_nodes_for( types, {}, "empty_node", 100, r2, ) == {"gpu": 1} r3 = [{"GPU": 1}] * 4 + [{"CPU": 1}] * 404 assert get_nodes_for( types, {}, "empty_node", 100, r3, ) == {"gpu": 4, "cpu": 4} def test_get_nodes_respects_max_limit(): types = { "m4.large": { "resources": {"CPU": 2}, "max_workers": 10, }, "gpu": { "resources": {"GPU": 1}, "max_workers": 99999, }, } assert get_nodes_for( types, {}, "empty_node", 2, [{"CPU": 1}] * 10, ) == {"m4.large": 2} assert ( get_nodes_for( types, {"m4.large": 9999}, "empty_node", 9999, [{"CPU": 1}] * 10, ) == {} ) assert get_nodes_for( types, {"m4.large": 0}, "empty_node", 9999, [{"CPU": 1}] * 10, ) == {"m4.large": 5} assert get_nodes_for( types, {"m4.large": 7}, "m4.large", 4, [{"CPU": 1}] * 10, ) == {"m4.large": 4} assert get_nodes_for( types, {"m4.large": 7}, "m4.large", 2, [{"CPU": 1}] * 10, ) == {"m4.large": 2} def test_add_min_workers_nodes(): types = { "m2.large": { "resources": {"CPU": 2}, "min_workers": 50, "max_workers": 100, }, "m4.large": { "resources": {"CPU": 2}, "min_workers": 0, "max_workers": 10, }, "gpu": { "resources": {"GPU": 1}, "min_workers": 99999, "max_workers": 99999, }, "gpubla": { "resources": {"GPU": 1}, "min_workers": 10, "max_workers": 0, }, } # Formatting is disabled to prevent Black from erroring while formatting # this file. See https://github.com/ray-project/ray/issues/21313 for more # information. # fmt: off assert _add_min_workers_nodes( [], {}, types, None, None, None, utilization_scorer=utilization_scorer, ) == ( [{"CPU": 2}]*50+[{"GPU": 1}]*99999, {"m2.large": 50, "gpu": 99999}, {"m2.large": 50, "gpu": 99999} ) assert _add_min_workers_nodes( [{"CPU": 2}]*5, {"m2.large": 5}, types, None, None, None, utilization_scorer=utilization_scorer, ) == ( [{"CPU": 2}]*50+[{"GPU": 1}]*99999, {"m2.large": 50, "gpu": 99999}, {"m2.large": 45, "gpu": 99999} ) assert _add_min_workers_nodes( [{"CPU": 2}]*60, {"m2.large": 60}, types, None, None, None, utilization_scorer=utilization_scorer, ) == ( [{"CPU": 2}]*60+[{"GPU": 1}]*99999, {"m2.large": 60, "gpu": 99999}, {"gpu": 99999} ) assert _add_min_workers_nodes( [{"CPU": 2}] * 50 + [{"GPU": 1}] * 99999, {"m2.large": 50, "gpu": 99999}, types, None, None, None, utilization_scorer=utilization_scorer, ) == ( [{"CPU": 2}] * 50 + [{"GPU": 1}] * 99999, {"m2.large": 50, "gpu": 99999}, {} ) assert _add_min_workers_nodes( [], {}, {"gpubla": types["gpubla"]}, None, None, None, utilization_scorer=utilization_scorer, ) == ([], {}, {}) types["gpubla"]["max_workers"] = 10 assert _add_min_workers_nodes( [], {}, {"gpubla": types["gpubla"]}, None, None, None, utilization_scorer=utilization_scorer, ) == ([{"GPU": 1}] * 10, {"gpubla": 10}, {"gpubla": 10}) # fmt: on def test_get_nodes_to_launch_with_min_workers(): provider = MockProvider() new_types = copy.deepcopy(TYPES_A) new_types["p2.8xlarge"]["min_workers"] = 2 scheduler = ResourceDemandScheduler( provider, new_types, 3, head_node_type="p2.8xlarge", upscaling_speed=1, ) provider.create_node( {}, { TAG_RAY_USER_NODE_TYPE: "p2.8xlarge", TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, TAG_RAY_NODE_KIND: NODE_KIND_HEAD, }, 1, ) nodes = provider.non_terminated_nodes({}) ips = provider.non_terminated_node_ips({}) utilizations = {ip: {"GPU": 8} for ip in ips} to_launch, rem = scheduler.get_nodes_to_launch( nodes, {}, [{"GPU": 8}], utilizations, [], {}, [], EMPTY_AVAILABILITY_SUMMARY, ) assert to_launch == {"p2.8xlarge": 2} assert not rem to_launch, rem = scheduler.get_nodes_to_launch( nodes, {}, [{"GPU": 8}] * 6, utilizations, [], {}, [], EMPTY_AVAILABILITY_SUMMARY, ) assert to_launch == {"p2.8xlarge": 3} assert rem == [{"GPU": 8}, {"GPU": 8}] def test_get_nodes_to_launch_with_min_workers_and_bin_packing(): provider = MockProvider() new_types = copy.deepcopy(TYPES_A) new_types["p2.8xlarge"]["min_workers"] = 2 scheduler = ResourceDemandScheduler( provider, new_types, 10, head_node_type="p2.8xlarge", upscaling_speed=1, ) provider.create_node( {}, { TAG_RAY_NODE_KIND: NODE_KIND_HEAD, TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, TAG_RAY_USER_NODE_TYPE: "p2.8xlarge", }, 1, ) provider.create_node( {}, {TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, TAG_RAY_USER_NODE_TYPE: "p2.8xlarge"}, 1, ) nodes = provider.non_terminated_nodes({}) ips = provider.non_terminated_node_ips({}) # 1 free p2.8xls utilizations = {ip: {"GPU": 8} for ip in ips} # 1 more on the way pending_nodes = {"p2.8xlarge": 1} # requires 3 p2.8xls (only 2 are in cluster/pending) and 1 p2.xlarge demands = [{"GPU": 8}] * (len(utilizations) + 1) + [{"GPU": 1}] to_launch, rem = scheduler.get_nodes_to_launch( nodes, pending_nodes, demands, utilizations, [], {}, [], EMPTY_AVAILABILITY_SUMMARY, ) assert to_launch == {"p2.xlarge": 1} assert not rem # 3 min_workers + 1 head of p2.8xlarge covers the 3 p2.8xlarge + 1 # p2.xlarge demand. 3 p2.8xlarge are running/pending. So we need 1 more # p2.8xlarge only tomeet the min_workers constraint and the demand. new_types["p2.8xlarge"]["min_workers"] = 3 scheduler = ResourceDemandScheduler( provider, new_types, 10, head_node_type="p2.8xlarge", upscaling_speed=1, ) to_launch, rem = scheduler.get_nodes_to_launch( nodes, pending_nodes, demands, utilizations, [], {}, [], EMPTY_AVAILABILITY_SUMMARY, ) # Make sure it does not return [("p2.8xlarge", 1), ("p2.xlarge", 1)] assert to_launch == {"p2.8xlarge": 1} assert not rem def test_get_nodes_to_launch_limits(): provider = MockProvider() scheduler = ResourceDemandScheduler( provider, TYPES_A, 3, head_node_type="p2.8xlarge", upscaling_speed=1, ) provider.create_node( {}, {TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, TAG_RAY_USER_NODE_TYPE: "p2.8xlarge"}, 2, ) nodes = provider.non_terminated_nodes({}) ips = provider.non_terminated_node_ips({}) utilizations = {ip: {"GPU": 8} for ip in ips} to_launch, rem = scheduler.get_nodes_to_launch( nodes, {"p2.8xlarge": 1}, [{"GPU": 8}] * 2, utilizations, [], {}, [], EMPTY_AVAILABILITY_SUMMARY, ) assert to_launch == {} assert not rem to_launch, rem = scheduler.get_nodes_to_launch( nodes, {"p2.8xlarge": 1}, [{"GPU": 8}] * 20, utilizations, [], {}, [], EMPTY_AVAILABILITY_SUMMARY, ) assert to_launch == {"p2.8xlarge": 1} assert rem == [{"GPU": 8}] * 16 def test_calculate_node_resources(): provider = MockProvider() scheduler = ResourceDemandScheduler( provider, TYPES_A, 10, head_node_type="p2.8xlarge", upscaling_speed=1, ) provider.create_node( {}, {TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, TAG_RAY_USER_NODE_TYPE: "p2.8xlarge"}, 2, ) nodes = provider.non_terminated_nodes({}) ips = provider.non_terminated_node_ips({}) # 2 free p2.8xls utilizations = {ip: {"GPU": 8} for ip in ips} # 1 more on the way pending_nodes = {"p2.8xlarge": 1} # requires 4 p2.8xls (only 3 are in cluster/pending) demands = [{"GPU": 8}] * (len(utilizations) + 2) to_launch, rem = scheduler.get_nodes_to_launch( nodes, pending_nodes, demands, utilizations, [], {}, [], EMPTY_AVAILABILITY_SUMMARY, ) assert to_launch == {"p2.8xlarge": 1} assert not rem def test_request_resources_gpu_no_gpu_nodes(): provider = MockProvider() TYPES = { "m5.8xlarge": { "node_config": {}, "resources": {"CPU": 32}, "max_workers": 40, }, } scheduler = ResourceDemandScheduler( provider, TYPES, max_workers=100, head_node_type="empty_node", upscaling_speed=1, ) # Head node provider.create_node( {}, { TAG_RAY_USER_NODE_TYPE: "m5.8xlarge", TAG_RAY_NODE_KIND: NODE_KIND_HEAD, TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, }, 1, ) all_nodes = provider.non_terminated_nodes({}) node_ips = provider.non_terminated_node_ips({}) assert len(node_ips) == 1, node_ips # Fully utilized, no requests. avail_by_ip = {ip: {} for ip in node_ips} max_by_ip = {ip: {"CPU": 32} for ip in node_ips} # There aren't any nodes that can satisfy this demand, but we still shouldn't crash. demands = [{"CPU": 1, "GPU": 1}] * 1 to_launch, rem = scheduler.get_nodes_to_launch( all_nodes, {}, [], avail_by_ip, [], max_by_ip, demands, EMPTY_AVAILABILITY_SUMMARY, ) assert len(to_launch) == 0, to_launch assert not rem demands = [{"CPU": 1, "GPU": 0}] * 33 to_launch, rem = scheduler.get_nodes_to_launch( all_nodes, {}, [], avail_by_ip, [], max_by_ip, demands, EMPTY_AVAILABILITY_SUMMARY, ) assert len(to_launch) == 1, to_launch assert not rem def test_request_resources_existing_usage(): provider = MockProvider() TYPES = { "p2.8xlarge": { "node_config": {}, "resources": {"CPU": 32, "GPU": 8}, "max_workers": 40, }, } scheduler = ResourceDemandScheduler( provider, TYPES, max_workers=100, head_node_type="empty_node", upscaling_speed=1, ) # 5 nodes with 32 CPU and 8 GPU each provider.create_node( {}, { TAG_RAY_USER_NODE_TYPE: "p2.8xlarge", TAG_RAY_NODE_KIND: NODE_KIND_WORKER, TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, }, 2, ) all_nodes = provider.non_terminated_nodes({}) node_ips = provider.non_terminated_node_ips({}) assert len(node_ips) == 2, node_ips # Fully utilized, no requests. avail_by_ip = {ip: {} for ip in node_ips} max_by_ip = {ip: {"GPU": 8, "CPU": 32} for ip in node_ips} demands = [] to_launch, rem = scheduler.get_nodes_to_launch( all_nodes, {}, [], avail_by_ip, [], max_by_ip, demands, EMPTY_AVAILABILITY_SUMMARY, ) assert len(to_launch) == 0, to_launch assert not rem # Fully utilized, resource requests exactly equal. avail_by_ip = {ip: {} for ip in node_ips} demands = [{"GPU": 4}] * 4 to_launch, rem = scheduler.get_nodes_to_launch( all_nodes, {}, [], avail_by_ip, [], max_by_ip, demands, EMPTY_AVAILABILITY_SUMMARY, ) assert len(to_launch) == 0, to_launch assert not rem # Fully utilized, resource requests in excess. avail_by_ip = {ip: {} for ip in node_ips} demands = [{"GPU": 4}] * 7 to_launch, rem = scheduler.get_nodes_to_launch( all_nodes, {}, [], avail_by_ip, [], max_by_ip, demands, EMPTY_AVAILABILITY_SUMMARY, ) assert to_launch.get("p2.8xlarge") == 2, to_launch assert not rem # Not utilized, no requests. avail_by_ip = {ip: {"GPU": 4, "CPU": 32} for ip in node_ips} demands = [] to_launch, rem = scheduler.get_nodes_to_launch( all_nodes, {}, [], avail_by_ip, [], max_by_ip, demands, EMPTY_AVAILABILITY_SUMMARY, ) assert len(to_launch) == 0, to_launch assert not rem # Not utilized, resource requests exactly equal. avail_by_ip = {ip: {"GPU": 4, "CPU": 32} for ip in node_ips} demands = [{"GPU": 4}] * 4 to_launch, rem = scheduler.get_nodes_to_launch( all_nodes, {}, [], avail_by_ip, [], max_by_ip, demands, EMPTY_AVAILABILITY_SUMMARY, ) assert len(to_launch) == 0, to_launch assert not rem # Not utilized, resource requests in excess. avail_by_ip = {ip: {"GPU": 4, "CPU": 32} for ip in node_ips} demands = [{"GPU": 4}] * 7 to_launch, rem = scheduler.get_nodes_to_launch( all_nodes, {}, [], avail_by_ip, [], max_by_ip, demands, EMPTY_AVAILABILITY_SUMMARY, ) assert to_launch.get("p2.8xlarge") == 2, to_launch assert not rem # Not utilized, resource requests hugely in excess. avail_by_ip = {ip: {"GPU": 4, "CPU": 32} for ip in node_ips} demands = [{"GPU": 4}] * 70 to_launch, rem = scheduler.get_nodes_to_launch( all_nodes, {}, [], avail_by_ip, [], max_by_ip, demands, EMPTY_AVAILABILITY_SUMMARY, ) # This bypasses the launch rate limit. assert to_launch.get("p2.8xlarge") == 33, to_launch assert not rem def test_do_not_add_nodes_based_on_object_store_memory(): provider = MockProvider() TYPES = { "ray.worker.4090.standard": { "resources": {"CPU": 16, "GPU": 1, "memory": 30107260928, "gram": 24}, "max_workers": 5, }, "ray.worker.4090.highmem": { "resources": {"CPU": 16, "GPU": 1, "memory": 62277025792, "gram": 24}, "max_workers": 5, }, } provider.create_node( {}, { TAG_RAY_USER_NODE_TYPE: "ray.worker.4090.standard", TAG_RAY_NODE_KIND: NODE_KIND_WORKER, TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, }, 1, ) scheduler = ResourceDemandScheduler( provider, TYPES, max_workers=100, head_node_type="empty_node", upscaling_speed=1, ) ips = provider.non_terminated_node_ips({}) assert len(ips) == 1 unused_resources_by_ip = { ips[0]: { "CPU": 0.0, "GPU": 0.0, "memory": 0.0, "gram": 0.0, } } max_resources_by_ip = { ips[0]: { "CPU": 16.0, "GPU": 1.0, "memory": 30107260928.0, "gram": 24.0, "object_store_memory": 4933059335.0, } } # At this point, there is one node of type "ray.worker.4090.standard" in the cluster, # but all its resources are used. # Now, we try to request a new resource_demand that matches "ray.worker.4090.standard". # The scheduler should add a new node of type "ray.worker.4090.standard". # This test ensures that the scheduler does not take "object_store_memory" # into account when deciding which node type to add. Previously, the scheduler # would consider "object_store_memory" from max_resources_by_ip, and as a result, # choose "ray.worker.4090.highmem" instead of "ray.worker.4090.standard". resource_demands = [{"CPU": 16, "GPU": 1, "memory": 30107260928, "gram": 24}] to_launch, _ = scheduler.get_nodes_to_launch( nodes=provider.non_terminated_nodes({}), launching_nodes={}, resource_demands=resource_demands, unused_resources_by_ip=unused_resources_by_ip, pending_placement_groups=[], max_resources_by_ip=max_resources_by_ip, ensure_min_cluster_size=[], node_availability_summary=NodeAvailabilitySummary(node_availabilities={}), ) assert to_launch.get("ray.worker.4090.standard") == 1, to_launch assert to_launch.get("ray.worker.4090.highmem") is None, to_launch def test_backlog_queue_impact_on_binpacking_time(): new_types = copy.deepcopy(TYPES_A) new_types["p2.8xlarge"]["max_workers"] = 1000 new_types["m4.16xlarge"]["max_workers"] = 1000 def test_backlog_queue_impact_on_binpacking_time_aux( num_available_nodes, time_to_assert, demand_request_shape ): provider = MockProvider() scheduler = ResourceDemandScheduler( provider, new_types, max_workers=10000, head_node_type="m4.16xlarge", upscaling_speed=1, ) provider.create_node( {}, { TAG_RAY_USER_NODE_TYPE: "m4.16xlarge", TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, }, num_available_nodes, ) # m4.16xlarge instances. cpu_ips = provider.non_terminated_node_ips({}) provider.create_node( {}, { TAG_RAY_USER_NODE_TYPE: "p2.8xlarge", TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, }, num_available_nodes, ) # m4.16xlarge and # p2.8xlarge instances. all_nodes = provider.non_terminated_nodes({}) all_ips = provider.non_terminated_node_ips({}) gpu_ips = [ip for ip in all_ips if ip not in cpu_ips] usage_by_ip = {} # 2x free nodes ( m4.16xlarge # and p2.8xlarge instances). for i in range(num_available_nodes): usage_by_ip[cpu_ips[i]] = {"CPU": 64} usage_by_ip[gpu_ips[i]] = {"GPU": 8, "CPU": 32} demands = demand_request_shape * AUTOSCALER_MAX_RESOURCE_DEMAND_VECTOR_SIZE t1 = time.time() to_launch, rem = scheduler.get_nodes_to_launch( all_nodes, {}, demands, usage_by_ip, [], {}, [], EMPTY_AVAILABILITY_SUMMARY, ) t2 = time.time() assert t2 - t1 < time_to_assert print( "The time took to launch", to_launch, "with number of available nodes set to", num_available_nodes, "is:", t2 - t1, ) return to_launch # The assertions below use 10s but the actual time took when this test was # measured on 2.3 GHz 8-Core Intel (I9-9880H) Core i9 is commented inline. # Check the time it takes when there are 0 nodes available and the demand # is requires adding another ~100 nodes. to_launch = test_backlog_queue_impact_on_binpacking_time_aux( num_available_nodes=0, time_to_assert=10, # real time 0.2s. demand_request_shape=[{"GPU": 1}, {"CPU": 1}], ) # If not for the max launch concurrency the next assert should be: # {'m4.16xlarge': 1, 'p2.8xlarge': 125, 'p2.xlarge': 1} assert to_launch == {"m4.16xlarge": 1, "p2.8xlarge": 5, "p2.xlarge": 1} # Check the time it takes when there are 100 nodes available and the demand # requires another 75 nodes. to_launch = test_backlog_queue_impact_on_binpacking_time_aux( num_available_nodes=50, time_to_assert=10, # real time 0.075s. demand_request_shape=[{"GPU": 1}, {"CPU": 2}], ) # If not for the max launch concurrency the next assert should be: # {'p2.8xlarge': 75}. assert to_launch == {"p2.8xlarge": 50} # Check the time it takes when there are 250 nodes available and can # cover the demand. to_launch = test_backlog_queue_impact_on_binpacking_time_aux( num_available_nodes=125, time_to_assert=10, # real time 0.06s. demand_request_shape=[{"GPU": 1}, {"CPU": 1}], ) assert to_launch == {} # Check the time it takes when there are 1000 nodes available and the # demand requires another 1000 nodes. to_launch = test_backlog_queue_impact_on_binpacking_time_aux( num_available_nodes=500, time_to_assert=10, # real time 1.32s. demand_request_shape=[{"GPU": 8}, {"CPU": 64}], ) assert to_launch == {"m4.16xlarge": 500, "p2.8xlarge": 500} class TestPlacementGroupScaling: def test_strategies(self): provider = MockProvider() scheduler = ResourceDemandScheduler( provider, TYPES_A, 10, head_node_type="p2.8xlarge", upscaling_speed=1, ) provider.create_node({}, {TAG_RAY_USER_NODE_TYPE: "p2.8xlarge"}, 2) # At this point our cluster has 2 p2.8xlarge instances (16 GPUs) and is # fully idle. nodes = provider.non_terminated_nodes({}) resource_demands = [{"GPU": 4}] * 2 pending_placement_groups = [ # Requires a new node (only uses 2 GPUs on it though). PlacementGroupTableData( state=PlacementGroupTableData.PENDING, strategy=PlacementStrategy.STRICT_SPREAD, bundles=[ Bundle(unit_resources={"GPU": 2}), Bundle(unit_resources={"GPU": 2}), Bundle(unit_resources={"GPU": 2}), ], ), # Requires a new node (uses the whole node). PlacementGroupTableData( state=PlacementGroupTableData.PENDING, strategy=PlacementStrategy.STRICT_PACK, bundles=([Bundle(unit_resources={"GPU": 2})] * 4), ), # Fits across the machines that strict spread. PlacementGroupTableData( # runs on. state=PlacementGroupTableData.PENDING, strategy=PlacementStrategy.PACK, bundles=([Bundle(unit_resources={"GPU": 2})] * 2), ), # Fits across the machines that strict spread. PlacementGroupTableData( # runs on. state=PlacementGroupTableData.PENDING, strategy=PlacementStrategy.SPREAD, bundles=([Bundle(unit_resources={"GPU": 2})] * 2), ), ] to_launch, rem = scheduler.get_nodes_to_launch( nodes, {}, resource_demands, {}, pending_placement_groups, {}, [], EMPTY_AVAILABILITY_SUMMARY, ) assert to_launch == {"p2.8xlarge": 2} assert not rem def test_many_strict_spreads(self): provider = MockProvider() scheduler = ResourceDemandScheduler( provider, TYPES_A, 10, head_node_type="p2.8xlarge", upscaling_speed=1, ) provider.create_node({}, {TAG_RAY_USER_NODE_TYPE: "p2.8xlarge"}, 2) # At this point our cluster has 2 p2.8xlarge instances (16 GPUs) and is # fully idle. nodes = provider.non_terminated_nodes({}) resource_demands = [{"GPU": 1}] * 6 pending_placement_groups = [ # Requires a new node (only uses 2 GPUs on it though). PlacementGroupTableData( state=PlacementGroupTableData.PENDING, strategy=PlacementStrategy.STRICT_SPREAD, bundles=[Bundle(unit_resources={"GPU": 2})] * 3, ), ] # Each placement group will take up 2 GPUs per node, but the distinct # placement groups should still reuse the same nodes. pending_placement_groups = pending_placement_groups * 3 to_launch, rem = scheduler.get_nodes_to_launch( nodes, {}, resource_demands, {}, pending_placement_groups, {}, [], EMPTY_AVAILABILITY_SUMMARY, ) assert to_launch == {"p2.8xlarge": 1} assert not rem def test_packing(self): provider = MockProvider() scheduler = ResourceDemandScheduler( provider, TYPES_A, 10, head_node_type="p2.8xlarge", upscaling_speed=1, ) provider.create_node({}, {TAG_RAY_USER_NODE_TYPE: "p2.8xlarge"}, 1) # At this point our cluster has 1 p2.8xlarge instances (8 GPUs) and is # fully idle. nodes = provider.non_terminated_nodes({}) resource_demands = [{"GPU": 1}] * 2 pending_placement_groups = [ PlacementGroupTableData( state=PlacementGroupTableData.PENDING, strategy=PlacementStrategy.STRICT_PACK, bundles=[Bundle(unit_resources={"GPU": 2})] * 3, ), ] # The 2 resource demand gpus should still be packed onto the same node # as the 6 GPU placement group. to_launch, rem = scheduler.get_nodes_to_launch( nodes, {}, resource_demands, {}, pending_placement_groups, {}, [], EMPTY_AVAILABILITY_SUMMARY, ) assert to_launch == {} assert not rem def test_skip_placed_bundles(self): # test that we do not launch new nodes for bundles that are already placed. provider = MockProvider() scheduler = ResourceDemandScheduler( provider, TYPES_A, 10, head_node_type="p2.8xlarge", upscaling_speed=1, ) provider.create_node({}, {TAG_RAY_USER_NODE_TYPE: "p2.8xlarge"}, 1) # At this point our cluster has 1 p2.8xlarge instances (8 GPUs) and is # fully idle. nodes = provider.non_terminated_nodes({}) pending_placement_groups = [ PlacementGroupTableData( state=PlacementGroupTableData.PENDING, strategy=PlacementStrategy.PACK, bundles=[ Bundle(unit_resources={"GPU": 2}, node_id=nodes[0].encode()), Bundle(unit_resources={"GPU": 6}), ], ), ] # The bundle that has node_id should not be counted # towards the number of GPUs needed to launch new nodes. # The remaining bundle should be packed onto the existing node and # not require any new nodes. to_launch, rem = scheduler.get_nodes_to_launch( nodes, {}, [], { # 2 GPUs are already used by the first bundle. provider.internal_ip(nodes[0]): {"GPU": 6} }, pending_placement_groups, {}, [], EMPTY_AVAILABILITY_SUMMARY, ) assert to_launch == {} assert not rem def test_get_concurrent_resource_demand_to_launch(): node_types = copy.deepcopy(TYPES_A) node_types["p2.8xlarge"]["min_workers"] = 1 node_types["p2.8xlarge"]["max_workers"] = 10 node_types["m4.large"]["min_workers"] = 2 node_types["m4.large"]["max_workers"] = 100 provider = MockProvider() scheduler = ResourceDemandScheduler( provider, node_types, 200, head_node_type="empty_node", upscaling_speed=1, ) # Sanity check. assert len(provider.non_terminated_nodes({})) == 0 # Sanity check. updated_to_launch = scheduler._get_concurrent_resource_demand_to_launch( {}, [], [], {}, {}, {} ) assert updated_to_launch == {} provider.create_node( {}, { TAG_RAY_USER_NODE_TYPE: "p2.8xlarge", TAG_RAY_NODE_KIND: NODE_KIND_WORKER, }, 1, ) provider.create_node( {}, { TAG_RAY_USER_NODE_TYPE: "m4.large", TAG_RAY_NODE_KIND: NODE_KIND_WORKER, }, 2, ) # All nodes so far are pending/launching here. to_launch = {"p2.8xlarge": 4, "m4.large": 40} non_terminated_nodes = provider.non_terminated_nodes({}) pending_launches_nodes = {"p2.8xlarge": 1, "m4.large": 1} connected_nodes = [] # All the non_terminated_nodes are not connected yet. updated_to_launch = scheduler._get_concurrent_resource_demand_to_launch( to_launch, connected_nodes, non_terminated_nodes, pending_launches_nodes, {}, {} ) # Note: we have 2 pending/launching gpus, 3 pending/launching cpus, # 0 running gpu, and 0 running cpus. assert updated_to_launch == {"p2.8xlarge": 3, "m4.large": 2} # Test min_workers bypass max launch limit. updated_to_launch = scheduler._get_concurrent_resource_demand_to_launch( to_launch, connected_nodes, non_terminated_nodes, pending_launches_nodes, adjusted_min_workers={"m4.large": 40}, placement_group_nodes={}, ) assert updated_to_launch == {"p2.8xlarge": 3, "m4.large": 40} # Test placement groups bypass max launch limit. updated_to_launch = scheduler._get_concurrent_resource_demand_to_launch( to_launch, connected_nodes, non_terminated_nodes, pending_launches_nodes, {}, placement_group_nodes={"m4.large": 40}, ) assert updated_to_launch == {"p2.8xlarge": 3, "m4.large": 40} # Test combining min_workers and placement groups bypass max launch limit. updated_to_launch = scheduler._get_concurrent_resource_demand_to_launch( to_launch, connected_nodes, non_terminated_nodes, pending_launches_nodes, adjusted_min_workers={"m4.large": 25}, placement_group_nodes={"m4.large": 15}, ) assert updated_to_launch == {"p2.8xlarge": 3, "m4.large": 40} # This starts the min workers only, so we have no more pending workers. # The workers here are either running (connected) or in # pending_launches_nodes (i.e., launching). connected_nodes = [ provider.internal_ip(node_id) for node_id in non_terminated_nodes ] updated_to_launch = scheduler._get_concurrent_resource_demand_to_launch( to_launch, connected_nodes, non_terminated_nodes, pending_launches_nodes, {}, {} ) # Note that here we have 1 launching gpu, 1 launching cpu, # 1 running gpu, and 2 running cpus. assert updated_to_launch == {"p2.8xlarge": 4, "m4.large": 4} # Launch the nodes. Note, after create_node the node is pending. provider.create_node( {}, { TAG_RAY_USER_NODE_TYPE: "p2.8xlarge", TAG_RAY_NODE_KIND: NODE_KIND_WORKER, }, 5, ) provider.create_node( {}, { TAG_RAY_USER_NODE_TYPE: "m4.large", TAG_RAY_NODE_KIND: NODE_KIND_WORKER, }, 5, ) # Continue scaling. non_terminated_nodes = provider.non_terminated_nodes({}) to_launch = {"m4.large": 36} # No more gpus are necessary pending_launches_nodes = {} # No pending launches updated_to_launch = scheduler._get_concurrent_resource_demand_to_launch( to_launch, connected_nodes, non_terminated_nodes, pending_launches_nodes, {}, {} ) # Note: we have 5 pending cpus. So we are not allowed to start any. # Still only 2 running cpus. assert updated_to_launch == {} # All the non_terminated_nodes are connected here. connected_nodes = [ provider.internal_ip(node_id) for node_id in non_terminated_nodes ] updated_to_launch = scheduler._get_concurrent_resource_demand_to_launch( to_launch, connected_nodes, non_terminated_nodes, pending_launches_nodes, {}, {} ) # Note: that here we have 7 running cpus and nothing pending/launching. assert updated_to_launch == {"m4.large": 7} # Launch the nodes. Note, after create_node the node is pending. provider.create_node( {}, { TAG_RAY_USER_NODE_TYPE: "m4.large", TAG_RAY_NODE_KIND: NODE_KIND_WORKER, }, 7, ) # Continue scaling. non_terminated_nodes = provider.non_terminated_nodes({}) to_launch = {"m4.large": 29} pending_launches_nodes = {"m4.large": 1} updated_to_launch = scheduler._get_concurrent_resource_demand_to_launch( to_launch, connected_nodes, non_terminated_nodes, pending_launches_nodes, {}, {} ) # Note: we have 8 pending/launching cpus and only 7 running. # So we should not launch anything (8 < 7). assert updated_to_launch == {} # All the non_terminated_nodes are connected here. connected_nodes = [ provider.internal_ip(node_id) for node_id in non_terminated_nodes ] updated_to_launch = scheduler._get_concurrent_resource_demand_to_launch( to_launch, connected_nodes, non_terminated_nodes, pending_launches_nodes, {}, {} ) # Note: that here we have 14 running cpus and 1 launching. assert updated_to_launch == {"m4.large": 13} def test_get_concurrent_resource_demand_to_launch_with_upscaling_speed(): node_types = copy.deepcopy(TYPES_A) node_types["p2.8xlarge"]["min_workers"] = 1 node_types["p2.8xlarge"]["max_workers"] = 10 node_types["m4.large"]["min_workers"] = 2 node_types["m4.large"]["max_workers"] = 100 def create_provider(): provider = MockProvider() provider.create_node( {}, { TAG_RAY_USER_NODE_TYPE: "p2.8xlarge", TAG_RAY_NODE_KIND: NODE_KIND_WORKER, }, 0, ) provider.create_node( {}, { TAG_RAY_USER_NODE_TYPE: "m4.large", TAG_RAY_NODE_KIND: NODE_KIND_WORKER, }, 0, ) return provider # Test default behaviour limits to 5 inital nodes slow_scheduler = ResourceDemandScheduler( create_provider(), node_types, 200, head_node_type="empty_node", upscaling_speed=1, ) to_launch = slow_scheduler._get_concurrent_resource_demand_to_launch( {"m4.large": 50}, [], slow_scheduler.provider.non_terminated_nodes({}), {}, {}, {}, ) assert to_launch == {"m4.large": 5} # Test upscaling_speed is respected mid_scheduler = ResourceDemandScheduler( create_provider(), node_types, 200, head_node_type="empty_node", upscaling_speed=25, ) to_launch = mid_scheduler._get_concurrent_resource_demand_to_launch( {"m4.large": 50}, [], mid_scheduler.provider.non_terminated_nodes({}), {}, {}, {}, ) assert to_launch == {"m4.large": 25} # Test high upscaling_speed fast_scheduler = ResourceDemandScheduler( create_provider(), node_types, 200, head_node_type="empty_node", upscaling_speed=9999, ) to_launch = fast_scheduler._get_concurrent_resource_demand_to_launch( {"m4.large": 50}, [], fast_scheduler.provider.non_terminated_nodes({}), {}, {}, {}, ) assert to_launch == {"m4.large": 50} def test_get_nodes_to_launch_max_launch_concurrency_placement_groups(): provider = MockProvider() new_types = copy.deepcopy(TYPES_A) new_types["p2.8xlarge"]["min_workers"] = 10 new_types["p2.8xlarge"]["max_workers"] = 40 scheduler = ResourceDemandScheduler( provider, new_types, 50, head_node_type=None, upscaling_speed=1, ) pending_placement_groups = [ PlacementGroupTableData( state=PlacementGroupTableData.RESCHEDULING, strategy=PlacementStrategy.PACK, bundles=([Bundle(unit_resources={"GPU": 8})] * 25), ) ] # placement groups should bypass max launch limit. # Note that 25 = max(placement group resources=25, min_workers=10). to_launch, rem = scheduler.get_nodes_to_launch( [], {}, [], {}, pending_placement_groups, {}, [], EMPTY_AVAILABILITY_SUMMARY, ) assert to_launch == {"p2.8xlarge": 25} assert not rem pending_placement_groups = [ # Requires 25 p2.8xlarge nodes. PlacementGroupTableData( state=PlacementGroupTableData.RESCHEDULING, strategy=PlacementStrategy.STRICT_SPREAD, bundles=([Bundle(unit_resources={"GPU": 2})] * 25), ), # Requires 5 additional nodes (total 30). PlacementGroupTableData( state=PlacementGroupTableData.RESCHEDULING, strategy=PlacementStrategy.PACK, bundles=([Bundle(unit_resources={"GPU": 6})] * 30), ), ] to_launch, rem = scheduler.get_nodes_to_launch( [], {}, [], {}, pending_placement_groups, {}, [], EMPTY_AVAILABILITY_SUMMARY, ) # Test that combining spreads and normal placement group demands bypasses # launch limit. assert to_launch == {"p2.8xlarge": 30} assert not rem pending_placement_groups = [ # Requires 25 p2.8xlarge nodes. PlacementGroupTableData( state=PlacementGroupTableData.RESCHEDULING, strategy=PlacementStrategy.STRICT_SPREAD, bundles=([Bundle(unit_resources={"GPU": 2})] * 25), ), # Requires 35 additional nodes (total 60). PlacementGroupTableData( state=PlacementGroupTableData.RESCHEDULING, strategy=PlacementStrategy.PACK, bundles=([Bundle(unit_resources={"GPU": 6})] * 60), ), ] to_launch, rem = scheduler.get_nodes_to_launch( [], {}, [], {}, pending_placement_groups, {}, [], EMPTY_AVAILABILITY_SUMMARY, ) # make sure it still respects max_workers of p2.8xlarge. assert to_launch == {"p2.8xlarge": 40} assert rem == [{"GPU": 6.0}] * 20 scheduler.node_types["p2.8xlarge"]["max_workers"] = 60 to_launch, rem = scheduler.get_nodes_to_launch( [], {}, [], {}, pending_placement_groups, {}, [], EMPTY_AVAILABILITY_SUMMARY, ) # make sure it still respects global max_workers constraint. # 50 + 1 is global max_workers + head node.ß assert to_launch == {"p2.8xlarge": 51} assert rem == [{"GPU": 6.0}] * 9 def test_get_nodes_to_launch_max_launch_concurrency(): provider = MockProvider() new_types = copy.deepcopy(TYPES_A) new_types["p2.8xlarge"]["min_workers"] = 10 new_types["p2.8xlarge"]["max_workers"] = 40 scheduler = ResourceDemandScheduler( provider, new_types, 30, head_node_type=None, upscaling_speed=1, ) to_launch, rem = scheduler.get_nodes_to_launch( [], {}, [], {}, [], {}, [], EMPTY_AVAILABILITY_SUMMARY, ) # Respects min_workers despite max launch limit. assert to_launch == {"p2.8xlarge": 10} assert not rem scheduler.node_types["p2.8xlarge"]["min_workers"] = 4 provider.create_node( {}, { TAG_RAY_USER_NODE_TYPE: "p2.8xlarge", TAG_RAY_NODE_STATUS: STATUS_UNINITIALIZED, }, 1, ) nodes = provider.non_terminated_nodes({}) # Trying to force here that the node shows in nodes but not connected yet # and hence does not show up in LoadMetrics (or utilizations). ips = provider.non_terminated_node_ips({TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE}) utilizations = {ip: {"GPU": 8} for ip in ips} launching_nodes = {"p2.8xlarge": 1} # requires 41 p2.8xls (currently 1 pending, 1 launching, 0 running} demands = [{"GPU": 8}] * (len(utilizations) + 40) to_launch, rem = scheduler.get_nodes_to_launch( nodes, launching_nodes, demands, utilizations, [], {}, [], EMPTY_AVAILABILITY_SUMMARY, ) # Enforces max launch to 5 when < 5 running. 2 are pending/launching. assert to_launch == {"p2.8xlarge": 3} assert rem == [{"GPU": 8}] * 9 provider.create_node( {}, {TAG_RAY_USER_NODE_TYPE: "p2.8xlarge", TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE}, 8, ) nodes = provider.non_terminated_nodes({}) ips = provider.non_terminated_node_ips({TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE}) utilizations = {ip: {"GPU": 8} for ip in ips} launching_nodes = {"p2.8xlarge": 1} # Requires additional 17 p2.8xls (now 1 pending, 1 launching, 8 running} demands = [{"GPU": 8}] * (len(utilizations) + 15) to_launch, rem = scheduler.get_nodes_to_launch( nodes, launching_nodes, demands, utilizations, [], {}, [], EMPTY_AVAILABILITY_SUMMARY, ) # We are allowed to launch up to 8 more since 8 are running. # We already have 2 pending/launching, so only 6 remain. assert to_launch == {"p2.8xlarge": 6} assert not rem class LoadMetricsTest(unittest.TestCase): def testResourceDemandVector(self): lm = LoadMetrics() lm.update( "1.1.1.1", mock_node_id(), {"CPU": 2}, {"CPU": 1}, 0, waiting_bundles=[{"GPU": 1}], infeasible_bundles=[{"CPU": 16}], ) assert same_elements(lm.get_resource_demand_vector(), [{"CPU": 16}, {"GPU": 1}]) def testPlacementGroupLoad(self): lm = LoadMetrics() pending_placement_groups = [ PlacementGroupTableData( state=PlacementGroupTableData.RESCHEDULING, strategy=PlacementStrategy.PACK, bundles=([Bundle(unit_resources={"GPU": 2})] * 2), ), PlacementGroupTableData( state=PlacementGroupTableData.RESCHEDULING, strategy=PlacementStrategy.SPREAD, bundles=([Bundle(unit_resources={"GPU": 2})] * 2), ), ] lm.update( "1.1.1.1", mock_node_id(), {}, {}, DUMMY_IDLE_DURATION_S, pending_placement_groups=pending_placement_groups, ) assert lm.get_pending_placement_groups() == pending_placement_groups def testSummary(self): lm = LoadMetrics() assert lm.summary() is not None pending_placement_groups = [ PlacementGroupTableData( state=PlacementGroupTableData.RESCHEDULING, strategy=PlacementStrategy.PACK, bundles=([Bundle(unit_resources={"GPU": 2})] * 2), ), PlacementGroupTableData( state=PlacementGroupTableData.RESCHEDULING, strategy=PlacementStrategy.PACK, bundles=([Bundle(unit_resources={"GPU": 2})] * 2), ), ] lm.update( "1.1.1.1", mock_node_id(), { "CPU": 64, "memory": 1000 * 1024 * 1024, "object_store_memory": 2000 * 1024 * 1024, }, { "CPU": 2, "memory": 500 * 1024 * 1024, # 500 MiB "object_store_memory": 1000 * 1024 * 1024, }, 0, ) lm.update( "1.1.1.2", mock_node_id(), { "CPU": 64, "GPU": 8, "accelerator_type:V100": 1, }, { "CPU": 0, "GPU": 1, "accelerator_type:V100": 1, }, 0, ) lm.update( "1.1.1.3", mock_node_id(), {"CPU": 64, "GPU": 8, "accelerator_type:V100": 1}, {"CPU": 0, "GPU": 0, "accelerator_type:V100": 0.92}, 0, ) lm.update( "1.1.1.4", mock_node_id(), {"CPU": 2}, {"CPU": 2}, DUMMY_IDLE_DURATION_S, waiting_bundles=[{"GPU": 2}] * 10, infeasible_bundles=[{"CPU": 16}, {"GPU": 2}, {"CPU": 16, "GPU": 2}], pending_placement_groups=pending_placement_groups, ) lm.set_resource_requests([{"CPU": 64}, {"GPU": 8}, {"GPU": 8}]) summary = lm.summary() assert summary.usage["CPU"] == (190, 194) assert summary.usage["GPU"] == (15, 16) assert summary.usage["memory"] == (500 * 2**20, 1000 * 2**20) assert summary.usage["object_store_memory"] == (1000 * 2**20, 2000 * 2**20) assert ( summary.usage["accelerator_type:V100"][1] == 2 ), "Not comparing the usage value due to floating point error." assert ({"GPU": 2}, 11) in summary.resource_demand assert ({"CPU": 16}, 1) in summary.resource_demand assert ({"CPU": 16, "GPU": 2}, 1) in summary.resource_demand assert len(summary.resource_demand) == 3 assert ( {"bundles": [({"GPU": 2}, 2)], "strategy": "PACK"}, 2, ) in summary.pg_demand assert len(summary.pg_demand) == 1 assert ({"GPU": 8}, 2) in summary.request_demand assert ({"CPU": 64}, 1) in summary.request_demand assert len(summary.request_demand) == 2 # TODO (Alex): This set of nodes won't be very useful in practice # because the node:xxx.xxx.xxx.xxx resources means that no 2 nodes # should ever have the same set of resources. assert len(summary.node_types) == 3, summary.node_types # Ensure correct dict-conversion summary_dict = asdict(summary) assert summary_dict["usage"]["CPU"] == (190, 194) assert summary_dict["usage"]["GPU"] == (15, 16) assert summary_dict["usage"]["memory"] == (500 * 2**20, 1000 * 2**20) assert summary_dict["usage"]["object_store_memory"] == ( 1000 * 2**20, 2000 * 2**20, ) assert ( summary_dict["usage"]["accelerator_type:V100"][1] == 2 ), "Not comparing the usage value due to floating point error." assert ({"GPU": 2}, 11) in summary_dict["resource_demand"] assert ({"CPU": 16}, 1) in summary_dict["resource_demand"] assert ({"CPU": 16, "GPU": 2}, 1) in summary_dict["resource_demand"] assert len(summary_dict["resource_demand"]) == 3 assert ({"bundles": [({"GPU": 2}, 2)], "strategy": "PACK"}, 2) in summary_dict[ "pg_demand" ] assert len(summary_dict["pg_demand"]) == 1 assert ({"GPU": 8}, 2) in summary_dict["request_demand"] assert ({"CPU": 64}, 1) in summary_dict["request_demand"] assert len(summary_dict["request_demand"]) == 2 assert len(summary_dict["node_types"]) == 3, summary_dict["node_types"] # Ensure summary_dict is json-serializable json.dumps(summary_dict) # Backwards compatibility check: head_ip is correctly processed # when included as an argument to LoadMetricsSummary. summary_dict["head_ip"] = "1.1.1.1" # No compatibility issue. LoadMetricsSummary(**summary_dict) class AutoscalingTest(unittest.TestCase): def setUp(self): _NODE_PROVIDERS["mock"] = lambda config: self.create_provider self.provider = None self.tmpdir = tempfile.mkdtemp() def tearDown(self): self.provider = None del _NODE_PROVIDERS["mock"] _clear_provider_cache() shutil.rmtree(self.tmpdir) ray.shutdown() def waitForNodes(self, expected, comparison=None, tag_filters=None): if tag_filters is None: tag_filters = {} MAX_ITER = 50 for i in range(MAX_ITER): n = len(self.provider.non_terminated_nodes(tag_filters)) if comparison is None: comparison = self.assertEqual try: comparison(n, expected) return except Exception: if i == MAX_ITER - 1: raise time.sleep(0.1) def create_provider(self, config, cluster_name): assert self.provider return self.provider def write_config(self, config): path = self.tmpdir + "/simple.yaml" with open(path, "w") as f: f.write(yaml.dump(config)) return path def testGetOrCreateMultiNodeType(self): config_path = self.write_config(MULTI_WORKER_CLUSTER) self.provider = MockProvider() runner = MockProcessRunner() runner.respond_to_call("json .Config.Env", ["[]"]) get_or_create_head_node( MULTI_WORKER_CLUSTER, printable_config_file=config_path, no_restart=False, restart_only=False, yes=True, override_cluster_name=None, _provider=self.provider, _runner=runner, ) self.waitForNodes(1) runner.assert_has_call("1.2.3.4", "init_cmd") runner.assert_has_call("1.2.3.4", "setup_cmd") runner.assert_has_call("1.2.3.4", "start_ray_head") self.assertEqual(self.provider.mock_nodes["0"].node_type, "empty_node") self.assertEqual( self.provider.mock_nodes["0"].node_config.get("FooProperty"), 42 ) self.assertEqual(self.provider.mock_nodes["0"].node_config.get("TestProp"), 1) self.assertEqual( self.provider.mock_nodes["0"].tags.get(TAG_RAY_USER_NODE_TYPE), "empty_node" ) def testGetOrCreateMultiNodeTypeCustomHeadResources(self): config = copy.deepcopy(MULTI_WORKER_CLUSTER) config["available_node_types"]["empty_node"]["resources"] = { "empty_resource_name": 1000 } config_path = self.write_config(config) self.provider = MockProvider() runner = MockProcessRunner() runner.respond_to_call("json .Config.Env", ["[]"]) get_or_create_head_node( config, printable_config_file=config_path, no_restart=False, restart_only=False, yes=True, override_cluster_name=None, _provider=self.provider, _runner=runner, ) self.waitForNodes(1) runner.assert_has_call("1.2.3.4", "init_cmd") runner.assert_has_call("1.2.3.4", "setup_cmd") runner.assert_has_call("1.2.3.4", "start_ray_head") runner.assert_has_call("1.2.3.4", "empty_resource_name") self.assertEqual(self.provider.mock_nodes["0"].node_type, "empty_node") self.assertEqual( self.provider.mock_nodes["0"].node_config.get("FooProperty"), 42 ) self.assertEqual(self.provider.mock_nodes["0"].node_config.get("TestProp"), 1) self.assertEqual( self.provider.mock_nodes["0"].tags.get(TAG_RAY_USER_NODE_TYPE), "empty_node" ) def testSummary(self): config = copy.deepcopy(MULTI_WORKER_CLUSTER) config["available_node_types"]["m4.large"]["min_workers"] = 2 config["max_workers"] = 10 config["docker"] = {} config_path = self.write_config(config) self.provider = MockProvider() runner = MockProcessRunner() self.provider.create_node( {}, { TAG_RAY_NODE_KIND: NODE_KIND_HEAD, TAG_RAY_USER_NODE_TYPE: "empty_node", TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, }, 1, ) head_ip = self.provider.non_terminated_node_ips({})[0] lm = LoadMetrics() autoscaler = MockAutoscaler( config_path, lm, MockGcsClient(), max_failures=0, max_launch_batch=1, max_concurrent_launches=10, process_runner=runner, update_interval_s=0, ) assert len(self.provider.non_terminated_nodes({})) == 1 autoscaler.update() self.waitForNodes(3) for ip in self.provider.non_terminated_node_ips({}): lm.update(ip, mock_node_id(), {"CPU": 2}, {"CPU": 0}, 0) lm.update(head_ip, mock_node_id(), {"CPU": 16}, {"CPU": 1}, 0) autoscaler.update() while True: if ( len( self.provider.non_terminated_nodes( {TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE} ) ) == 3 ): break # After this section, the p2.xlarge is now in the setup process. runner.ready_to_run.clear() lm.update( head_ip, mock_node_id(), {"CPU": 16}, {"CPU": 1}, 0, waiting_bundles=[{"GPU": 1}], ) autoscaler.update() self.waitForNodes(4) self.provider.ready_to_create.clear() lm.set_resource_requests([{"CPU": 64}] * 2) autoscaler.update() # TODO (Alex): We should find a more robust way of simulating a node # failure here. obj = ("172.0.0.4", "m4.4xlarge") autoscaler.node_tracker._add_node_mapping(4, obj) print(f"Head ip: {head_ip}") summary = autoscaler.summary() assert summary.active_nodes["m4.large"] == 2 assert summary.active_nodes["empty_node"] == 1 assert len(summary.active_nodes) == 2, summary.active_nodes assert summary.pending_nodes == [ ("172.0.0.3", "p2.xlarge", STATUS_WAITING_FOR_SSH) ] assert summary.pending_launches == {"m4.16xlarge": 2} assert summary.failed_nodes == [("172.0.0.4", "m4.4xlarge")] assert summary.pending_resources == { "GPU": 1, "CPU": 144, }, summary.pending_resources # Check dict conversion summary_dict = asdict(summary) assert summary_dict["active_nodes"]["m4.large"] == 2 assert summary_dict["active_nodes"]["empty_node"] == 1 assert len(summary_dict["active_nodes"]) == 2, summary_dict["active_nodes"] assert summary_dict["pending_nodes"] == [ ("172.0.0.3", "p2.xlarge", STATUS_WAITING_FOR_SSH) ] assert summary_dict["pending_launches"] == {"m4.16xlarge": 2} assert summary_dict["failed_nodes"] == [("172.0.0.4", "m4.4xlarge")] assert summary.node_type_mapping == { "172.0.0.0": "empty_node", "172.0.0.1": "m4.large", "172.0.0.2": "m4.large", "172.0.0.3": "p2.xlarge", } # Ensure summary is json-serializable json.dumps(summary_dict) # Make sure we return something (and don't throw exceptions). Let's not # get bogged down with a full cli test here. assert len(autoscaler.info_string()) > 1 def testScaleUpMinSanity(self): config = copy.deepcopy(MULTI_WORKER_CLUSTER) config["available_node_types"]["m4.large"]["min_workers"] = 2 config_path = self.write_config(config) self.provider = MockProvider() runner = MockProcessRunner() self.provider.create_node( {}, { TAG_RAY_NODE_KIND: NODE_KIND_HEAD, TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, TAG_RAY_USER_NODE_TYPE: "empty_node", }, 1, ) autoscaler = MockAutoscaler( config_path, LoadMetrics(), MockGcsClient(), max_failures=0, process_runner=runner, update_interval_s=0, ) assert len(self.provider.non_terminated_nodes({})) == 1 autoscaler.update() self.waitForNodes(3) autoscaler.update() self.waitForNodes(3) def testScaleUpMinSanityWithHeadNode(self): """Make sure when min_workers is used with head node it does not count head_node in min_workers.""" config = copy.deepcopy(MULTI_WORKER_CLUSTER) config["available_node_types"]["empty_node"]["min_workers"] = 2 config["available_node_types"]["empty_node"]["max_workers"] = 2 config_path = self.write_config(config) self.provider = MockProvider() runner = MockProcessRunner() self.provider.create_node( {}, { TAG_RAY_NODE_KIND: NODE_KIND_HEAD, TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, TAG_RAY_USER_NODE_TYPE: "empty_node", }, 1, ) autoscaler = MockAutoscaler( config_path, LoadMetrics(), MockGcsClient(), max_failures=0, process_runner=runner, update_interval_s=0, ) assert len(self.provider.non_terminated_nodes({})) == 1 autoscaler.update() self.waitForNodes(3) autoscaler.update() self.waitForNodes(3) def testPlacementGroup(self): # Note this is mostly an integration test. See # testPlacementGroupScaling for more comprehensive tests. config = copy.deepcopy(MULTI_WORKER_CLUSTER) config["min_workers"] = 0 config["max_workers"] = 999 config["head_node_type"] = "m4.4xlarge" config_path = self.write_config(config) self.provider = MockProvider() runner = MockProcessRunner() self.provider.create_node( {}, { TAG_RAY_NODE_KIND: "head", TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, TAG_RAY_USER_NODE_TYPE: "m4.4xlarge", }, 1, ) head_ip = self.provider.non_terminated_node_ips({})[0] lm = LoadMetrics() autoscaler = MockAutoscaler( config_path, lm, MockGcsClient(), max_failures=0, process_runner=runner, update_interval_s=0, ) head_ip = self.provider.non_terminated_node_ips({})[0] assert len(self.provider.non_terminated_nodes({})) == 1 autoscaler.update() self.waitForNodes(1) pending_placement_groups = [ PlacementGroupTableData( state=PlacementGroupTableData.RESCHEDULING, strategy=PlacementStrategy.STRICT_SPREAD, bundles=[Bundle(unit_resources={"GPU": 2})] * 3, ), PlacementGroupTableData( state=PlacementGroupTableData.RESCHEDULING, strategy=PlacementStrategy.PACK, bundles=([Bundle(unit_resources={"GPU": 2})] * 5), ), ] # Since placement groups are implemented with custom resources, this is # an example of the accompanying resource demands. Note the resource # demand autoscaler will be unable to fulfill these demands, but we # should still handle the other infeasible/waiting bundles. placement_group_resource_demands = [ { "GPU_group_0_6c2506ac733bc37496295b02c4fad446": 0.0101, "GPU_group_6c2506ac733bc37496295b02c4fad446": 0.0101, } ] lm.update( head_ip, mock_node_id(), {"CPU": 16}, {"CPU": 16}, DUMMY_IDLE_DURATION_S, infeasible_bundles=placement_group_resource_demands, waiting_bundles=[{"GPU": 8}], pending_placement_groups=pending_placement_groups, ) autoscaler.update() self.waitForNodes(5) for i in range(1, 5): assert self.provider.mock_nodes[str(i)].node_type == "p2.8xlarge" pending_placement_groups = [ PlacementGroupTableData( state=PlacementGroupTableData.RESCHEDULING, strategy=PlacementStrategy.STRICT_PACK, bundles=([Bundle(unit_resources={"GPU": 2})] * 4), ), PlacementGroupTableData( state=PlacementGroupTableData.RESCHEDULING, strategy=PlacementStrategy.SPREAD, bundles=([Bundle(unit_resources={"GPU": 2})] * 2), ), ] def testScaleUpMinWorkers(self): config = copy.deepcopy(MULTI_WORKER_CLUSTER) config["max_workers"] = 50 config["idle_timeout_minutes"] = 1 config["available_node_types"]["m4.large"]["min_workers"] = 1 config["available_node_types"]["p2.8xlarge"]["min_workers"] = 1 config_path = self.write_config(config) self.provider = MockProvider() runner = MockProcessRunner() self.provider.create_node( {}, { TAG_RAY_NODE_KIND: NODE_KIND_HEAD, TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, TAG_RAY_USER_NODE_TYPE: "empty_node", }, 1, ) lm = LoadMetrics() autoscaler = MockAutoscaler( config_path, lm, MockGcsClient(), max_failures=0, process_runner=runner, update_interval_s=0, ) assert len(self.provider.non_terminated_nodes({})) == 1 autoscaler.update() self.waitForNodes(3) assert len(self.provider.mock_nodes) == 3 assert { self.provider.mock_nodes["1"].node_type, self.provider.mock_nodes["2"].node_type, } == {"p2.8xlarge", "m4.large"} self.provider.create_node( {}, { TAG_RAY_USER_NODE_TYPE: "p2.8xlarge", TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, TAG_RAY_NODE_KIND: NODE_KIND_WORKER, }, 2, ) self.provider.create_node( {}, { TAG_RAY_USER_NODE_TYPE: "m4.16xlarge", TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, TAG_RAY_NODE_KIND: NODE_KIND_WORKER, }, 2, ) assert len(self.provider.non_terminated_nodes({})) == 7 # Make sure that after idle_timeout_minutes we don't kill idle # min workers. for node_id in self.provider.non_terminated_nodes({}): lm.ray_nodes_last_used_time_by_ip[self.provider.internal_ip(node_id)] = -60 fill_in_node_ids(self.provider, lm) autoscaler.update() self.waitForNodes(3) cnt = 0 # [1:] skips the head node. for id in list(self.provider.mock_nodes.keys())[1:]: if ( self.provider.mock_nodes[id].state == "running" or self.provider.mock_nodes[id].state == "pending" ): assert self.provider.mock_nodes[id].node_type in { "p2.8xlarge", "m4.large", } cnt += 1 assert cnt == 2 def testScaleUpIgnoreUsed(self): config = copy.deepcopy(MULTI_WORKER_CLUSTER) # Commenting out this line causes the test case to fail?!?! config["min_workers"] = 0 config["target_utilization_fraction"] = 1.0 config["head_node_type"] = "p2.xlarge" config_path = self.write_config(config) self.provider = MockProvider() self.provider.create_node( {}, { TAG_RAY_NODE_KIND: "head", TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, TAG_RAY_USER_NODE_TYPE: "p2.xlarge", }, 1, ) head_ip = self.provider.non_terminated_node_ips({})[0] self.provider.finish_starting_nodes() runner = MockProcessRunner() lm = LoadMetrics() autoscaler = MockAutoscaler( config_path, lm, MockGcsClient(), max_failures=0, process_runner=runner, update_interval_s=0, ) autoscaler.update() self.waitForNodes(1) lm.update(head_ip, mock_node_id(), {"CPU": 4, "GPU": 1}, {}, 0) self.waitForNodes(1) lm.update( head_ip, mock_node_id(), {"CPU": 4, "GPU": 1}, {"GPU": 0}, 0, waiting_bundles=[{"GPU": 1}], ) autoscaler.update() self.waitForNodes(2) assert self.provider.mock_nodes["1"].node_type == "p2.xlarge" def testRequestBundlesAccountsForHeadNode(self): config = copy.deepcopy(MULTI_WORKER_CLUSTER) config["head_node_type"] = "p2.8xlarge" config["min_workers"] = 0 config["max_workers"] = 50 config_path = self.write_config(config) self.provider = MockProvider() self.provider.create_node( {}, { TAG_RAY_USER_NODE_TYPE: "p2.8xlarge", TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, TAG_RAY_NODE_KIND: "head", }, 1, ) runner = MockProcessRunner() autoscaler = MockAutoscaler( config_path, LoadMetrics(), MockGcsClient(), max_failures=0, process_runner=runner, update_interval_s=0, ) assert len(self.provider.non_terminated_nodes({})) == 1 # These requests fit on the head node. autoscaler.update() self.waitForNodes(1) autoscaler.load_metrics.set_resource_requests([{"CPU": 1}]) autoscaler.update() self.waitForNodes(1) assert len(self.provider.mock_nodes) == 1 autoscaler.load_metrics.set_resource_requests([{"GPU": 8}]) autoscaler.update() self.waitForNodes(1) # This request requires an additional worker node. autoscaler.load_metrics.set_resource_requests([{"GPU": 8}] * 2) autoscaler.update() self.waitForNodes(2) assert self.provider.mock_nodes["1"].node_type == "p2.8xlarge" def testRequestBundles(self): config = copy.deepcopy(MULTI_WORKER_CLUSTER) config["min_workers"] = 0 config["max_workers"] = 50 config_path = self.write_config(config) self.provider = MockProvider() runner = MockProcessRunner() runner.respond_to_call("json .Config.Env", ["[]" for i in range(6)]) self.provider.create_node( {}, { TAG_RAY_NODE_KIND: NODE_KIND_HEAD, TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, TAG_RAY_USER_NODE_TYPE: "empty_node", }, 1, ) autoscaler = MockAutoscaler( config_path, LoadMetrics(), MockGcsClient(), max_failures=0, process_runner=runner, update_interval_s=0, ) assert len(self.provider.non_terminated_nodes({})) == 1 autoscaler.update() self.waitForNodes(1) autoscaler.load_metrics.set_resource_requests([{"CPU": 1}]) autoscaler.update() self.waitForNodes(2) assert self.provider.mock_nodes["1"].node_type == "m4.large" autoscaler.load_metrics.set_resource_requests([{"GPU": 8}]) autoscaler.update() self.waitForNodes(3) assert self.provider.mock_nodes["2"].node_type == "p2.8xlarge" autoscaler.load_metrics.set_resource_requests([{"CPU": 32}] * 4) autoscaler.update() self.waitForNodes(5) assert self.provider.mock_nodes["3"].node_type == "m4.16xlarge" assert self.provider.mock_nodes["4"].node_type == "m4.16xlarge" def testResourcePassing(self): config = copy.deepcopy(MULTI_WORKER_CLUSTER) config["min_workers"] = 0 config["max_workers"] = 50 config_path = self.write_config(config) self.provider = MockProvider() runner = MockProcessRunner() runner.respond_to_call("json .Config.Env", ["[]" for i in range(2)]) self.provider.create_node( {}, { TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, TAG_RAY_NODE_KIND: NODE_KIND_HEAD, TAG_RAY_USER_NODE_TYPE: "empty_node", }, 1, ) autoscaler = MockAutoscaler( config_path, LoadMetrics(), MockGcsClient(), max_failures=0, process_runner=runner, update_interval_s=0, ) assert len(self.provider.non_terminated_nodes({})) == 1 autoscaler.update() self.waitForNodes(0, tag_filters={TAG_RAY_NODE_KIND: NODE_KIND_WORKER}) autoscaler.load_metrics.set_resource_requests([{"CPU": 1}]) autoscaler.update() self.waitForNodes(1, tag_filters={TAG_RAY_NODE_KIND: NODE_KIND_WORKER}) assert self.provider.mock_nodes["1"].node_type == "m4.large" autoscaler.load_metrics.set_resource_requests([{"GPU": 8}]) autoscaler.update() self.waitForNodes(2, tag_filters={TAG_RAY_NODE_KIND: NODE_KIND_WORKER}) assert self.provider.mock_nodes["2"].node_type == "p2.8xlarge" # TODO (Alex): Autoscaler creates the node during one update then # starts the updater in the next update. The sleep is largely # unavoidable because the updater runs in its own thread and we have no # good way of ensuring that the commands are sent in time. autoscaler.update() sleep(0.1) # These checks are done separately because we have no guarantees on the # order the dict is serialized in. runner.assert_has_call("172.0.0.1", "RAY_OVERRIDE_RESOURCES=") runner.assert_has_call("172.0.0.1", '"CPU":2') runner.assert_has_call("172.0.0.2", "RAY_OVERRIDE_RESOURCES=") runner.assert_has_call("172.0.0.2", '"CPU":32') runner.assert_has_call("172.0.0.2", '"GPU":8') def testScaleUpLoadMetrics(self): config = copy.deepcopy(MULTI_WORKER_CLUSTER) config["min_workers"] = 0 config["max_workers"] = 50 config_path = self.write_config(config) self.provider = MockProvider() runner = MockProcessRunner() self.provider.create_node( {}, { TAG_RAY_NODE_KIND: NODE_KIND_HEAD, TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, TAG_RAY_USER_NODE_TYPE: "empty_node", }, 1, ) lm = LoadMetrics() autoscaler = MockAutoscaler( config_path, lm, MockGcsClient(), max_failures=0, process_runner=runner, update_interval_s=0, ) assert len(self.provider.non_terminated_nodes({})) == 1 autoscaler.update() self.waitForNodes(0, tag_filters={TAG_RAY_NODE_KIND: NODE_KIND_WORKER}) autoscaler.update() lm.update( "1.2.3.4", mock_node_id(), {}, {}, DUMMY_IDLE_DURATION_S, waiting_bundles=[{"GPU": 1}], infeasible_bundles=[{"CPU": 16}], ) autoscaler.update() self.waitForNodes(1, tag_filters={TAG_RAY_NODE_KIND: NODE_KIND_WORKER}) nodes = { self.provider.mock_nodes["1"].node_type, } assert nodes == {"p2.xlarge"} def testCommandPassing(self): t = "custom" config = copy.deepcopy(MULTI_WORKER_CLUSTER) config["available_node_types"]["p2.8xlarge"]["worker_setup_commands"] = [ "new_worker_setup_command" ] config["available_node_types"]["p2.xlarge"]["initialization_commands"] = [ "new_worker_initialization_cmd" ] config["available_node_types"]["p2.xlarge"]["resources"][t] = 1 # Commenting out this line causes the test case to fail?!?! config["min_workers"] = 0 config["max_workers"] = 10 config_path = self.write_config(config) self.provider = MockProvider() runner = MockProcessRunner() runner.respond_to_call("json .Config.Env", ["[]" for i in range(4)]) self.provider.create_node( {}, { TAG_RAY_NODE_KIND: NODE_KIND_HEAD, TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, TAG_RAY_USER_NODE_TYPE: "empty_node", }, 1, ) lm = LoadMetrics() lm.update("172.0.0.0", mock_node_id(), {"CPU": 0}, {"CPU": 0}, 0) autoscaler = MockAutoscaler( config_path, lm, MockGcsClient(), max_failures=0, process_runner=runner, update_interval_s=0, ) assert len(self.provider.non_terminated_nodes({})) == 1 autoscaler.update() self.waitForNodes(1) autoscaler.load_metrics.set_resource_requests([{"CPU": 1}]) autoscaler.update() self.waitForNodes(2) assert self.provider.mock_nodes["1"].node_type == "m4.large" autoscaler.load_metrics.set_resource_requests([{"GPU": 8}]) autoscaler.update() self.waitForNodes(3) assert self.provider.mock_nodes["2"].node_type == "p2.8xlarge" autoscaler.load_metrics.set_resource_requests([{"GPU": 1}] * 9) autoscaler.update() self.waitForNodes(4) assert self.provider.mock_nodes["3"].node_type == "p2.xlarge" autoscaler.update() sleep(0.1) runner.assert_has_call( self.provider.mock_nodes["2"].internal_ip, "new_worker_setup_command" ) runner.assert_not_has_call( self.provider.mock_nodes["2"].internal_ip, "setup_cmd" ) runner.assert_not_has_call( self.provider.mock_nodes["2"].internal_ip, "worker_setup_cmd" ) runner.assert_has_call( self.provider.mock_nodes["3"].internal_ip, "new_worker_initialization_cmd" ) runner.assert_not_has_call( self.provider.mock_nodes["3"].internal_ip, "init_cmd" ) def testDockerWorkers(self): config = copy.deepcopy(MULTI_WORKER_CLUSTER) config["available_node_types"]["p2.8xlarge"]["docker"] = { "worker_image": "p2.8x_image:latest", "worker_run_options": ["p2.8x-run-options"], } config["available_node_types"]["p2.xlarge"]["docker"] = { "worker_image": "p2x_image:nightly" } config["docker"]["run_options"] = ["head-and-worker-run-options"] config["docker"]["worker_run_options"] = ["standard-run-options"] config["docker"]["image"] = "default-image:nightly" config["docker"]["worker_image"] = "default-image:nightly" # Commenting out this line causes the test case to fail?!?! config["min_workers"] = 0 config["max_workers"] = 10 config_path = self.write_config(config) self.provider = MockProvider() runner = MockProcessRunner() runner.respond_to_call("json .Config.Env", ["[]" for i in range(5)]) self.provider.create_node( {}, { TAG_RAY_NODE_KIND: NODE_KIND_HEAD, TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, TAG_RAY_USER_NODE_TYPE: "empty_node", }, 1, ) autoscaler = MockAutoscaler( config_path, LoadMetrics(), MockGcsClient(), max_failures=0, process_runner=runner, update_interval_s=0, ) assert len(self.provider.non_terminated_nodes({})) == 1 autoscaler.update() self.waitForNodes(1) autoscaler.load_metrics.set_resource_requests([{"CPU": 1}]) autoscaler.update() self.waitForNodes(2) assert self.provider.mock_nodes["1"].node_type == "m4.large" autoscaler.load_metrics.set_resource_requests([{"GPU": 8}]) autoscaler.update() self.waitForNodes(3) assert self.provider.mock_nodes["2"].node_type == "p2.8xlarge" autoscaler.load_metrics.set_resource_requests([{"GPU": 1}] * 9) autoscaler.update() self.waitForNodes(4) assert self.provider.mock_nodes["3"].node_type == "p2.xlarge" autoscaler.update() # Fill up m4, p2.8, p2 and request 2 more CPUs autoscaler.load_metrics.set_resource_requests( [{"CPU": 2}, {"CPU": 16}, {"CPU": 32}, {"CPU": 2}] ) autoscaler.update() self.waitForNodes(5) assert self.provider.mock_nodes["4"].node_type == "m4.large" autoscaler.update() sleep(0.1) runner.assert_has_call( self.provider.mock_nodes["2"].internal_ip, "p2.8x-run-options" ) runner.assert_has_call( self.provider.mock_nodes["2"].internal_ip, "head-and-worker-run-options" ) runner.assert_has_call( self.provider.mock_nodes["2"].internal_ip, "p2.8x_image:latest" ) runner.assert_not_has_call( self.provider.mock_nodes["2"].internal_ip, "default-image:nightly" ) runner.assert_not_has_call( self.provider.mock_nodes["2"].internal_ip, "standard-run-options" ) runner.assert_has_call( self.provider.mock_nodes["3"].internal_ip, "p2x_image:nightly" ) runner.assert_has_call( self.provider.mock_nodes["3"].internal_ip, "standard-run-options" ) runner.assert_has_call( self.provider.mock_nodes["3"].internal_ip, "head-and-worker-run-options" ) runner.assert_not_has_call( self.provider.mock_nodes["3"].internal_ip, "p2.8x-run-options" ) runner.assert_has_call( self.provider.mock_nodes["4"].internal_ip, "default-image:nightly" ) runner.assert_has_call( self.provider.mock_nodes["4"].internal_ip, "standard-run-options" ) runner.assert_has_call( self.provider.mock_nodes["4"].internal_ip, "head-and-worker-run-options" ) runner.assert_not_has_call( self.provider.mock_nodes["4"].internal_ip, "p2.8x-run-options" ) runner.assert_not_has_call( self.provider.mock_nodes["4"].internal_ip, "p2x_image:nightly" ) def testUpdateConfig(self): config = copy.deepcopy(MULTI_WORKER_CLUSTER) config["available_node_types"]["m4.large"]["min_workers"] = 2 config_path = self.write_config(config) self.provider = MockProvider() runner = MockProcessRunner() self.provider.create_node( {}, { TAG_RAY_NODE_KIND: NODE_KIND_HEAD, TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, TAG_RAY_USER_NODE_TYPE: "empty_node", }, 1, ) lm = LoadMetrics() autoscaler = MockAutoscaler( config_path, lm, MockGcsClient(), max_failures=0, process_runner=runner, update_interval_s=0, ) assert len(self.provider.non_terminated_nodes({})) == 1 autoscaler.update() self.waitForNodes(2, tag_filters={TAG_RAY_NODE_KIND: NODE_KIND_WORKER}) config["available_node_types"]["m4.large"]["min_workers"] = 0 config["available_node_types"]["m4.large"]["node_config"]["field_changed"] = 1 config_path = self.write_config(config) fill_in_node_ids(self.provider, lm) autoscaler.update() self.waitForNodes(0, tag_filters={TAG_RAY_NODE_KIND: NODE_KIND_WORKER}) def testEmptyDocker(self): config = copy.deepcopy(MULTI_WORKER_CLUSTER) del config["docker"] config["min_workers"] = 0 config["max_workers"] = 10 config_path = self.write_config(config) self.provider = MockProvider() runner = MockProcessRunner() self.provider.create_node( {}, { TAG_RAY_NODE_KIND: NODE_KIND_HEAD, TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, TAG_RAY_USER_NODE_TYPE: "empty_node", }, 1, ) autoscaler = MockAutoscaler( config_path, LoadMetrics(), MockGcsClient(), max_failures=0, process_runner=runner, update_interval_s=0, ) assert len(self.provider.non_terminated_nodes({})) == 1 autoscaler.update() self.waitForNodes(1) autoscaler.load_metrics.set_resource_requests([{"CPU": 1}]) autoscaler.update() self.waitForNodes(2) assert self.provider.mock_nodes["1"].node_type == "m4.large" autoscaler.load_metrics.set_resource_requests([{"GPU": 8}]) autoscaler.update() self.waitForNodes(3) assert self.provider.mock_nodes["2"].node_type == "p2.8xlarge" def testRequestResourcesIdleTimeout(self): """Test request_resources() with and without idle timeout.""" config = copy.deepcopy(MULTI_WORKER_CLUSTER) config["max_workers"] = 4 config["idle_timeout_minutes"] = 0 config["available_node_types"] = { "empty_node": { "node_config": {}, "resources": {"CPU": 2}, "max_workers": 1, }, "def_worker": { "node_config": {}, "resources": {"CPU": 2, "WORKER": 1}, "max_workers": 3, }, } config_path = self.write_config(config) self.provider = MockProvider() runner = MockProcessRunner() self.provider.create_node( {}, { TAG_RAY_NODE_KIND: NODE_KIND_HEAD, TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, TAG_RAY_USER_NODE_TYPE: "empty_node", }, 1, ) lm = LoadMetrics() runner.respond_to_call("json .Config.Env", ["[]" for i in range(3)]) autoscaler = MockAutoscaler( config_path, lm, MockGcsClient(), max_failures=0, process_runner=runner, update_interval_s=0, ) autoscaler.update() self.waitForNodes(0, tag_filters={TAG_RAY_NODE_KIND: NODE_KIND_WORKER}) autoscaler.load_metrics.set_resource_requests([{"CPU": 0.2, "WORKER": 1.0}]) autoscaler.update() self.waitForNodes(1, tag_filters={TAG_RAY_NODE_KIND: NODE_KIND_WORKER}) non_terminated_nodes = autoscaler.provider.non_terminated_nodes({}) assert len(non_terminated_nodes) == 2 node_id = non_terminated_nodes[1] node_ip = autoscaler.provider.non_terminated_node_ips({})[1] # A hack to check if the node was terminated when it shouldn't. autoscaler.provider.mock_nodes[node_id].state = "unterminatable" lm.update( node_ip, mock_node_id(), config["available_node_types"]["def_worker"]["resources"], config["available_node_types"]["def_worker"]["resources"], DUMMY_IDLE_DURATION_S, waiting_bundles=[{"CPU": 0.2, "WORKER": 1.0}], ) autoscaler.update() # this fits on request_resources()! self.waitForNodes(1, tag_filters={TAG_RAY_NODE_KIND: NODE_KIND_WORKER}) autoscaler.load_metrics.set_resource_requests([{"CPU": 0.2, "WORKER": 1.0}] * 2) autoscaler.update() self.waitForNodes(2, tag_filters={TAG_RAY_NODE_KIND: NODE_KIND_WORKER}) autoscaler.load_metrics.set_resource_requests([{"CPU": 0.2, "WORKER": 1.0}]) lm.update( node_ip, mock_node_id(), config["available_node_types"]["def_worker"]["resources"], {}, 0, waiting_bundles=[{"CPU": 0.2, "WORKER": 1.0}], ) autoscaler.update() self.waitForNodes(2, tag_filters={TAG_RAY_NODE_KIND: NODE_KIND_WORKER}) lm.update( node_ip, mock_node_id(), config["available_node_types"]["def_worker"]["resources"], config["available_node_types"]["def_worker"]["resources"], DUMMY_IDLE_DURATION_S, waiting_bundles=[{"CPU": 0.2, "WORKER": 1.0}], ) autoscaler.update() # Still 2 as the second node did not show up a heart beat. self.waitForNodes(2, tag_filters={TAG_RAY_NODE_KIND: NODE_KIND_WORKER}) # If node {node_id} was terminated any time then it's state will be set # to terminated. assert autoscaler.provider.mock_nodes[node_id].state == "unterminatable" lm.update( "172.0.0.2", mock_node_id(), config["available_node_types"]["def_worker"]["resources"], config["available_node_types"]["def_worker"]["resources"], DUMMY_IDLE_DURATION_S, waiting_bundles=[{"CPU": 0.2, "WORKER": 1.0}], ) autoscaler.update() # Now it is 1 because it showed up in last used (heart beat). # The remaining one is 127.0.0.1. self.waitForNodes(1, tag_filters={TAG_RAY_NODE_KIND: NODE_KIND_WORKER}) def testRequestResourcesRaceConditionsLong(self): """Test request_resources(), race conditions & demands/min_workers. Tests when request_resources() is called simultaneously with resource demands and min_workers constraint in multiple orders upscaling and downscaling. """ config = copy.deepcopy(MULTI_WORKER_CLUSTER) config["max_workers"] = 4 config["idle_timeout_minutes"] = 0 config["available_node_types"] = { "empty_node": { "node_config": {}, "resources": {"CPU": 2}, "max_workers": 1, }, "def_worker": { "node_config": {}, "resources": {"CPU": 2, "WORKER": 1}, "max_workers": 3, "min_workers": 1, }, } config_path = self.write_config(config) self.provider = MockProvider() runner = MockProcessRunner() runner.respond_to_call("json .Config.Env", ["[]" for i in range(3)]) self.provider.create_node( {}, { TAG_RAY_NODE_KIND: NODE_KIND_HEAD, TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, TAG_RAY_USER_NODE_TYPE: "empty_node", }, 1, ) lm = LoadMetrics() autoscaler = MockAutoscaler( config_path, lm, MockGcsClient(), max_failures=0, process_runner=runner, update_interval_s=0, ) autoscaler.load_metrics.set_resource_requests([{"CPU": 0.2, "WORKER": 1.0}]) autoscaler.update() # 1 min worker for both min_worker and request_resources() self.waitForNodes(1, tag_filters={TAG_RAY_NODE_KIND: NODE_KIND_WORKER}) non_terminated_nodes = autoscaler.provider.non_terminated_nodes({}) assert len(non_terminated_nodes) == 2 node_id = non_terminated_nodes[1] node_ip = autoscaler.provider.non_terminated_node_ips({})[1] # A hack to check if the node was terminated when it shouldn't. autoscaler.provider.mock_nodes[node_id].state = "unterminatable" lm.update( node_ip, mock_node_id(), config["available_node_types"]["def_worker"]["resources"], config["available_node_types"]["def_worker"]["resources"], DUMMY_IDLE_DURATION_S, waiting_bundles=[{"CPU": 0.2, "WORKER": 1.0}], ) autoscaler.load_metrics.set_resource_requests([{"CPU": 0.2, "WORKER": 1.0}] * 2) autoscaler.update() # 2 requested_resource, 1 min worker, 1 free node -> 2 nodes total self.waitForNodes(2, tag_filters={TAG_RAY_NODE_KIND: NODE_KIND_WORKER}) autoscaler.load_metrics.set_resource_requests([{"CPU": 0.2, "WORKER": 1.0}]) autoscaler.update() # Still 2 because the second one is not connected and hence # request_resources occupies the connected node. self.waitForNodes(2, tag_filters={TAG_RAY_NODE_KIND: NODE_KIND_WORKER}) autoscaler.load_metrics.set_resource_requests([{"CPU": 0.2, "WORKER": 1.0}] * 3) lm.update( node_ip, mock_node_id(), config["available_node_types"]["def_worker"]["resources"], {}, 0, waiting_bundles=[{"CPU": 0.2, "WORKER": 1.0}] * 3, ) autoscaler.update() self.waitForNodes(3, tag_filters={TAG_RAY_NODE_KIND: NODE_KIND_WORKER}) autoscaler.load_metrics.set_resource_requests([]) lm.update( "172.0.0.2", mock_node_id(), config["available_node_types"]["def_worker"]["resources"], config["available_node_types"]["def_worker"]["resources"], DUMMY_IDLE_DURATION_S, ) lm.update( "172.0.0.3", mock_node_id(), config["available_node_types"]["def_worker"]["resources"], config["available_node_types"]["def_worker"]["resources"], DUMMY_IDLE_DURATION_S, ) lm.update( node_ip, mock_node_id(), config["available_node_types"]["def_worker"]["resources"], {}, 0, ) print("============ Should scale down from here =============", node_id) autoscaler.update() self.waitForNodes(1, tag_filters={TAG_RAY_NODE_KIND: NODE_KIND_WORKER}) # If node {node_id} was terminated any time then it's state will be set # to terminated. assert autoscaler.provider.mock_nodes[node_id].state == "unterminatable" def testRequestResourcesRaceConditionWithMinWorker(self): """Test request_resources() with min_workers. Tests when request_resources() is called simultaneously with adding min_workers constraint. """ config = copy.deepcopy(MULTI_WORKER_CLUSTER) config["available_node_types"] = { "empty_node": { "node_config": {}, "resources": {"CPU": 2}, "max_workers": 1, }, "def_worker": { "node_config": {}, "resources": {"CPU": 2, "WORKER": 1}, "max_workers": 3, "min_workers": 1, }, } config_path = self.write_config(config) self.provider = MockProvider() runner = MockProcessRunner() runner.respond_to_call("json .Config.Env", ["[]" for i in range(2)]) self.provider.create_node( {}, { TAG_RAY_NODE_KIND: NODE_KIND_HEAD, TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, TAG_RAY_USER_NODE_TYPE: "empty_node", }, 1, ) lm = LoadMetrics() autoscaler = MockAutoscaler( config_path, lm, MockGcsClient(), max_failures=0, process_runner=runner, update_interval_s=0, ) autoscaler.load_metrics.set_resource_requests([{"CPU": 2, "WORKER": 1.0}] * 2) autoscaler.update() # 2 min worker for both min_worker and request_resources(), not 3. self.waitForNodes(2, tag_filters={TAG_RAY_NODE_KIND: NODE_KIND_WORKER}) def testRequestResourcesRaceConditionWithResourceDemands(self): """Test request_resources() with resource_demands. Tests when request_resources() is called simultaneously with resource demands in multiple orders. """ config = copy.deepcopy(MULTI_WORKER_CLUSTER) config["available_node_types"].update( { "empty_node": { "node_config": {}, "resources": {"CPU": 2, "GPU": 1}, "max_workers": 1, }, "def_worker": { "node_config": {}, "resources": {"CPU": 2, "GPU": 1, "WORKER": 1}, "max_workers": 3, }, } ) config["idle_timeout_minutes"] = 0 config_path = self.write_config(config) self.provider = MockProvider() self.provider.create_node( {}, { TAG_RAY_NODE_KIND: "head", TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, TAG_RAY_USER_NODE_TYPE: "empty_node", }, 1, ) runner = MockProcessRunner() runner.respond_to_call("json .Config.Env", ["[]" for i in range(2)]) lm = LoadMetrics() autoscaler = MockAutoscaler( config_path, lm, MockGcsClient(), max_failures=0, process_runner=runner, update_interval_s=0, ) lm.update( "127.0.0.0", mock_node_id(), {"CPU": 2, "GPU": 1}, {"CPU": 2}, 0, waiting_bundles=[{"CPU": 2}], ) autoscaler.load_metrics.set_resource_requests([{"CPU": 2, "GPU": 1}] * 2) autoscaler.update() # 1 head, 1 worker. self.waitForNodes(2) lm.update( "127.0.0.0", mock_node_id(), {"CPU": 2, "GPU": 1}, {"CPU": 2}, 0, waiting_bundles=[{"CPU": 2}], ) # make sure it stays consistent. for _ in range(10): autoscaler.update() self.waitForNodes(2) def format_pg(pg): strategy = pg["strategy"] bundles = pg["bundles"] shape_strs = [] for bundle, count in bundles: shape_strs.append(f"{bundle} * {count}") bundles_str = ", ".join(shape_strs) return f"{bundles_str} ({strategy})" def test_memory_string_formatting(): assert ray.autoscaler._private.util.format_memory(0) == "0B" assert ( ray.autoscaler._private.util.format_memory(0.0) == "0B" ), "Bytes aren't decimals" assert ray.autoscaler._private.util.format_memory(1) == "1B" assert ray.autoscaler._private.util.format_memory(1023) == "1023B" assert ray.autoscaler._private.util.format_memory(1024) == "1.00KiB" assert ray.autoscaler._private.util.format_memory(1025) == "1.00KiB" assert ray.autoscaler._private.util.format_memory(1037) == "1.01KiB" assert ray.autoscaler._private.util.format_memory(1200) == "1.17KiB" assert ray.autoscaler._private.util.format_memory(2**20 - 10) == "1023.99KiB" assert ray.autoscaler._private.util.format_memory(2**20 - 1) == "1024.00KiB" assert ray.autoscaler._private.util.format_memory(2**20) == "1.00MiB" assert ray.autoscaler._private.util.format_memory(2**30) == "1.00GiB" assert ray.autoscaler._private.util.format_memory(5.001 * 2**30) == "5.00GiB" assert ( ray.autoscaler._private.util.format_memory(5.004 * 2**30) == "5.00GiB" ), "rounds down" assert ( ray.autoscaler._private.util.format_memory(5.005 * 2**30) == "5.00GiB" ), "rounds down" assert ray.autoscaler._private.util.format_memory(2**40) == "1.00TiB" def test_info_string(): lm_summary = LoadMetricsSummary( usage={ "CPU": (530.0, 544.0), "GPU": (2, 2), "AcceleratorType:V100": (0, 2), "memory": (2 * 2**30, 2**33), "object_store_memory": (3.14 * 2**30, 2**34), "accelerator_type:T4": (1, 1), }, resource_demand=[({"CPU": 1}, 150)], pg_demand=[({"bundles": [({"CPU": 4}, 5)], "strategy": "PACK"}, 420)], request_demand=[({"CPU": 16}, 100)], node_types=[], ) autoscaler_summary = AutoscalerSummary( active_nodes={"p3.2xlarge": 2, "m4.4xlarge": 20}, pending_nodes=[ ("1.2.3.4", "m4.4xlarge", STATUS_WAITING_FOR_SSH), ("1.2.3.5", "m4.4xlarge", STATUS_WAITING_FOR_SSH), ], idle_nodes=[], pending_launches={"m4.4xlarge": 2}, failed_nodes=[("1.2.3.6", "p3.2xlarge")], ) expected = """ ======== Autoscaler status: 2020-12-28 01:02:03 ======== Node status -------------------------------------------------------- Active: 2 p3.2xlarge 20 m4.4xlarge Idle: (no idle nodes) Pending: m4.4xlarge, 2 launching 1.2.3.4: m4.4xlarge, waiting-for-ssh 1.2.3.5: m4.4xlarge, waiting-for-ssh Recent failures: p3.2xlarge: NodeTerminated (ip: 1.2.3.6) Resources -------------------------------------------------------- Total Usage: 0/2 AcceleratorType:V100 530.0/544.0 CPU 2/2 GPU 2.00GiB/8.00GiB memory 3.14GiB/16.00GiB object_store_memory From request_resources: {'CPU': 16}: 100 from request_resources() Pending Demands: {'CPU': 1}: 150+ pending tasks/actors {'CPU': 4} * 5 (PACK): 420+ pending placement groups """.strip() actual = format_info_string( lm_summary, autoscaler_summary, time=datetime(year=2020, month=12, day=28, hour=1, minute=2, second=3), ) print(actual) assert expected == actual def test_info_string_multiple_constraints(): lm_summary = LoadMetricsSummary( usage={ "CPU": (530.0, 544.0), "GPU": (2, 2), "memory": (2 * 2**30, 2**33), "object_store_memory": (3.14 * 2**30, 2**34), }, resource_demand=[({"CPU": 1}, 150)], pg_demand=[({"bundles": [({"CPU": 4}, 5)], "strategy": "PACK"}, 420)], request_demand=[({"CPU": 16}, 100), ({"CPU": 1, "GPU": 16}, 10)], node_types=[], ) autoscaler_summary = AutoscalerSummary( active_nodes={"p3.2xlarge": 2}, pending_nodes=[], idle_nodes=[], pending_launches={}, failed_nodes=[], ) expected = """ ======== Autoscaler status: 2020-12-28 01:02:03 ======== Node status -------------------------------------------------------- Active: 2 p3.2xlarge Idle: (no idle nodes) Pending: (no pending nodes) Recent failures: (no failures) Resources -------------------------------------------------------- Total Usage: 530.0/544.0 CPU 2/2 GPU 2.00GiB/8.00GiB memory 3.14GiB/16.00GiB object_store_memory From request_resources: {'CPU': 16}: 100 from request_resources() {'CPU': 1, 'GPU': 16}: 10 from request_resources() Pending Demands: {'CPU': 1}: 150+ pending tasks/actors {'CPU': 4} * 5 (PACK): 420+ pending placement groups """.strip() actual = format_info_string( lm_summary, autoscaler_summary, time=datetime(year=2020, month=12, day=28, hour=1, minute=2, second=3), ) print(actual) assert expected == actual def test_info_string_verbose(): lm_summary = LoadMetricsSummary( usage={ "CPU": (530.0, 544.0), "GPU": (2, 2), "accelerator_type:V100": (1, 2), "memory": (2 * 2**30, 2**33), "object_store_memory": (3.14 * 2**30, 2**34), }, resource_demand=[({"CPU": 1}, 150)], pg_demand=[({"bundles": [({"CPU": 4}, 5)], "strategy": "PACK"}, 420)], request_demand=[({"CPU": 16}, 100)], node_types=[], usage_by_node={ "192.168.1.1": { "CPU": (5.0, 20.0), "GPU": (0.7, 1), "accelerator_type:V100": (0.1, 1), "memory": (2**30, 2**32), "object_store_memory": (3.14 * 2**30, 2**32), }, "192.168.1.2": { "CPU": (15.0, 20.0), "GPU": (0.3, 1), "accelerator_type:V100": (0.9, 1), "memory": (2**30, 1.5 * 2**33), "object_store_memory": (0, 2**32), }, }, ) autoscaler_summary = AutoscalerSummary( active_nodes=[], idle_nodes={"p3.2xlarge": 2, "m4.4xlarge": 20}, pending_nodes=[ ("1.2.3.4", "m4.4xlarge", STATUS_WAITING_FOR_SSH), ("1.2.3.5", "m4.4xlarge", STATUS_WAITING_FOR_SSH), ], pending_launches={"m4.4xlarge": 2}, failed_nodes=[("1.2.3.6", "p3.2xlarge")], node_activities={ "192.168.1.1": ( "m4.4xlarge", ["CPU in use.", "GPU in use.", "Active workers."], ), "192.168.1.2": ("m4.4xlarge", ["GPU in use.", "Active workers."]), }, ) expected = """ ======== Autoscaler status: 2020-12-28 01:02:03 ======== GCS request time: 3.141500s Node Provider non_terminated_nodes time: 1.618000s Node status -------------------------------------------------------- Active: (no active nodes) Idle: 2 p3.2xlarge 20 m4.4xlarge Pending: m4.4xlarge, 2 launching 1.2.3.4: m4.4xlarge, waiting-for-ssh 1.2.3.5: m4.4xlarge, waiting-for-ssh Recent failures: p3.2xlarge: NodeTerminated (ip: 1.2.3.6) Resources -------------------------------------------------------- Total Usage: 530.0/544.0 CPU 2/2 GPU 1/2 accelerator_type:V100 2.00GiB/8.00GiB memory 3.14GiB/16.00GiB object_store_memory From request_resources: {'CPU': 16}: 100 from request_resources() Pending Demands: {'CPU': 1}: 150+ pending tasks/actors {'CPU': 4} * 5 (PACK): 420+ pending placement groups Node: 192.168.1.1 Usage: 5.0/20.0 CPU 0.7/1 GPU 0.1/1 accelerator_type:V100 1.00GiB/4.00GiB memory 3.14GiB/4.00GiB object_store_memory Activity: CPU in use. GPU in use. Active workers. Node: 192.168.1.2 Usage: 15.0/20.0 CPU 0.3/1 GPU 0.9/1 accelerator_type:V100 1.00GiB/12.00GiB memory 0B/4.00GiB object_store_memory Activity: GPU in use. Active workers. """.strip() actual = format_info_string( lm_summary, autoscaler_summary, time=datetime(year=2020, month=12, day=28, hour=1, minute=2, second=3), gcs_request_time=3.1415, non_terminated_nodes_time=1.618, verbose=True, ) print(actual) assert expected == actual def test_info_string_verbose_node_types(): lm_summary = LoadMetricsSummary( usage={ "CPU": (530.0, 544.0), "GPU": (2, 2), "accelerator_type:V100": (1, 2), "memory": (2 * 2**30, 2**33), "object_store_memory": (3.14 * 2**30, 2**34), }, resource_demand=[({"CPU": 1}, 150)], pg_demand=[({"bundles": [({"CPU": 4}, 5)], "strategy": "PACK"}, 420)], request_demand=[({"CPU": 16}, 100)], node_types=[], usage_by_node={ "192.168.1.1": { "CPU": (5.0, 20.0), "GPU": (0.7, 1), "accelerator_type:V100": (0.1, 1), "memory": (2**30, 2**32), "object_store_memory": (3.14 * 2**30, 2**32), }, "192.168.1.2": { "CPU": (15.0, 20.0), "GPU": (0.3, 1), "accelerator_type:V100": (0.9, 1), "memory": (2**30, 1.5 * 2**33), "object_store_memory": (0, 2**32), }, }, ) autoscaler_summary = AutoscalerSummary( active_nodes={"p3.2xlarge": 2, "m4.4xlarge": 20}, pending_nodes=[ ("1.2.3.4", "m4.4xlarge", STATUS_WAITING_FOR_SSH), ("1.2.3.5", "m4.4xlarge", STATUS_WAITING_FOR_SSH), ], idle_nodes=[], pending_launches={"m4.4xlarge": 2}, failed_nodes=[("1.2.3.6", "p3.2xlarge")], node_type_mapping={ "192.168.1.1": "head-node", "192.168.1.2": "gpu-worker", }, ) expected = """ ======== Autoscaler status: 2020-12-28 01:02:03 ======== GCS request time: 3.141500s Node Provider non_terminated_nodes time: 1.618000s Autoscaler iteration time: 3.141500s Node status -------------------------------------------------------- Active: 2 p3.2xlarge 20 m4.4xlarge Idle: (no idle nodes) Pending: m4.4xlarge, 2 launching 1.2.3.4: m4.4xlarge, waiting-for-ssh 1.2.3.5: m4.4xlarge, waiting-for-ssh Recent failures: p3.2xlarge: NodeTerminated (ip: 1.2.3.6) Resources -------------------------------------------------------- Total Usage: 530.0/544.0 CPU 2/2 GPU 1/2 accelerator_type:V100 2.00GiB/8.00GiB memory 3.14GiB/16.00GiB object_store_memory From request_resources: {'CPU': 16}: 100 from request_resources() Pending Demands: {'CPU': 1}: 150+ pending tasks/actors {'CPU': 4} * 5 (PACK): 420+ pending placement groups Node: 192.168.1.1 (head-node) Usage: 5.0/20.0 CPU 0.7/1 GPU 0.1/1 accelerator_type:V100 1.00GiB/4.00GiB memory 3.14GiB/4.00GiB object_store_memory Node: 192.168.1.2 (gpu-worker) Usage: 15.0/20.0 CPU 0.3/1 GPU 0.9/1 accelerator_type:V100 1.00GiB/12.00GiB memory 0B/4.00GiB object_store_memory """.strip() actual = format_info_string( lm_summary, autoscaler_summary, time=datetime(year=2020, month=12, day=28, hour=1, minute=2, second=3), gcs_request_time=3.1415, non_terminated_nodes_time=1.618, autoscaler_update_time=3.1415, verbose=True, ) print(actual) assert expected == actual def test_info_string_verbose_no_breakdown(): """ Test the verbose string but with node reporting feature flagged off. """ lm_summary = LoadMetricsSummary( usage={ "CPU": (530.0, 544.0), "GPU": (2, 2), "AcceleratorType:V100": (1, 2), "memory": (2 * 2**30, 2**33), "object_store_memory": (3.14 * 2**30, 2**34), }, resource_demand=[({"CPU": 1}, 150)], pg_demand=[({"bundles": [({"CPU": 4}, 5)], "strategy": "PACK"}, 420)], request_demand=[({"CPU": 16}, 100)], node_types=[], usage_by_node=None, ) autoscaler_summary = AutoscalerSummary( active_nodes=[], idle_nodes={"p3.2xlarge": 2, "m4.4xlarge": 20}, pending_nodes=[ ("1.2.3.4", "m4.4xlarge", STATUS_WAITING_FOR_SSH), ("1.2.3.5", "m4.4xlarge", STATUS_WAITING_FOR_SSH), ], pending_launches={"m4.4xlarge": 2}, failed_nodes=[("1.2.3.6", "p3.2xlarge")], ) expected = """ ======== Autoscaler status: 2020-12-28 01:02:03 ======== GCS request time: 3.141500s Node Provider non_terminated_nodes time: 1.618000s Node status -------------------------------------------------------- Active: (no active nodes) Idle: 2 p3.2xlarge 20 m4.4xlarge Pending: m4.4xlarge, 2 launching 1.2.3.4: m4.4xlarge, waiting-for-ssh 1.2.3.5: m4.4xlarge, waiting-for-ssh Recent failures: p3.2xlarge: NodeTerminated (ip: 1.2.3.6) Resources -------------------------------------------------------- Total Usage: 1/2 AcceleratorType:V100 530.0/544.0 CPU 2/2 GPU 2.00GiB/8.00GiB memory 3.14GiB/16.00GiB object_store_memory From request_resources: {'CPU': 16}: 100 from request_resources() Pending Demands: {'CPU': 1}: 150+ pending tasks/actors {'CPU': 4} * 5 (PACK): 420+ pending placement groups """.strip() actual = format_info_string( lm_summary, autoscaler_summary, time=datetime(year=2020, month=12, day=28, hour=1, minute=2, second=3), gcs_request_time=3.1415, non_terminated_nodes_time=1.618, verbose=True, ) print(actual) assert expected == actual def test_info_string_with_launch_failures(): lm_summary = LoadMetricsSummary( usage={ "CPU": (530.0, 544.0), "GPU": (2, 2), "AcceleratorType:V100": (0, 2), "memory": (2 * 2**30, 2**33), "object_store_memory": (3.14 * 2**30, 2**34), }, resource_demand=[({"CPU": 1}, 150)], pg_demand=[({"bundles": [({"CPU": 4}, 5)], "strategy": "PACK"}, 420)], request_demand=[({"CPU": 16}, 100)], node_types=[], ) base_timestamp = datetime( year=2012, month=12, day=21, hour=13, minute=3, second=1 ).timestamp() autoscaler_summary = AutoscalerSummary( active_nodes={"p3.2xlarge": 2, "m4.4xlarge": 20}, pending_nodes=[ ("1.2.3.4", "m4.4xlarge", STATUS_WAITING_FOR_SSH), ("1.2.3.5", "m4.4xlarge", STATUS_WAITING_FOR_SSH), ], idle_nodes=[], pending_launches={"m4.4xlarge": 2}, failed_nodes=[("1.2.3.6", "p3.2xlarge")], node_availability_summary=NodeAvailabilitySummary( node_availabilities={ "A100": NodeAvailabilityRecord( node_type="A100", is_available=False, last_checked_timestamp=base_timestamp + 1, unavailable_node_information=UnavailableNodeInformation( category="InstanceLimitExceeded", description=":)", ), ), "Inferentia-Spot": NodeAvailabilityRecord( node_type="Inferentia-Spot", is_available=False, last_checked_timestamp=base_timestamp, unavailable_node_information=UnavailableNodeInformation( category="InsufficientInstanceCapacity", description="mo nodes mo problems", ), ), } ), ) expected = """ ======== Autoscaler status: 2020-12-28 01:02:03 ======== Node status -------------------------------------------------------- Active: 2 p3.2xlarge 20 m4.4xlarge Idle: (no idle nodes) Pending: m4.4xlarge, 2 launching 1.2.3.4: m4.4xlarge, waiting-for-ssh 1.2.3.5: m4.4xlarge, waiting-for-ssh Recent failures: A100: InstanceLimitExceeded (latest_attempt: 13:03:02) Inferentia-Spot: InsufficientInstanceCapacity (latest_attempt: 13:03:01) p3.2xlarge: NodeTerminated (ip: 1.2.3.6) Resources -------------------------------------------------------- Total Usage: 0/2 AcceleratorType:V100 530.0/544.0 CPU 2/2 GPU 2.00GiB/8.00GiB memory 3.14GiB/16.00GiB object_store_memory From request_resources: {'CPU': 16}: 100 from request_resources() Pending Demands: {'CPU': 1}: 150+ pending tasks/actors {'CPU': 4} * 5 (PACK): 420+ pending placement groups """.strip() actual = format_info_string( lm_summary, autoscaler_summary, time=datetime(year=2020, month=12, day=28, hour=1, minute=2, second=3), ) print(actual) assert expected == actual def test_info_string_with_launch_failures_verbose(): lm_summary = LoadMetricsSummary( usage={ "CPU": (530.0, 544.0), "GPU": (2, 2), "AcceleratorType:V100": (0, 2), "memory": (2 * 2**30, 2**33), "object_store_memory": (3.14 * 2**30, 2**34), }, resource_demand=[({"CPU": 1}, 150)], pg_demand=[({"bundles": [({"CPU": 4}, 5)], "strategy": "PACK"}, 420)], request_demand=[({"CPU": 16}, 100)], node_types=[], ) base_timestamp = datetime( year=2012, month=12, day=21, hour=13, minute=3, second=1 ).timestamp() autoscaler_summary = AutoscalerSummary( active_nodes=[], idle_nodes={"p3.2xlarge": 2, "m4.4xlarge": 20}, pending_nodes=[ ("1.2.3.4", "m4.4xlarge", STATUS_WAITING_FOR_SSH), ("1.2.3.5", "m4.4xlarge", STATUS_WAITING_FOR_SSH), ], pending_launches={"m4.4xlarge": 2}, failed_nodes=[("1.2.3.6", "p3.2xlarge")], node_availability_summary=NodeAvailabilitySummary( node_availabilities={ "A100": NodeAvailabilityRecord( node_type="A100", is_available=False, last_checked_timestamp=base_timestamp + 1, unavailable_node_information=UnavailableNodeInformation( category="InstanceLimitExceeded", description="you should fix it", ), ), "Inferentia-Spot": NodeAvailabilityRecord( node_type="Inferentia-Spot", is_available=False, last_checked_timestamp=base_timestamp, unavailable_node_information=UnavailableNodeInformation( category="InsufficientInstanceCapacity", description="desc", ), ), } ), ) expected = """ ======== Autoscaler status: 2020-12-28 01:02:03 ======== Node status -------------------------------------------------------- Active: (no active nodes) Idle: 2 p3.2xlarge 20 m4.4xlarge Pending: m4.4xlarge, 2 launching 1.2.3.4: m4.4xlarge, waiting-for-ssh 1.2.3.5: m4.4xlarge, waiting-for-ssh Recent failures: A100: InstanceLimitExceeded (latest_attempt: 13:03:02) - you should fix it Inferentia-Spot: InsufficientInstanceCapacity (latest_attempt: 13:03:01) - desc p3.2xlarge: NodeTerminated (ip: 1.2.3.6) Resources -------------------------------------------------------- Total Usage: 0/2 AcceleratorType:V100 530.0/544.0 CPU 2/2 GPU 2.00GiB/8.00GiB memory 3.14GiB/16.00GiB object_store_memory From request_resources: {'CPU': 16}: 100 from request_resources() Pending Demands: {'CPU': 1}: 150+ pending tasks/actors {'CPU': 4} * 5 (PACK): 420+ pending placement groups """.strip() actual = format_info_string( lm_summary, autoscaler_summary, time=datetime(year=2020, month=12, day=28, hour=1, minute=2, second=3), verbose=True, ) print(actual) assert expected == actual def test_info_string_failed_node_cap(): lm_summary = LoadMetricsSummary( usage={ "CPU": (530.0, 544.0), "GPU": (2, 2), "AcceleratorType:V100": (0, 2), "memory": (2 * 2**30, 2**33), "object_store_memory": (3.14 * 2**30, 2**34), "CPU_group_4a82a217aadd8326a3a49f02700ac5c2": (2.0, 2.0), }, resource_demand=[ ({"CPU": 2.0}, 150), ({"CPU_group_4a82a217aadd8326a3a49f02700ac5c2": 2.0}, 3), ({"GPU_group_0_4a82a2add8326a3a49f02700ac5c2": 0.5}, 100), ], pg_demand=[({"bundles": [({"CPU": 4}, 5)], "strategy": "PACK"}, 420)], request_demand=[({"CPU": 16}, 100)], node_types=[], ) autoscaler_summary = AutoscalerSummary( active_nodes=[], idle_nodes={"p3.2xlarge": 2, "m4.4xlarge": 20}, pending_nodes=[ ("1.2.3.4", "m4.4xlarge", STATUS_WAITING_FOR_SSH), ("1.2.3.5", "m4.4xlarge", STATUS_WAITING_FOR_SSH), ], pending_launches={"m4.4xlarge": 2}, failed_nodes=[(f"1.2.3.{i}", "p3.2xlarge") for i in range(100)], ) expected = """ ======== Autoscaler status: 2020-12-28 01:02:03 ======== Node status -------------------------------------------------------- Active: (no active nodes) Idle: 2 p3.2xlarge 20 m4.4xlarge Pending: m4.4xlarge, 2 launching 1.2.3.4: m4.4xlarge, waiting-for-ssh 1.2.3.5: m4.4xlarge, waiting-for-ssh Recent failures: p3.2xlarge: NodeTerminated (ip: 1.2.3.99) p3.2xlarge: NodeTerminated (ip: 1.2.3.98) p3.2xlarge: NodeTerminated (ip: 1.2.3.97) p3.2xlarge: NodeTerminated (ip: 1.2.3.96) p3.2xlarge: NodeTerminated (ip: 1.2.3.95) p3.2xlarge: NodeTerminated (ip: 1.2.3.94) p3.2xlarge: NodeTerminated (ip: 1.2.3.93) p3.2xlarge: NodeTerminated (ip: 1.2.3.92) p3.2xlarge: NodeTerminated (ip: 1.2.3.91) p3.2xlarge: NodeTerminated (ip: 1.2.3.90) p3.2xlarge: NodeTerminated (ip: 1.2.3.89) p3.2xlarge: NodeTerminated (ip: 1.2.3.88) p3.2xlarge: NodeTerminated (ip: 1.2.3.87) p3.2xlarge: NodeTerminated (ip: 1.2.3.86) p3.2xlarge: NodeTerminated (ip: 1.2.3.85) p3.2xlarge: NodeTerminated (ip: 1.2.3.84) p3.2xlarge: NodeTerminated (ip: 1.2.3.83) p3.2xlarge: NodeTerminated (ip: 1.2.3.82) p3.2xlarge: NodeTerminated (ip: 1.2.3.81) Resources -------------------------------------------------------- Total Usage: 0/2 AcceleratorType:V100 530.0/544.0 CPU (2.0 used of 2.0 reserved in placement groups) 2/2 GPU 2.00GiB/8.00GiB memory 3.14GiB/16.00GiB object_store_memory From request_resources: {'CPU': 16}: 100 from request_resources() Pending Demands: {'CPU': 2.0}: 153+ pending tasks/actors (3+ using placement groups) {'GPU': 0.5}: 100+ pending tasks/actors (100+ using placement groups) {'CPU': 4} * 5 (PACK): 420+ pending placement groups """ actual = format_info_string( lm_summary, autoscaler_summary, time=datetime(year=2020, month=12, day=28, hour=1, minute=2, second=3), ) print(actual) assert expected.strip() == actual def test_placement_group_match_string(): assert ( is_placement_group_resource("bundle_group_ffe7d420752c6e8658638d19ecf2b68c") is True ) assert ( is_placement_group_resource("CPU_group_0_625ace126f848864c46f50dced5e0ef7") is True ) assert ( is_placement_group_resource("CPU_group_625ace126f848864c46f50dced5e0ef7") is True ) assert is_placement_group_resource("CPU") is False assert is_placement_group_resource("GPU") is False assert is_placement_group_resource("custom_resource") is False assert is_placement_group_resource("ip:192.168.1.1") is False provider = MockProvider() new_types = copy.deepcopy(TYPES_A) scheduler = ResourceDemandScheduler( provider, new_types, 3, head_node_type="p2.8xlarge", upscaling_speed=1, ) provider.create_node( {}, { TAG_RAY_USER_NODE_TYPE: "p2.8xlarge", TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, TAG_RAY_NODE_KIND: NODE_KIND_HEAD, }, 1, ) nodes = provider.non_terminated_nodes({}) ips = provider.non_terminated_node_ips({}) utilizations = {ip: {"GPU": 8} for ip in ips} with mock.patch( "ray.autoscaler._private.resource_demand_scheduler.logger" ) as logger_mock: to_launch, rem = scheduler.get_nodes_to_launch( nodes, {}, [{"CPU_group_0_625ace126f848864c46f50dced5e0ef7": 8}], utilizations, [], {}, [], EMPTY_AVAILABILITY_SUMMARY, ) logger_mock.warning.assert_not_called() assert to_launch == {} assert rem == [{"CPU_group_0_625ace126f848864c46f50dced5e0ef7": 8}] with mock.patch( "ray.autoscaler._private.resource_demand_scheduler.logger" ) as logger_mock: to_launch, rem = scheduler.get_nodes_to_launch( nodes, {}, [{"non-existent-custom": 8}], utilizations, [], {}, [], EMPTY_AVAILABILITY_SUMMARY, ) logger_mock.warning.assert_called() assert to_launch == {} assert rem == [{"non-existent-custom": 8}] def _launch_nothing_utilization_scorer_plugin( node_resources, # noqa resources, # noqa node_type, # noqa *, node_availability_summary, # noqa ): assert node_availability_summary is not None return None @pytest.fixture def launch_nothing_utilization_score_plugin(): os.environ[AUTOSCALER_UTILIZATION_SCORER_KEY] = ( "ray.tests.test_resource_demand_scheduler." "_launch_nothing_utilization_scorer_plugin" ) try: yield None finally: del os.environ[AUTOSCALER_UTILIZATION_SCORER_KEY] def test_utilization_score_plugin_1(launch_nothing_utilization_score_plugin): assert launch_nothing_utilization_score_plugin is None, "Keep mypy happy." provider = MockProvider() new_types = copy.deepcopy(TYPES_A) scheduler = ResourceDemandScheduler( provider, new_types, 3, head_node_type="p2.8xlarge", upscaling_speed=1, ) provider.create_node( {}, { TAG_RAY_USER_NODE_TYPE: "p2.8xlarge", TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, TAG_RAY_NODE_KIND: NODE_KIND_HEAD, }, 1, ) nodes = provider.non_terminated_nodes({}) ips = provider.non_terminated_node_ips({}) utilizations = {ip: {"GPU": 8} for ip in ips} to_launch, rem = scheduler.get_nodes_to_launch( nodes, {}, [{"GPU": 8}] * 2, utilizations, [], {}, [], EMPTY_AVAILABILITY_SUMMARY, ) assert to_launch == {} def _lexical_scorer_plugin( node_resources, # noqa resources, # noqa node_type, # noqa *, node_availability_summary, # noqa ): assert node_availability_summary is not None if ( _resource_based_utilization_scorer( node_resources, resources, node_availability_summary=node_availability_summary, ) is not None ): return node_type else: return None @pytest.fixture def lexical_score_plugin(): os.environ[ AUTOSCALER_UTILIZATION_SCORER_KEY ] = "ray.tests.test_resource_demand_scheduler._lexical_scorer_plugin" try: yield None finally: del os.environ[AUTOSCALER_UTILIZATION_SCORER_KEY] def test_utilization_score_plugin_2(lexical_score_plugin): assert lexical_score_plugin is None, "Keep mypy happy." provider = MockProvider() new_types = copy.deepcopy(TYPES_A) new_types["z2.8xlarge"] = new_types["p2.8xlarge"] scheduler = ResourceDemandScheduler( provider, new_types, 3, head_node_type="p2.8xlarge", upscaling_speed=1, ) provider.create_node( {}, { TAG_RAY_USER_NODE_TYPE: "p2.8xlarge", TAG_RAY_NODE_STATUS: STATUS_UP_TO_DATE, TAG_RAY_NODE_KIND: NODE_KIND_HEAD, }, 1, ) nodes = provider.non_terminated_nodes({}) ips = provider.non_terminated_node_ips({}) utilizations = {ip: {"GPU": 8} for ip in ips} to_launch, rem = scheduler.get_nodes_to_launch( nodes, {}, [{"GPU": 8}] * 2, utilizations, [], {}, [], EMPTY_AVAILABILITY_SUMMARY, ) assert to_launch == {"z2.8xlarge": 1} if __name__ == "__main__": sys.exit(pytest.main(["-sv", __file__]))