From 09abba26b5bf2707639bb637c208d062a47b46f6 Mon Sep 17 00:00:00 2001 From: Hao Chen Date: Tue, 19 Mar 2024 12:46:25 -0700 Subject: [PATCH] [data] turn of actor locality by default (#44124) Cherry-pick #44123 Signed-off-by: Hao Chen --- .../data/_internal/execution/interfaces/execution_options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ray/data/_internal/execution/interfaces/execution_options.py b/python/ray/data/_internal/execution/interfaces/execution_options.py index 9edc4636a64c..abe9dfce076e 100644 --- a/python/ray/data/_internal/execution/interfaces/execution_options.py +++ b/python/ray/data/_internal/execution/interfaces/execution_options.py @@ -229,7 +229,7 @@ def __init__( preserve_order: bool = False, # TODO(hchen): Re-enable `actor_locality_enabled` by default after fixing # https://github.com/ray-project/ray/issues/43466 - actor_locality_enabled: bool = True, + actor_locality_enabled: bool = False, verbose_progress: Optional[bool] = None, ): if resource_limits is None: