Skip to content

Commit

Permalink
Enable streaming executor by default (ray-project#32493)
Browse files Browse the repository at this point in the history
  • Loading branch information
jianoaix committed Mar 20, 2023
1 parent f59cbd6 commit 8c64af4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/ray/data/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -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", "0"))
int(os.environ.get("RAY_DATASET_USE_STREAMING_EXECUTOR", "1"))
)

# Whether to eagerly free memory (new backend only).
Expand Down

0 comments on commit 8c64af4

Please sign in to comment.