Skip to content

Commit

Permalink
[Core/data] use wait based prefetcher by default (ray-project#34871)
Browse files Browse the repository at this point in the history
Turn on the wait based prefetcher to address the issues around the actor based prefetcher.

- [x]: benchmark the before/after performance.
  • Loading branch information
scv119 committed May 1, 2023
1 parent 9b0ca12 commit b294bfd
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 @@ -55,7 +55,7 @@
DEFAULT_MIN_PARALLELISM = 200

# Wether to use actor based block prefetcher.
DEFAULT_ACTOR_PREFETCHER_ENABLED = True
DEFAULT_ACTOR_PREFETCHER_ENABLED = False

# Whether to use push-based shuffle by default.
DEFAULT_USE_PUSH_BASED_SHUFFLE = bool(
Expand Down

0 comments on commit b294bfd

Please sign in to comment.