Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/ray/data/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ class ShuffleStrategy(str, enum.Enum):

DEFAULT_ACTOR_POOL_UTIL_UPSCALING_THRESHOLD: float = env_float(
"RAY_DATA_DEFAULT_ACTOR_POOL_UTIL_UPSCALING_THRESHOLD",
2.0,
1.75,
)

DEFAULT_ACTOR_POOL_UTIL_DOWNSCALING_THRESHOLD: float = env_float(
Expand Down
2 changes: 1 addition & 1 deletion python/ray/data/tests/test_autoscaler.py
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ def __call__(self, row):
expected_message = (
"⚠️ Actor Pool configuration of the "
"ActorPoolMapOperator[MapBatches(SimpleMapper)] will not allow it to scale up: "
"configured utilization threshold (200.0%) couldn't be reached with "
"configured utilization threshold (175.0%) couldn't be reached with "
"configured max_concurrency=1 and max_tasks_in_flight_per_actor=1 "
"(max utilization will be max_tasks_in_flight_per_actor / max_concurrency = 100%)"
)
Expand Down