From 5c7995454c03ad9ac28d50e7d339f8e8ee84c236 Mon Sep 17 00:00:00 2001 From: Balaji Veeramani Date: Mon, 20 Mar 2023 16:22:34 -0700 Subject: [PATCH] [Datasets] Revert "Enable streaming executor by default (#32493)" (#33485) The reverted commit broke some RL tests. ![image](https://user-images.githubusercontent.com/26107013/226484663-c30f3466-80cf-4e98-84dc-b6250cf60a13.png) --- python/ray/data/context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ray/data/context.py b/python/ray/data/context.py index b6ac7b2db261..6630cc02bb29 100644 --- a/python/ray/data/context.py +++ b/python/ray/data/context.py @@ -76,7 +76,7 @@ # Whether to use the streaming executor. This only has an effect if the new execution # backend is enabled. DEFAULT_USE_STREAMING_EXECUTOR = bool( - int(os.environ.get("RAY_DATASET_USE_STREAMING_EXECUTOR", "1")) + int(os.environ.get("RAY_DATASET_USE_STREAMING_EXECUTOR", "0")) ) # Whether to eagerly free memory (new backend only).